Skip to content

Commit 7e3704b

Browse files
committed
feat: monad coingecko id and verification
1 parent 9ce502e commit 7e3704b

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

hardhat.config.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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: {

scripts/rpcConfig/constants/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { DeploymentMode } from "../../../src";
22

33
export const version = {
44
[DeploymentMode.DEV]: "1.0.5",
5-
[DeploymentMode.PROD]: "1.0.112",
5+
[DeploymentMode.PROD]: "1.0.113",
66
};

src/enums/currency.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)