Skip to content

Commit

Permalink
chore(workspace): update sync to use flat structure
Browse files Browse the repository at this point in the history
  • Loading branch information
fuxingloh committed Nov 7, 2023
1 parent b5f65e9 commit c74ff5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workspace/sync-trustwallet-assets/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ export async function sync(): Promise<void> {

await new Eip155Erc20Sync(
join(cwd, 'repo/blockchains/ethereum/assets'),
join(cwd, '../../packages/eip155/1/erc20'),
join(cwd, '../../packages/eip155-1-erc20/frontmatter'),
).sync();
await new Eip155Erc20Sync(
join(cwd, 'repo/blockchains/polygon/assets'),
join(cwd, '../../packages/eip155/137/erc20'),
join(cwd, '../../packages/eip155-137-erc20/frontmatter'),
).sync();
await new Eip155Erc20Sync(
join(cwd, 'repo/blockchains/avalanchec/assets'),
join(cwd, '../../packages/eip155/43114/erc20'),
join(cwd, '../../packages/eip155-43114-erc20/frontmatter'),
).sync();
}

Expand Down

0 comments on commit c74ff5b

Please sign in to comment.