File tree Expand file tree Collapse file tree
scripts/rpcConfig/constants Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ if (isProduction) {
131131 [ HardhatChainName . PLUME ] : getChainConfig ( ChainSlug . PLUME ) ,
132132 [ HardhatChainName . KATANA ] : getChainConfig ( ChainSlug . KATANA ) ,
133133 [ HardhatChainName . HYPEREVM ] : getChainConfig ( ChainSlug . HYPEREVM ) ,
134+ [ HardhatChainName . MONAD ] : getChainConfig ( ChainSlug . MONAD ) ,
134135 } ;
135136}
136137
@@ -194,6 +195,7 @@ const config: HardhatUserConfig = {
194195 plume : process . env . PLUME_API_KEY || "none" ,
195196 katana : process . env . KATANA_API_KEY || "none" ,
196197 hyperevm : process . env . HYPEREVM_API_KEY || "none" ,
198+ monad : process . env . ETHERSCAN_API_KEY || "none" ,
197199 } ,
198200 customChains : [
199201 {
@@ -444,6 +446,14 @@ const config: HardhatUserConfig = {
444446 browserURL : "https://www.hyperscan.com/" ,
445447 } ,
446448 } ,
449+ {
450+ network : "monad" ,
451+ chainId : ChainId . MONAD ,
452+ urls : {
453+ apiURL : "https://api.etherscan.io/v2/api?chainid=143" ,
454+ browserURL : "https://monadscan.com/" ,
455+ } ,
456+ } ,
447457 ] ,
448458 } ,
449459 networks : {
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ import { DeploymentMode } from "../../../src";
22
33export const version = {
44 [ DeploymentMode . DEV ] : "1.0.5" ,
5- [ DeploymentMode . PROD ] : "1.0.112 " ,
5+ [ DeploymentMode . PROD ] : "1.0.113 " ,
66} ;
Original file line number Diff line number Diff line change @@ -26,5 +26,5 @@ export const Currency = {
2626 [ ChainSlug . HYPEREVM ] : NativeTokens [ "hyperliquid" ] ,
2727 [ ChainSlug . SEI ] : NativeTokens [ "sei-network" ] ,
2828 [ ChainSlug . PLASMA ] : NativeTokens [ "plasma" ] ,
29- [ ChainSlug . MONAD ] : NativeTokens [ "wormhole " ] ,
29+ [ ChainSlug . MONAD ] : NativeTokens [ "monad " ] ,
3030} ;
You can’t perform that action at this time.
0 commit comments