Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .registryrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cfa89b64e01ed9154a4d800deca47cf347d9dac7
4bc2733dbfd170ab898dde0dd26b0c81c041b7c4
60 changes: 57 additions & 3 deletions rust/main/config/mainnet_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
"http": "https://mainnet.base.org"
},
{
"http": "https://base.blockpi.network/v1/rpc/public"
"http": "https://base.public.blockpi.network/v1/rpc/public"
},
{
"http": "https://base.llamarpc.com"
Expand Down Expand Up @@ -6661,10 +6661,10 @@
"hyperevm": {
"blockExplorers": [
{
"apiUrl": "https://hyperliquid.cloud.blockscout.com/api",
"apiUrl": "https://www.hyperscan.com/api/v2",
"family": "blockscout",
"name": "HyperEVM Explorer",
"url": "https://hyperliquid.cloud.blockscout.com"
"url": "https://www.hyperscan.com"
}
],
"blocks": {
Expand Down Expand Up @@ -9525,6 +9525,60 @@
"minFeePerGas": 1100000,
"minPriorityFeePerGas": 1100000
}
},
"eden": {
"blocks": {
"confirmations": 1,
"estimateBlockTime": 1,
"reorgPeriod": 5
},
"chainId": 714,
"deployer": {
"name": "Abacus Works",
"url": "https://www.hyperlane.xyz"
},
"displayName": "Eden",
"domainId": 714,
"gasCurrencyCoinGeckoId": "celestia",
"name": "eden",
"nativeToken": {
"decimals": 18,
"name": "TIA",
"symbol": "TIA"
},
"protocol": "ethereum",
"rpcUrls": [
{
"http": "https://eden-rpc.celestia.org"
}
],
"technicalStack": "other",
"aggregationHook": "0x1cAF2Efd4f00388e17fB7867c5E2B45F1a6b6f2E",
"domainRoutingIsm": "0xBD70Ea9D599a0FC8158B026797177773C3445730",
"domainRoutingIsmFactory": "0x1052eF3419f26Bec74Ed7CEf4a4FA6812Bc09908",
"fallbackRoutingHook": "0x81a92A1a272cb09d7b4970b07548463dC7aE0cB7",
"interchainGasPaymaster": "0xF59557dfacDc5a1cb8A36Af43aA4819a6A891e88",
"interchainSecurityModule": "0xE30BF3A8c6FFdDf1340F56aD1EbEa0Fa9989cD05",
"mailbox": "0x3a464f746D23Ab22155710f44dB16dcA53e0775E",
"merkleTreeHook": "0x14c3CEee8F431aE947364f43429a98EA89800238",
"pausableHook": "0x398633D19f4371e1DB5a8EFE90468eB70B1176AA",
"pausableIsm": "0xC343A7054838FE9F249D7E3Ec1Fa6f1D108694b8",
"protocolFee": "0x71b2644183ECA86401c13577f5332fcc5e48352a",
"proxyAdmin": "0x2f2aFaE1139Ce54feFC03593FeE8AB2aDF4a85A7",
"staticAggregationHookFactory": "0xEb9FcFDC9EfDC17c1EC5E1dc085B98485da213D6",
"staticAggregationIsm": "0xE30BF3A8c6FFdDf1340F56aD1EbEa0Fa9989cD05",
"staticAggregationIsmFactory": "0x8F7454AC98228f3504Bb91eA3D8Adafe6406110A",
"staticMerkleRootMultisigIsmFactory": "0x2C1FAbEcd7bFBdEBF27CcdB67baADB38b6Df90fC",
"staticMerkleRootWeightedMultisigIsmFactory": "0x0761b0827849abbf7b0cC09CE14e1C93D87f5004",
"staticMessageIdMultisigIsmFactory": "0x8b83fefd896fAa52057798f6426E9f0B080FCCcE",
"staticMessageIdWeightedMultisigIsmFactory": "0x4Ed7d626f1E96cD1C0401607Bf70D95243E3dEd1",
"storageGasOracle": "0x4B44e4305B42405382b7BeC717F64D0552a9D9Fe",
"testRecipient": "0xBC9cd961BF6c224FAc51fb049aB6788e38e4A9C0",
"validatorAnnounce": "0x7082e975Fde8D85B0C56B4512b437efFb46F0a09",
"index": {
"from": 4943181
},
"interchainAccountRouter": "0xF7af65596A16740b16CF755F3A43206C96285da0"
}
}
}
12 changes: 6 additions & 6 deletions typescript/infra/config/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ interface MainnetDockerTags extends BaseDockerTags {

export const mainnetDockerTags: MainnetDockerTags = {
// rust agents
relayer: '0acaa0e-20260120-155439',
relayerRC: '0acaa0e-20260120-155439',
validator: '74d999b-20260108-145124',
validatorRC: '74d999b-20260108-145124',
scraper: '74d999b-20260108-145124',
relayer: 'a52b9e6-20260122-173915',
relayerRC: 'a52b9e6-20260122-173915',
validator: 'a52b9e6-20260122-173915',
validatorRC: 'a52b9e6-20260122-173915',
scraper: 'a52b9e6-20260122-173915',
// monorepo services
keyFunder: '74d999b-20260108-145131',
keyFunder: 'a52b9e6-20260122-173924',
kathy: '74d999b-20260108-145131',
checkWarpDeploy: '74d999b-20260108-145131',
// standalone services
Expand Down
3 changes: 3 additions & 0 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ export const hyperlaneContextAgentChainConfig: AgentChainConfig<
degenchain: true,
dogechain: true,
eclipsemainnet: true,
eden: true,
electroneum: true,
endurance: true,
eni: true,
Expand Down Expand Up @@ -247,6 +248,7 @@ export const hyperlaneContextAgentChainConfig: AgentChainConfig<
degenchain: true,
dogechain: true,
eclipsemainnet: true,
eden: false,
electroneum: true,
endurance: true,
eni: true,
Expand Down Expand Up @@ -390,6 +392,7 @@ export const hyperlaneContextAgentChainConfig: AgentChainConfig<
degenchain: true,
dogechain: true,
eclipsemainnet: true,
eden: false,
electroneum: true,
endurance: true,
eni: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@
"eclipsemainnet": {
"validators": ["0xebb52d7eaa3ff7a5a6260bfe5111ce52d57401d0"]
},
"eden": {
"validators": ["0x1c61e6379443e2842d3e9db28e962b6c717fdab1"]
},
"electroneum": {
"validators": ["0x32917f0a38c60ff5b1c4968cb40bc88b14ef0d83"]
},
Expand Down Expand Up @@ -395,9 +398,6 @@
"zerogravity": {
"validators": ["0xc37e7dad064c11d7ecfc75813a4d8d649d797275"]
},
"zeronetwork": {
"validators": ["0x1bd9e3f8a90ea1a13b0f2838a1858046368aad87"]
},
"zetachain": {
"validators": ["0xa3bca0b80317dbf9c7dce16a16ac89f4ff2b23ef"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"degenchain": 2370,
"dogechain": 22.8,
"eclipsemainnet": 0.0232,
"eden": 6.79,
"electroneum": 2330,
"endurance": 14.3,
"eni": 3.13,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"citrea": 0.00005,
"coti": 1,
"eclipsemainnet": 0.5,
"eden": 0.05,
"electroneum": 10,
"eni": 2,
"fluence": 2000,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"degenchain": 19000,
"dogechain": 182,
"eclipsemainnet": 0.5,
"eden": 0.05,
"electroneum": 10,
"endurance": 114,
"eni": 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"degenchain": 4740,
"dogechain": 45.6,
"eclipsemainnet": 0.125,
"eden": 0.0125,
"electroneum": 2.5,
"endurance": 28.6,
"eni": 0.5,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"degenchain": 14200,
"dogechain": 137,
"eclipsemainnet": 0.375,
"eden": 0.0375,
"electroneum": 7.5,
"endurance": 85.8,
"eni": 1.5,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"degenchain": 28400,
"dogechain": 274,
"eclipsemainnet": 0.75,
"eden": 0.075,
"electroneum": 15,
"endurance": 172,
"eni": 3,
Expand Down
8 changes: 8 additions & 0 deletions typescript/infra/config/environments/mainnet3/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import { Address, objMap } from '@hyperlane-xyz/utils';

import { getChain } from '../../registry.js';

import { getEdenCoreConfig } from './eden.js';
import { igp } from './igp.js';
import { DEPLOYER, ethereumChainOwners } from './owners.js';
import { supportedChainNames } from './supportedChainNames.js';
Expand All @@ -34,12 +35,19 @@ import { supportedChainNames } from './supportedChainNames.js';
export const core: ChainMap<CoreConfig> = objMap(
ethereumChainOwners,
(local, owner) => {
// eden is a special case, it's only connected to celestia
if (local === 'eden') {
return getEdenCoreConfig(owner, igp['eden']);
}

const originMultisigs: ChainMap<MultisigConfig> = Object.fromEntries(
supportedChainNames
// no reflexivity
.filter((chain) => chain !== local)
// exclude forma as it's not a core chain
.filter((chain) => chain !== 'forma')
// exclude eden as it's only connected to celestia
.filter((chain) => chain !== 'eden')
.map((origin) => [origin, defaultMultisigConfigs[origin]]),
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8506,5 +8506,75 @@
"constructorArguments": "0000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e",
"isProxy": false
}
],
"eden": [
{
"name": "ProxyAdmin",
"address": "0x2f2aFaE1139Ce54feFC03593FeE8AB2aDF4a85A7",
"constructorArguments": "",
"isProxy": false
},
{
"name": "Mailbox",
"address": "0xeA87ae93Fa0019a82A727bfd3eBd1cFCa8f64f1D",
"constructorArguments": "00000000000000000000000000000000000000000000000000000000000002ca",
"isProxy": false
},
{
"name": "TransparentUpgradeableProxy",
"address": "0x3a464f746D23Ab22155710f44dB16dcA53e0775E",
"constructorArguments": "000000000000000000000000ea87ae93fa0019a82a727bfd3ebd1cfca8f64f1d0000000000000000000000002f2afae1139ce54fefc03593fee8ab2adf4a85a700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000",
"isProxy": true,
"expectedimplementation": "0xeA87ae93Fa0019a82A727bfd3eBd1cFCa8f64f1D"
},
{
"name": "MerkleTreeHook",
"address": "0x14c3CEee8F431aE947364f43429a98EA89800238",
"constructorArguments": "0000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e",
"isProxy": false
},
{
"name": "FallbackRoutingHook",
"address": "0x81a92A1a272cb09d7b4970b07548463dC7aE0cB7",
"constructorArguments": "0000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e000000000000000000000000a7eccdb9be08178f896c26b7bbd8c3d4e844d9ba00000000000000000000000014c3ceee8f431ae947364f43429a98ea89800238",
"isProxy": false
},
{
"name": "PausableHook",
"address": "0x398633D19f4371e1DB5a8EFE90468eB70B1176AA",
"constructorArguments": "",
"isProxy": false
},
{
"name": "StorageGasOracle",
"address": "0x4B44e4305B42405382b7BeC717F64D0552a9D9Fe",
"constructorArguments": "",
"isProxy": false
},
{
"name": "InterchainGasPaymaster",
"address": "0x28EFBCadA00A7ed6772b3666F3898d276e88CAe3",
"constructorArguments": "",
"isProxy": false
},
{
"name": "TransparentUpgradeableProxy",
"address": "0xF59557dfacDc5a1cb8A36Af43aA4819a6A891e88",
"constructorArguments": "00000000000000000000000028efbcada00a7ed6772b3666f3898d276e88cae30000000000000000000000002f2afae1139ce54fefc03593fee8ab2adf4a85a700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044485cc955000000000000000000000000a7eccdb9be08178f896c26b7bbd8c3d4e844d9ba000000000000000000000000a7eccdb9be08178f896c26b7bbd8c3d4e844d9ba00000000000000000000000000000000000000000000000000000000",
"isProxy": true,
"expectedimplementation": "0x28EFBCadA00A7ed6772b3666F3898d276e88CAe3"
},
{
"name": "ProtocolFee",
"address": "0x71b2644183ECA86401c13577f5332fcc5e48352a",
"constructorArguments": "000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a7eccdb9be08178f896c26b7bbd8c3d4e844d9ba000000000000000000000000a7eccdb9be08178f896c26b7bbd8c3d4e844d9ba",
"isProxy": false
},
{
"name": "ValidatorAnnounce",
"address": "0x7082e975Fde8D85B0C56B4512b437efFb46F0a09",
"constructorArguments": "0000000000000000000000003a464f746d23ab22155710f44db16dca53e0775e",
"isProxy": false
}
]
}
Loading
Loading