Skip to content

Commit 0b3fdb4

Browse files
committed
monad mainnet integration work: ds + df
1 parent 6b6abed commit 0b3fdb4

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

.github/scripts/data/detect-data.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ node <<EOF
156156
const STREAMS_NETWORKS = [
157157
"0g", "apechain", "aptos", "arbitrum", "avalanche", "base", "berachain", "bitlayer", "blast",
158158
"bnb-chain", "bob", "botanix", "celo", "ethereum", "gnosis-chain", "gravity", "hashkey", "hedera", "hyperliquid", "injective",
159-
"ink", "jovay", "katana", "lens", "linea", "mantle", "metis", "opbnb", "optimism", "polygon", "plasma", "ronin",
159+
"ink", "jovay", "katana", "lens", "linea", "mantle", "metis", "monad," "opbnb", "optimism", "polygon", "plasma", "ronin",
160160
"scroll", "shibarium", "sei", "soneium", "sonic",
161161
"solana", "taiko", "unichain", "worldchain", "zksync"
162162
];

src/config/data/chains.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,6 +1219,18 @@
12191219
"icon": "/assets/chains/monad.svg",
12201220
"chainType": "evm",
12211221
"chains": {
1222+
"MONAD_MAINET": {
1223+
"chainId": 143,
1224+
"title": "Monad Mainnet",
1225+
"explorer": {
1226+
"baseUrl": "https://monadvision.com/"
1227+
},
1228+
"nativeCurrency": {
1229+
"name": "MON Token",
1230+
"symbol": "MON",
1231+
"decimals": 18
1232+
}
1233+
},
12221234
"MONAD_TESTNET": {
12231235
"chainId": 10143,
12241236
"title": "Monad Testnet",

src/features/data/chains.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,9 +462,16 @@ export const CHAINS: Chain[] = [
462462
tags: ["default"],
463463
supportedFeatures: ["feeds"],
464464
networks: [
465+
{
466+
name: "Monad Mainnet",
467+
explorerUrl: "https://monadvision.com/address/%s",
468+
networkType: "mainnet",
469+
rddUrl: "https://reference-data-directory.vercel.app/feeds-monad-mainnet.json",
470+
queryString: "monad-mainnet",
471+
},
465472
{
466473
name: "Monad Testnet",
467-
explorerUrl: "https://testnet.monadexplorer.com/address/%s",
474+
explorerUrl: "https://testnet.monadvision.com/address/%s",
468475
networkType: "testnet",
469476
rddUrl: "https://reference-data-directory.vercel.app/feeds-monad-testnet.json",
470477
queryString: "monad-testnet",

src/features/feeds/data/StreamsNetworksData.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,10 +414,15 @@ export const StreamsNetworksData: NetworkData[] = [
414414
{
415415
network: "Monad",
416416
logoUrl: "/assets/chains/monad.svg",
417+
mainnet: {
418+
label: "Monad Mainnet",
419+
verifierProxy: "0xEd813D895457907399E41D36Ec0bE103E32148c8",
420+
explorerUrl: "https://monadvision.com/address/%s",
421+
},
417422
testnet: {
418423
label: "Monad Testnet",
419424
verifierProxy: "0xC539169910DE08D237Df0d73BcDa9074c787A4a1",
420-
explorerUrl: "https://testnet.monadexplorer.com/address/%s",
425+
explorerUrl: "https://testnet.monadvision.com/address/%s",
421426
},
422427
},
423428
{

0 commit comments

Comments
 (0)