Skip to content

Commit 8343cdc

Browse files
authored
chore(network) Add new networks (#2194)
* chore(network) Add new networks * monad * removed berachain
1 parent 105185d commit 8343cdc

File tree

6 files changed

+27
-1
lines changed

6 files changed

+27
-1
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -840,3 +840,13 @@
840840
rpcUrl: https://mainnet-rpc.evedex.com
841841
networkId: 161803
842842
type: EvmChain
843+
- id: just_breathe
844+
mainnet: true
845+
rpcUrl: $ENV_JUST_BREATHE_RPC_URL
846+
networkId: 57073
847+
type: EvmChain
848+
- id: monad_devnet
849+
mainnet: false
850+
rpcUrl: https://devnet1.monad.xyz/rpc/X67JTUmM4cBeq25KAqV0uJd8Wf00a1ul
851+
networkId: 41454
852+
type: EvmChain

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: monad_devnet
470+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
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: monad_devnet
464+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
465+
type: EvmWormholeContract

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

Lines changed: 3 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,8 @@ export const RECEIVER_CHAINS = {
220221
fantom_sonic_devnet: 50111,
221222
movement_bardock_testnet: 50112,
222223
story_testnet: 50113,
224+
coredao_testnet_v2: 50114,
225+
monad_devnet: 50116,
223226
};
224227

225228
// 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.81.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
@@ -129,6 +129,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
129129
merlin_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
130130
meter_testnet: "0x5a71C07a0588074443545eE0c08fb0375564c3E4",
131131
mode_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
132+
monad_devnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
132133
morph_holesky_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
133134
morph_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
134135
movement_evm_devnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",

0 commit comments

Comments
 (0)