Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
25 changes: 25 additions & 0 deletions contract_manager/store/chains/EvmChains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -884,3 +884,28 @@
rpcUrl: https://carrot.megaeth.com/rpc
networkId: 6342
type: EvmChain
- id: converge_testnet
mainnet: false
rpcUrl: https://rpc-converge-testnet-0.t.conduit.xyz
networkId: 52085144
type: EvmChain
- id: worldchain
mainnet: true
rpcUrl: https://worldchain-mainnet.g.alchemy.com/public
networkId: 480
type: EvmChain
- id: worldchain_testnet
mainnet: false
rpcUrl: https://worldchain-sepolia.g.alchemy.com/public
networkId: 4801
type: EvmChain
- id: swellchain_testnet
mainnet: false
rpcUrl: https://swell-testnet.alt.technology
networkId: 1924
type: EvmChain
- id: swellchain
mainnet: true
rpcUrl: https://swell-mainnet.alt.technology
networkId: 1923
type: EvmChain
15 changes: 15 additions & 0 deletions contract_manager/store/contracts/EvmPriceFeedContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -496,3 +496,18 @@
- chain: megaeth_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: converge_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: worldchain
address: "0xe9d69CdD6Fe41e7B621B4A688C5D1a68cB5c8ADc"
type: EvmPriceFeedContract
- chain: swellchain_testnet
address: "0x26DD80569a8B23768A1d80869Ed7339e07595E85"
type: EvmPriceFeedContract
- chain: swellchain
address: "0xDd24F84d36BF92C65F92307595335bdFab5Bbd21"
type: EvmPriceFeedContract
- chain: worldchain_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
15 changes: 15 additions & 0 deletions contract_manager/store/contracts/EvmWormholeContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -490,3 +490,18 @@
- chain: megaeth_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: converge_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: worldchain
address: "0x66E9cBa5529824a03B5Bc9931d9c63637101D0F7"
type: EvmWormholeContract
- chain: swellchain
address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509"
type: EvmWormholeContract
- chain: swellchain_testnet
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
type: EvmWormholeContract
- chain: worldchain_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
5 changes: 5 additions & 0 deletions governance/xc_admin/packages/xc_admin_common/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ export const RECEIVER_CHAINS = {
hyperevm: 60079,
bittensor_mainnet: 60080,
xion: 60081,
worldchain: 60082,
swellchain: 60083,

// Testnets as a separate chain ids (to use stable data sources and governance for them)
injective_testnet: 60013,
Expand Down Expand Up @@ -236,6 +238,9 @@ export const RECEIVER_CHAINS = {
iota_sui_testnet: 50118,
berachain_bepolia: 50119,
megaeth_testnet: 50120,
converge_testnet: 50121,
swellchain_testnet: 50122,
worldchain_testnet: 50123,
};

// If there is any overlapping value the receiver chain will replace the wormhole
Expand Down
Loading