Skip to content

Commit 3292f62

Browse files
authored
chore(target_chains/ethereum): add new networks (#2707)
1 parent 8e55e7d commit 3292f62

File tree

7 files changed

+37
-8
lines changed

7 files changed

+37
-8
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@
866866
type: EvmChain
867867
- id: converge_testnet
868868
mainnet: false
869-
rpcUrl: https://rpc-converge-testnet-0.t.conduit.xyz
869+
rpcUrl: https://rpc-converge-testnet-1.t.conduit.xyz
870870
networkId: 52085144
871871
type: EvmChain
872872
- id: worldchain
@@ -889,3 +889,18 @@
889889
rpcUrl: https://swell-mainnet.alt.technology
890890
networkId: 1923
891891
type: EvmChain
892+
- id: mezo_testnet
893+
mainnet: false
894+
rpcUrl: https://rpc.test.mezo.org
895+
networkId: 31611
896+
type: EvmChain
897+
- id: mezo
898+
mainnet: true
899+
rpcUrl: https://rpc.mezo.org
900+
networkId: 31612
901+
type: EvmChain
902+
- id: hemi_testnet
903+
mainnet: false
904+
rpcUrl: https://testnet.rpc.hemi.network/rpc
905+
networkId: 743111
906+
type: EvmChain

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -481,9 +481,6 @@
481481
- chain: megaeth_testnet
482482
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
483483
type: EvmPriceFeedContract
484-
- chain: converge_testnet
485-
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
486-
type: EvmPriceFeedContract
487484
- chain: worldchain
488485
address: "0xe9d69CdD6Fe41e7B621B4A688C5D1a68cB5c8ADc"
489486
type: EvmPriceFeedContract
@@ -496,3 +493,9 @@
496493
- chain: worldchain_testnet
497494
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
498495
type: EvmPriceFeedContract
496+
- chain: hemi_testnet
497+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
498+
type: EvmPriceFeedContract
499+
- chain: converge_testnet
500+
address: "0x87047526937246727E4869C5f76A347160e08672"
501+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,9 +475,6 @@
475475
- chain: megaeth_testnet
476476
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
477477
type: EvmWormholeContract
478-
- chain: converge_testnet
479-
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
480-
type: EvmWormholeContract
481478
- chain: worldchain
482479
address: "0x66E9cBa5529824a03B5Bc9931d9c63637101D0F7"
483480
type: EvmWormholeContract
@@ -490,3 +487,12 @@
490487
- chain: worldchain_testnet
491488
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
492489
type: EvmWormholeContract
490+
- chain: mezo_testnet
491+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
492+
type: EvmWormholeContract
493+
- chain: hemi_testnet
494+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
495+
type: EvmWormholeContract
496+
- chain: converge_testnet
497+
address: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a"
498+
type: EvmWormholeContract

governance/xc_admin/packages/xc_admin_common/src/chains.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const RECEIVER_CHAINS = {
111111
xion: 60081,
112112
worldchain: 60082,
113113
swellchain: 60083,
114-
// empty chain id 60084
114+
mezo: 60084,
115115
iota_sui_mainnet: 60085,
116116

117117
// Testnets as a separate chain ids (to use stable data sources and governance for them)
@@ -243,6 +243,8 @@ export const RECEIVER_CHAINS = {
243243
converge_testnet: 50121,
244244
swellchain_testnet: 50122,
245245
worldchain_testnet: 50123,
246+
mezo_testnet: 50124,
247+
hemi_testnet: 50125,
246248
};
247249

248250
// If there is any overlapping value the receiver chain will replace the wormhole

target_chains/ethereum/contracts/foundry.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[profile.default]
22
solc_version = '0.8.29'
3+
evm_version = "paris"
34
optimizer = true
45
optimizer_runs = 200
56
src = 'contracts'

target_chains/ethereum/contracts/hardhat.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ module.exports = {
113113
},
114114
solidity: {
115115
version: "0.8.29",
116+
evmVersion: "paris",
116117
settings: {
117118
optimizer: {
118119
enabled: true,

target_chains/ethereum/contracts/truffle-config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ module.exports = {
3434
compilers: {
3535
solc: {
3636
version: "0.8.29",
37+
evmVersion: "paris",
3738
settings: {
3839
optimizer: {
3940
enabled: true,

0 commit comments

Comments
 (0)