Skip to content

Commit

Permalink
Fix evmos token denom and decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Picco committed Sep 26, 2023
1 parent 5c02da8 commit ebaa105
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions wormhole-connect/src/config/mainnet/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -600,13 +600,15 @@ export const MAINNET_TOKENS: TokensConfig = {
nativeChain: 'evmos',
tokenId: {
chain: 'evmos',
address: 'atevmos',
address: 'aevmos',
},
icon: Icon.EVMOS,
coinGeckoId: 'evmos',
color: '#ed4e33',
decimals: {
default: 6,
Cosmos: 18,
Ethereum: 18,
default: 8,
},
},
};
4 changes: 3 additions & 1 deletion wormhole-connect/src/config/testnet/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,9 @@ export const TESTNET_TOKENS: TokensConfig = {
coinGeckoId: 'evmos',
color: '#ed4e33',
decimals: {
default: 6,
Cosmos: 18,
Ethereum: 18,
default: 8,
},
},
};

0 comments on commit ebaa105

Please sign in to comment.