Skip to content

Commit

Permalink
zero anyswap
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Jul 7, 2023
1 parent 5d289f5 commit 33d32ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coins/src/adapters/bridges/anyswap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default async function bridge(): Promise<Token[]> {

tokens.push({
from: `${destinationChain}:${destinationToken}`,
to: `${originChain}:${srcToken}`,
to: `zero`,
symbol: token.symbol,
decimals: token.decimals
});
Expand Down
2 changes: 1 addition & 1 deletion coins/src/adapters/bridges/solana.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default async function bridge() {
if (blacklist.has(token.address)) return;
tokens.push({
from: `solana:${token.address}`,
to: `zero`,
to: `coingecko#${coingeckoId}`,
symbol: token.symbol,
decimals: token.decimals
});
Expand Down

0 comments on commit 33d32ff

Please sign in to comment.