Skip to content

Commit

Permalink
chore(network) Add new networks (#2194)
Browse files Browse the repository at this point in the history
* chore(network) Add new networks

* monad

* removed berachain
  • Loading branch information
aditya520 authored Dec 16, 2024
1 parent 105185d commit 8343cdc
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 1 deletion.
10 changes: 10 additions & 0 deletions contract_manager/store/chains/EvmChains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -840,3 +840,13 @@
rpcUrl: https://mainnet-rpc.evedex.com
networkId: 161803
type: EvmChain
- id: just_breathe
mainnet: true
rpcUrl: $ENV_JUST_BREATHE_RPC_URL
networkId: 57073
type: EvmChain
- id: monad_devnet
mainnet: false
rpcUrl: https://devnet1.monad.xyz/rpc/X67JTUmM4cBeq25KAqV0uJd8Wf00a1ul
networkId: 41454
type: EvmChain
6 changes: 6 additions & 0 deletions contract_manager/store/contracts/EvmPriceFeedContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -463,3 +463,9 @@
- chain: story_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: just_breathe
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: monad_devnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
6 changes: 6 additions & 0 deletions contract_manager/store/contracts/EvmWormholeContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -457,3 +457,9 @@
- chain: story_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: just_breathe
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: monad_devnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
3 changes: 3 additions & 0 deletions governance/xc_admin/packages/xc_admin_common/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export const RECEIVER_CHAINS = {
fantom_sonic_mainnet: 60072,
eventum_mainnet: 60073,
threat_level_midnight: 60074,
just_breathe: 60075,
// Testnets as a separate chain ids (to use stable data sources and governance for them)
injective_testnet: 60013,
osmosis_testnet_4: 60015,
Expand Down Expand Up @@ -220,6 +221,8 @@ export const RECEIVER_CHAINS = {
fantom_sonic_devnet: 50111,
movement_bardock_testnet: 50112,
story_testnet: 50113,
coredao_testnet_v2: 50114,
monad_devnet: 50116,
};

// If there is any overlapping value the receiver chain will replace the wormhole
Expand Down
2 changes: 1 addition & 1 deletion target_chains/ethereum/sdk/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pythnetwork/pyth-evm-js",
"version": "1.79.0",
"version": "1.81.0",
"description": "Pyth Network EVM Utils in JS",
"homepage": "https://pyth.network",
"author": {
Expand Down
1 change: 1 addition & 0 deletions target_chains/ethereum/sdk/js/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
merlin_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
meter_testnet: "0x5a71C07a0588074443545eE0c08fb0375564c3E4",
mode_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
monad_devnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
morph_holesky_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
morph_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
movement_evm_devnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
Expand Down

0 comments on commit 8343cdc

Please sign in to comment.