Skip to content

Commit

Permalink
(chore):add networks (#1773)
Browse files Browse the repository at this point in the history
* (chore) Add new networks

* (chore) Add new networks

* pre-commit
  • Loading branch information
aditya520 authored Jul 17, 2024
1 parent 8acbf69 commit a6cfd56
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 3 deletions.
10 changes: 10 additions & 0 deletions contract_manager/store/chains/EvmChains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -649,3 +649,13 @@
rpcUrl: https://rpc.ankr.com/klaytn_testnet
networkId: 1001
type: EvmChain
- id: morph_holesky_testnet
mainnet: false
rpcUrl: https://rpc-holesky.morphl2.io
networkId: 2810
type: EvmChain
- id: tabi_testnet
mainnet: false
rpcUrl: https://rpc-internal.testnet.tabichain.com/
networkId: 9789
type: EvmChain
3 changes: 3 additions & 0 deletions contract_manager/store/contracts/EvmEntropyContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,6 @@
- chain: klaytn
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
type: EvmEntropyContract
- chain: tabi_testnet
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
type: EvmEntropyContract
3 changes: 3 additions & 0 deletions contract_manager/store/contracts/EvmPriceFeedContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -367,3 +367,6 @@
- chain: klaytn
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: morph_holesky_testnet
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 @@ -346,3 +346,9 @@
- chain: klaytn
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: morph_holesky_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: tabi_testnet
address: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a"
type: EvmWormholeContract
6 changes: 4 additions & 2 deletions governance/xc_admin/packages/xc_admin_common/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ export const RECEIVER_CHAINS = {
iota: 60049,
flow_previewnet: 60050,
starknet: 60051,
taiko_mainnet: 50077,
sei_evm_mainnet: 50078,
opbnb: 60052,
gravity: 60053,
polynomial: 60054,
Expand Down Expand Up @@ -159,6 +157,8 @@ export const RECEIVER_CHAINS = {
polygon_amoy: 50074,
starknet_sepolia: 50075,
movement_m2_devnet: 50076,
taiko_mainnet: 50077,
sei_evm_mainnet: 50078,
kakarot_sepolia: 50079,
dela_mithreum_deperp_testnet: 50080,
berachain_testnet_v2: 50081,
Expand All @@ -167,6 +167,8 @@ export const RECEIVER_CHAINS = {
fuel_testnet: 50084,
sei_evm_testnet: 50085,
klaytn_testnet: 50086,
morph_holesky_testnet: 50087,
tabi_testnet: 50088,
};

// 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.56.1",
"version": "1.57.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 @@ -111,6 +111,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
merlin_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
meter_testnet: "0x5a71C07a0588074443545eE0c08fb0375564c3E4",
mode_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
morph_holesky_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
morph_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
movement_evm_devnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
mumbai: "0xFC6bd9F9f0c6481c6Af3A7Eb46b296A5B85ed379",
Expand Down

0 comments on commit a6cfd56

Please sign in to comment.