Skip to content

Commit

Permalink
fix(EVMOS): fix name of native evmos coin (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasmoeller committed Oct 25, 2022
1 parent caf6262 commit 60490c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/chains/supported.chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -858,8 +858,8 @@ export const supportedEVMChains: EVMChain[] = [
blockExplorerUrls: ['https://evm.evmos.org/'],
chainName: 'Evmos',
nativeCurrency: {
name: 'EVM',
symbol: 'EVM',
name: 'EVMOS',
symbol: 'EVMOS',
decimals: 18,
},
rpcUrls: ['https://eth.bd.evmos.org:8545'],
Expand Down
4 changes: 3 additions & 1 deletion src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1135,14 +1135,16 @@ const basicCoins: BasicCoin[] = [
// > EVM
{
key: CoinKey.EVM,
name: 'Evmos',
name: 'EVMOS',
logoURI:
'https://raw.githubusercontent.com/cronus-finance/token-list/main/assets/evmos/0xD4949664cD82660AaE99bEdc034a0deA8A0bd517/logo.png',
verified: true,
chains: {
[ChainId.EVM]: {
address: '0x0000000000000000000000000000000000000000',
decimals: 18,
symbol: 'EVMOS',
name: 'EVMOS',
},
},
},
Expand Down

0 comments on commit 60490c0

Please sign in to comment.