@@ -37,6 +37,7 @@ export const CHAIN_SELECT_MAINNETS = [
3737 ChainId . Mantle ,
3838 ChainId . Mode ,
3939 ChainId . Gnosis ,
40+ ChainId . MonadMainnet ,
4041 ChainId . Blast ,
4142 ChainId . ZkSyncMainnet ,
4243 ChainId . Swellchain ,
@@ -1445,6 +1446,9 @@ export const CHAINS = {
14451446 name : 'MegaETH Testnet' ,
14461447 logoUrl : '/assets/images/vendor/chains/megaeth.svg' ,
14471448 explorerUrl : 'https://web3.okx.com/explorer/megaeth-testnet' ,
1449+ rpc : {
1450+ main : `https://megaeth-testnet.g.alchemy.com/v2/${ ALCHEMY_API_KEY } ` ,
1451+ } ,
14481452 deployedContracts : { ...MULTICALL } ,
14491453 isTestnet : true ,
14501454 correspondingMainnetChainId : 12345678903 ,
@@ -1502,10 +1506,17 @@ export const CHAINS = {
15021506 priceStrategy : undefined , // TODO
15031507 } ) ,
15041508 [ ChainId . MonadMainnet ] : new Chain ( {
1505- type : SupportType . UNSUPPORTED ,
1509+ type : SupportType . ETHERSCAN_COMPATIBLE ,
15061510 chainId : ChainId . MonadMainnet ,
15071511 name : 'Monad' ,
1512+ nativeTokenCoingeckoId : 'monad' ,
15081513 logoUrl : '/assets/images/vendor/chains/monad.svg' ,
1514+ explorerUrl : 'https://monadscan.com' ,
1515+ rpc : {
1516+ main : `https://monad-mainnet.g.alchemy.com/v2/${ ALCHEMY_API_KEY } ` ,
1517+ free : 'https://rpc.monad.xyz' ,
1518+ } ,
1519+ deployedContracts : { ...MULTICALL } ,
15091520 } ) ,
15101521 [ ChainId . MonadTestnet ] : new Chain ( {
15111522 type : SupportType . ETHERSCAN_COMPATIBLE ,
0 commit comments