Skip to content

Commit e1606a4

Browse files
authored
Add Base sepolia + some minor improvements (#1202)
* Add base sepolia * Fix broken rpc urls * Small fix
1 parent 6463f1a commit e1606a4

File tree

5 files changed

+29
-4
lines changed

5 files changed

+29
-4
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
type: EvmChain
66
- id: kava
77
mainnet: true
8-
rpcUrl: https://evm.kava.io
8+
rpcUrl: https://kava-evm.publicnode.com
99
networkId: 2222
1010
type: EvmChain
1111
- id: evmos
@@ -95,7 +95,7 @@
9595
type: EvmChain
9696
- id: meter
9797
mainnet: true
98-
rpcUrl: https://rpc-meter.jellypool.xyz
98+
rpcUrl: https://meter.blockpi.network/v1/rpc/public
9999
networkId: 82
100100
type: EvmChain
101101
- id: chiado
@@ -345,7 +345,7 @@
345345
type: EvmChain
346346
- id: coredao
347347
mainnet: true
348-
rpcUrl: https://rpc3.coredao.org
348+
rpcUrl: https://rpc.coredao.org
349349
networkId: 1116
350350
type: EvmChain
351351
- id: tomochain
@@ -383,3 +383,8 @@
383383
rpcUrl: https://sepolia.era.zksync.dev/
384384
networkId: 300
385385
type: EvmChain
386+
- id: base_sepolia
387+
mainnet: false
388+
rpcUrl: https://sepolia.base.org
389+
networkId: 84532
390+
type: EvmChain

contract_manager/store/contracts/EvmContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,3 +229,6 @@
229229
- chain: zksync_sepolia
230230
address: "0x056f829183Ec806A78c26C98961678c24faB71af"
231231
type: EvmContract
232+
- chain: base_sepolia
233+
address: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
234+
type: EvmContract

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ export const RECEIVER_CHAINS = {
108108
mode_testnet: 50040,
109109
bttc_testnet: 50041,
110110
zksync_sepolia: 50042,
111+
base_sepolia: 50043,
111112
};
112113

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

target_chains/ethereum/contracts/create-env.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* This script is used to generate the .env file for a specific network.
33
* You can call it like this:
4-
* node create-env.js <contract-id>
4+
* node create-env.js <chain-id>
55
*/
66

77
const { DefaultStore, EvmChain } = require("contract_manager");
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[
2+
{
3+
"contractName": "Migrations",
4+
"address": "0xf5BBe9558F4Bf37F1eB82fb2CEdb1C775FA56832"
5+
},
6+
{
7+
"contractName": "WormholeReceiver",
8+
"address": "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
9+
"transactionHash": "0x713a6e34378ce7c5df18c9876f4ae37af41f9edc1267cf5f90054150920ba9d8"
10+
},
11+
{
12+
"contractName": "PythUpgradable",
13+
"address": "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
14+
"transactionHash": "0xf9818e35635b8f1b26557a4844c2d5a02578a0e667b28fab60d1a50a1b87c0bd"
15+
}
16+
]

0 commit comments

Comments
 (0)