Skip to content

Commit a6cfd56

Browse files
authored
(chore):add networks (#1773)
* (chore) Add new networks * (chore) Add new networks * pre-commit
1 parent 8acbf69 commit a6cfd56

File tree

7 files changed

+28
-3
lines changed

7 files changed

+28
-3
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,3 +649,13 @@
649649
rpcUrl: https://rpc.ankr.com/klaytn_testnet
650650
networkId: 1001
651651
type: EvmChain
652+
- id: morph_holesky_testnet
653+
mainnet: false
654+
rpcUrl: https://rpc-holesky.morphl2.io
655+
networkId: 2810
656+
type: EvmChain
657+
- id: tabi_testnet
658+
mainnet: false
659+
rpcUrl: https://rpc-internal.testnet.tabichain.com/
660+
networkId: 9789
661+
type: EvmChain

contract_manager/store/contracts/EvmEntropyContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,6 @@
9494
- chain: klaytn
9595
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
9696
type: EvmEntropyContract
97+
- chain: tabi_testnet
98+
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
99+
type: EvmEntropyContract

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,3 +367,6 @@
367367
- chain: klaytn
368368
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
369369
type: EvmPriceFeedContract
370+
- chain: morph_holesky_testnet
371+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
372+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,3 +346,9 @@
346346
- chain: klaytn
347347
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
348348
type: EvmWormholeContract
349+
- chain: morph_holesky_testnet
350+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
351+
type: EvmWormholeContract
352+
- chain: tabi_testnet
353+
address: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a"
354+
type: EvmWormholeContract

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ export const RECEIVER_CHAINS = {
6868
iota: 60049,
6969
flow_previewnet: 60050,
7070
starknet: 60051,
71-
taiko_mainnet: 50077,
72-
sei_evm_mainnet: 50078,
7371
opbnb: 60052,
7472
gravity: 60053,
7573
polynomial: 60054,
@@ -159,6 +157,8 @@ export const RECEIVER_CHAINS = {
159157
polygon_amoy: 50074,
160158
starknet_sepolia: 50075,
161159
movement_m2_devnet: 50076,
160+
taiko_mainnet: 50077,
161+
sei_evm_mainnet: 50078,
162162
kakarot_sepolia: 50079,
163163
dela_mithreum_deperp_testnet: 50080,
164164
berachain_testnet_v2: 50081,
@@ -167,6 +167,8 @@ export const RECEIVER_CHAINS = {
167167
fuel_testnet: 50084,
168168
sei_evm_testnet: 50085,
169169
klaytn_testnet: 50086,
170+
morph_holesky_testnet: 50087,
171+
tabi_testnet: 50088,
170172
};
171173

172174
// 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.56.1",
3+
"version": "1.57.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
@@ -111,6 +111,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
111111
merlin_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
112112
meter_testnet: "0x5a71C07a0588074443545eE0c08fb0375564c3E4",
113113
mode_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
114+
morph_holesky_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
114115
morph_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
115116
movement_evm_devnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
116117
mumbai: "0xFC6bd9F9f0c6481c6Af3A7Eb46b296A5B85ed379",

0 commit comments

Comments
 (0)