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
17 changes: 16 additions & 1 deletion contract_manager/store/chains/EvmChains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@
type: EvmChain
- id: converge_testnet
mainnet: false
rpcUrl: https://rpc-converge-testnet-0.t.conduit.xyz
rpcUrl: https://rpc-converge-testnet-1.t.conduit.xyz
networkId: 52085144
type: EvmChain
- id: worldchain
Expand All @@ -889,3 +889,18 @@
rpcUrl: https://swell-mainnet.alt.technology
networkId: 1923
type: EvmChain
- id: mezo_testnet
mainnet: false
rpcUrl: https://rpc.test.mezo.org
networkId: 31611
type: EvmChain
- id: mezo
mainnet: true
rpcUrl: https://rpc.mezo.org
networkId: 31612
type: EvmChain
- id: hemi_testnet
mainnet: false
rpcUrl: https://testnet.rpc.hemi.network/rpc
networkId: 743111
type: EvmChain
9 changes: 6 additions & 3 deletions contract_manager/store/contracts/EvmPriceFeedContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,6 @@
- chain: megaeth_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: converge_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: worldchain
address: "0xe9d69CdD6Fe41e7B621B4A688C5D1a68cB5c8ADc"
type: EvmPriceFeedContract
Expand All @@ -496,3 +493,9 @@
- chain: worldchain_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: hemi_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: converge_testnet
address: "0x87047526937246727E4869C5f76A347160e08672"
type: EvmPriceFeedContract
12 changes: 9 additions & 3 deletions contract_manager/store/contracts/EvmWormholeContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -475,9 +475,6 @@
- chain: megaeth_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: converge_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: worldchain
address: "0x66E9cBa5529824a03B5Bc9931d9c63637101D0F7"
type: EvmWormholeContract
Expand All @@ -490,3 +487,12 @@
- chain: worldchain_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: mezo_testnet
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'm midway with mezo_testnet deployment.

address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: hemi_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: converge_testnet
address: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a"
type: EvmWormholeContract
4 changes: 3 additions & 1 deletion governance/xc_admin/packages/xc_admin_common/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const RECEIVER_CHAINS = {
xion: 60081,
worldchain: 60082,
swellchain: 60083,
// empty chain id 60084
mezo: 60084,
iota_sui_mainnet: 60085,

// Testnets as a separate chain ids (to use stable data sources and governance for them)
Expand Down Expand Up @@ -243,6 +243,8 @@ export const RECEIVER_CHAINS = {
converge_testnet: 50121,
swellchain_testnet: 50122,
worldchain_testnet: 50123,
mezo_testnet: 50124,
hemi_testnet: 50125,
};

// If there is any overlapping value the receiver chain will replace the wormhole
Expand Down
1 change: 1 addition & 0 deletions target_chains/ethereum/contracts/foundry.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[profile.default]
solc_version = '0.8.29'
evm_version = "paris"
optimizer = true
optimizer_runs = 200
src = 'contracts'
Expand Down
1 change: 1 addition & 0 deletions target_chains/ethereum/contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ module.exports = {
},
solidity: {
version: "0.8.29",
evmVersion: "paris",
settings: {
optimizer: {
enabled: true,
Expand Down
1 change: 1 addition & 0 deletions target_chains/ethereum/contracts/truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module.exports = {
compilers: {
solc: {
version: "0.8.29",
evmVersion: "paris",
settings: {
optimizer: {
enabled: true,
Expand Down
Loading