Skip to content

Commit a0c2567

Browse files
authored
chore(entropy-debugger)-add-hyperevm (#2518)
1 parent 7655b91 commit a0c2567

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

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

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export const EntropyDeployments = {
6060
explorer: "https://optimistic.etherscan.io/address/$ADDRESS",
6161
delay: "2 blocks",
6262
gasLimit: "500K",
63-
rpc: "https://rpc.ankr.com/optimism",
63+
rpc: "https://optimism.llamarpc.com",
6464
nativeCurrency: "ETH",
6565
},
6666
mode: {
@@ -216,7 +216,7 @@ export const EntropyDeployments = {
216216
rpc: "https://subnets.avax.network/orangetest/testnet/rpc",
217217
nativeCurrency: "JUICE",
218218
},
219-
"sei-evm-mainnet": {
219+
"sei-evm": {
220220
address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
221221
explorer: "https://seitrace.com/address/$ADDRESS?chain=pacific-1",
222222
delay: "1 block",
@@ -306,7 +306,7 @@ export const EntropyDeployments = {
306306
rpc: "https://sepolia.b3.fun/http/",
307307
nativeCurrency: "ETH",
308308
},
309-
"b3-mainnet": {
309+
b3: {
310310
address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
311311
explorer: "https://explorer.b3.fun/address/$ADDRESS",
312312
delay: "1 block",
@@ -351,7 +351,7 @@ export const EntropyDeployments = {
351351
rpc: "https://sanko-arb-sepolia.rpc.caldera.xyz/http",
352352
nativeCurrency: "DMT",
353353
},
354-
"apechain-mainnet": {
354+
apechain: {
355355
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
356356
explorer: "https://apechain.calderaexplorer.xyz/address/$ADDRESS",
357357
delay: "1 block",
@@ -441,6 +441,15 @@ export const EntropyDeployments = {
441441
rpc: "https://bepolia.rpc.berachain.com",
442442
nativeCurrency: "BERA",
443443
},
444+
hyperevm: {
445+
address: "0xfA25E653b44586dBbe27eE9d252192F0e4956683",
446+
explorer: "https://hyperliquid.cloud.blockscout.com/address/$ADDRESS",
447+
delay: "",
448+
gasLimit: "500K",
449+
network: "mainnet",
450+
rpc: "https://rpc.hyperliquid.xyz/evm",
451+
nativeCurrency: "HYPE",
452+
},
444453
} as const satisfies Record<string, EntropyDeployment>;
445454

446455
export const isValidDeployment = (

0 commit comments

Comments
 (0)