@@ -9,6 +9,7 @@ type Chain = {
99 icon : string ;
1010 walletNetworkType : WalletNetworkType ;
1111 gasDenom : string ;
12+ explorerBaseUrl : string ;
1213} ;
1314
1415export const CHAIN_INFO : { [ chainId : string ] : Chain } = {
@@ -17,60 +18,70 @@ export const CHAIN_INFO: { [chainId: string]: Chain } = {
1718 icon : '/chains/ethereum.png' ,
1819 walletNetworkType : WalletNetworkType . Evm ,
1920 gasDenom : 'ETH' ,
21+ explorerBaseUrl : 'https://etherscan.io' ,
2022 } ,
2123 [ arbitrum . id ] : {
2224 name : 'Arbitrum' ,
2325 icon : '/chains/arbitrum.png' ,
2426 walletNetworkType : WalletNetworkType . Evm ,
2527 gasDenom : 'ETH' ,
28+ explorerBaseUrl : 'https://arbiscan.io' ,
2629 } ,
2730 [ optimism . id ] : {
2831 name : 'Optimism' ,
2932 icon : '/chains/optimism.png' ,
3033 walletNetworkType : WalletNetworkType . Evm ,
3134 gasDenom : 'ETH' ,
35+ explorerBaseUrl : 'https://optimistic.etherscan.io' ,
3236 } ,
3337 [ base . id ] : {
3438 name : 'Base' ,
3539 icon : '/chains/base.png' ,
3640 walletNetworkType : WalletNetworkType . Evm ,
3741 gasDenom : 'ETH' ,
42+ explorerBaseUrl : 'https://basescan.org' ,
3843 } ,
3944 [ polygon . id ] : {
4045 name : 'Polygon' ,
4146 icon : '/chains/polygon.png' ,
4247 walletNetworkType : WalletNetworkType . Evm ,
4348 gasDenom : 'POL' ,
49+ explorerBaseUrl : 'https://polygonscan.com' ,
4450 } ,
4551 [ avalanche . id ] : {
4652 name : 'Avalanche' ,
4753 icon : '/chains/avalanche.png' ,
4854 walletNetworkType : WalletNetworkType . Evm ,
4955 gasDenom : 'AVAX' ,
56+ explorerBaseUrl : 'https://snowtrace.io' ,
5057 } ,
5158 [ SOLANA_MAINNET_ID ] : {
5259 name : 'Solana' ,
5360 icon : '/chains/solana.png' ,
5461 walletNetworkType : WalletNetworkType . Solana ,
5562 gasDenom : 'SOL' ,
63+ explorerBaseUrl : 'https://explorer.solana.com' ,
5664 } ,
5765 [ CosmosChainId . Neutron ] : {
5866 name : 'Neutron' ,
5967 icon : '/chains/neutron.png' ,
6068 walletNetworkType : WalletNetworkType . Cosmos ,
6169 gasDenom : 'NTRN' ,
70+ explorerBaseUrl : 'https://mintscan.io/neutron' ,
6271 } ,
6372 [ CosmosChainId . Noble ] : {
6473 name : 'Noble' ,
6574 icon : '/chains/noble.png' ,
6675 walletNetworkType : WalletNetworkType . Cosmos ,
6776 gasDenom : 'USDC' ,
77+ explorerBaseUrl : 'https://mintscan.io/noble' ,
6878 } ,
6979 [ CosmosChainId . Osmosis ] : {
7080 name : 'Osmosis' ,
7181 icon : '/chains/osmosis.png' ,
7282 walletNetworkType : WalletNetworkType . Cosmos ,
7383 gasDenom : 'OSMO' ,
84+ explorerBaseUrl : 'https://mintscan.io/osmosis' ,
7485 } ,
7586} ;
7687
0 commit comments