Skip to content

Commit aa9dd64

Browse files
authored
chore(entropy Debugger) Add Monad testnet (#2382)
* chore(entropy Debugger) Add Monad testnet * update
1 parent ee557d2 commit aa9dd64

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

apps/entropy-debugger/src/store/entropy-deployments.ts

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ export type EntropyDeployment = {
99
};
1010

1111
export const EntropyDeployments = {
12+
"berachain-mainnet": {
13+
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
14+
network: "mainnet",
15+
explorer: "https://berascan.com/address/$ADDRESS",
16+
delay: "1 block",
17+
gasLimit: "2.5M",
18+
rpc: "https://rpc.berachain.com",
19+
nativeCurrency: "BERA",
20+
},
1221
blast: {
1322
address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
1423
network: "mainnet",
@@ -168,7 +177,7 @@ export const EntropyDeployments = {
168177
delay: "",
169178
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
170179
explorer: "https://bartio.beratrail.io/address/$ADDRESS",
171-
gasLimit: "500K",
180+
gasLimit: "2.5M",
172181
nativeCurrency: "BERA",
173182
},
174183
"coredao-testnet": {
@@ -387,6 +396,33 @@ export const EntropyDeployments = {
387396
rpc: "https://rpc.soniclabs.com",
388397
nativeCurrency: "S",
389398
},
399+
"monad-devnet": {
400+
address: "0x36825bf3fbdf5a29e2d5148bfe7dcf7b5639e320",
401+
explorer: "https://brightstar-884.devnet1.monad.xyz/address/$ADDRESS",
402+
delay: "",
403+
gasLimit: "500K",
404+
network: "testnet",
405+
nativeCurrency: "MON",
406+
rpc: "https://rpc.devnet1.monad.xyz",
407+
},
408+
"monad-testnet": {
409+
address: "0x36825bf3fbdf5a29e2d5148bfe7dcf7b5639e320",
410+
explorer: "https://testnet.monadexplorer.com/address/$ADDRESS",
411+
delay: "",
412+
gasLimit: "500K",
413+
network: "testnet",
414+
nativeCurrency: "MON",
415+
rpc: "https://testnet-rpc.monad.xyz",
416+
},
417+
abstract: {
418+
address: "0x5a4a369F4db5df2054994AF031b7b23949b98c0e",
419+
explorer: "https://abscan.org/address/$ADDRESS",
420+
delay: "1 block",
421+
gasLimit: "500K",
422+
network: "mainnet",
423+
rpc: "https://api.mainnet.abs.xyz",
424+
nativeCurrency: "ETH",
425+
},
390426
} as const satisfies Record<string, EntropyDeployment>;
391427

392428
export const isValidDeployment = (

0 commit comments

Comments
 (0)