Skip to content

Commit 2acee46

Browse files
committed
chore(network) Add new networks
1 parent e399a03 commit 2acee46

File tree

7 files changed

+41
-1
lines changed

7 files changed

+41
-1
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -840,3 +840,23 @@
840840
rpcUrl: https://mainnet-rpc.evedex.com
841841
networkId: 161803
842842
type: EvmChain
843+
# - id: coredao_testnet
844+
# mainnet: false
845+
# rpcUrl: https://rpc.test2.btcs.network
846+
# networkId: 1114
847+
# type: EvmChain
848+
- id: just_breathe
849+
mainnet: true
850+
rpcUrl: $ENV_JUST_BREATHE_RPC_URL
851+
networkId: 57073
852+
type: EvmChain
853+
- id: berachain_cartio_testnet
854+
mainnet: false
855+
rpcUrl: $BERACHAIN_CARTIO_TESTNET_RPC_URL
856+
networkId: 80000
857+
type: EvmChain
858+
- id: monad_devnet
859+
mainnet: false
860+
rpcUrl: $MONAD_DEVNET_RPC_URL
861+
networkId: 41454
862+
type: EvmChain

contract_manager/store/contracts/EvmEntropyContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,6 @@
136136
- chain: tabi_testnet
137137
address: "0xEbe57e8045F2F230872523bbff7374986E45C486"
138138
type: EvmEntropyContract
139+
- chain: berachain_cartio_testnet
140+
address: "0xFf255f800044225f54Af4510332Aa3D67CC77635"
141+
type: EvmEntropyContract

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,3 +463,9 @@
463463
- chain: story_testnet
464464
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
465465
type: EvmPriceFeedContract
466+
- chain: just_breathe
467+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
468+
type: EvmPriceFeedContract
469+
- chain: berachain_cartio_testnet
470+
address: "0x825c0390f379C631f3Cf11A82a37D20BddF93c07"
471+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,3 +457,9 @@
457457
- chain: story_testnet
458458
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
459459
type: EvmWormholeContract
460+
- chain: just_breathe
461+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
462+
type: EvmWormholeContract
463+
- chain: berachain_cartio_testnet
464+
address: "0x5D289Ad1CE59fCC25b6892e7A303dfFf3a9f7167"
465+
type: EvmWormholeContract

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ export const RECEIVER_CHAINS = {
101101
fantom_sonic_mainnet: 60072,
102102
eventum_mainnet: 60073,
103103
threat_level_midnight: 60074,
104+
just_breathe: 60075,
104105
// Testnets as a separate chain ids (to use stable data sources and governance for them)
105106
injective_testnet: 60013,
106107
osmosis_testnet_4: 60015,
@@ -220,6 +221,9 @@ export const RECEIVER_CHAINS = {
220221
fantom_sonic_devnet: 50111,
221222
movement_bardock_testnet: 50112,
222223
story_testnet: 50113,
224+
coredao_testnet_v2: 50114,
225+
berachain_cartio_testnet: 50115,
226+
monad_devnet: 50116,
223227
};
224228

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

target_chains/ethereum/sdk/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/pyth-evm-js",
3-
"version": "1.79.0",
3+
"version": "1.80.0",
44
"description": "Pyth Network EVM Utils in JS",
55
"homepage": "https://pyth.network",
66
"author": {

target_chains/ethereum/sdk/js/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
8484
aurora_testnet: "0x74f09cb3c7e2A01865f424FD14F6dc9A14E3e94E",
8585
bnb_testnet: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
8686
base_sepolia: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
87+
berachain_cartio_testnet: "0x825c0390f379C631f3Cf11A82a37D20BddF93c07",
8788
berachain_testnet_v2: "0x2880aB155794e7179c9eE2e38200202908C17B43",
8889
blackbird: "0x2880aB155794e7179c9eE2e38200202908C17B43",
8990
blast_s2_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",

0 commit comments

Comments
 (0)