Skip to content

Commit

Permalink
chore(entropy Debugger) Add Monad testnet (#2382)
Browse files Browse the repository at this point in the history
* chore(entropy Debugger) Add Monad testnet

* update
  • Loading branch information
aditya520 authored Feb 15, 2025
1 parent ee557d2 commit aa9dd64
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion apps/entropy-debugger/src/store/entropy-deployments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ export type EntropyDeployment = {
};

export const EntropyDeployments = {
"berachain-mainnet": {
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
network: "mainnet",
explorer: "https://berascan.com/address/$ADDRESS",
delay: "1 block",
gasLimit: "2.5M",
rpc: "https://rpc.berachain.com",
nativeCurrency: "BERA",
},
blast: {
address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
network: "mainnet",
Expand Down Expand Up @@ -168,7 +177,7 @@ export const EntropyDeployments = {
delay: "",
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
explorer: "https://bartio.beratrail.io/address/$ADDRESS",
gasLimit: "500K",
gasLimit: "2.5M",
nativeCurrency: "BERA",
},
"coredao-testnet": {
Expand Down Expand Up @@ -387,6 +396,33 @@ export const EntropyDeployments = {
rpc: "https://rpc.soniclabs.com",
nativeCurrency: "S",
},
"monad-devnet": {
address: "0x36825bf3fbdf5a29e2d5148bfe7dcf7b5639e320",
explorer: "https://brightstar-884.devnet1.monad.xyz/address/$ADDRESS",
delay: "",
gasLimit: "500K",
network: "testnet",
nativeCurrency: "MON",
rpc: "https://rpc.devnet1.monad.xyz",
},
"monad-testnet": {
address: "0x36825bf3fbdf5a29e2d5148bfe7dcf7b5639e320",
explorer: "https://testnet.monadexplorer.com/address/$ADDRESS",
delay: "",
gasLimit: "500K",
network: "testnet",
nativeCurrency: "MON",
rpc: "https://testnet-rpc.monad.xyz",
},
abstract: {
address: "0x5a4a369F4db5df2054994AF031b7b23949b98c0e",
explorer: "https://abscan.org/address/$ADDRESS",
delay: "1 block",
gasLimit: "500K",
network: "mainnet",
rpc: "https://api.mainnet.abs.xyz",
nativeCurrency: "ETH",
},
} as const satisfies Record<string, EntropyDeployment>;

export const isValidDeployment = (
Expand Down

0 comments on commit aa9dd64

Please sign in to comment.