Skip to content

Commit 2bfa819

Browse files
authored
(feat) Add soneium and apechain (#1858)
1 parent 539542c commit 2bfa819

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
@@ -699,3 +699,13 @@
699699
rpcUrl: https://xchain-rpc.idex.io/
700700
networkId: 94524
701701
type: EvmChain
702+
- id: apechain_testnet
703+
mainnet: false
704+
rpcUrl: https://curtis.rpc.caldera.xyz/http
705+
networkId: 33111
706+
type: EvmChain
707+
- id: soneium_minato_testnet
708+
mainnet: false
709+
rpcUrl: https://rpc.minato.soneium.org/
710+
networkId: 1946
711+
type: EvmChain

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,3 +388,9 @@
388388
- chain: idex_xchain_mainnet
389389
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
390390
type: EvmPriceFeedContract
391+
- chain: apechain_testnet
392+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
393+
type: EvmPriceFeedContract
394+
- chain: soneium_minato_testnet
395+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
396+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,3 +376,9 @@
376376
- chain: idex_xchain_mainnet
377377
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
378378
type: EvmWormholeContract
379+
- chain: apechain_testnet
380+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
381+
type: EvmWormholeContract
382+
- chain: soneium_minato_testnet
383+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
384+
type: EvmWormholeContract

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,8 @@ export const RECEIVER_CHAINS = {
184184
reya_testnet: 50092,
185185
movement_evm_devnet_imola: 50093,
186186
flow_testnet: 50094,
187+
apechain_testnet: 50095,
188+
soneium_minato_testnet: 50096,
187189
};
188190

189191
// 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.65.0",
3+
"version": "1.66.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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
6868
zkfair: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
6969
zksync_era: "0xf087c864AEccFb6A2Bf1Af6A0382B0d0f6c5D834",
7070
// Testnets (Stable sources)
71+
apechain_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
7172
arbitrum_blueberry: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
7273
arbitrum_sepolia: "0x4374e5a8b9C22271E9EB878A2AA31DE97DF15DAF",
7374
astar_zkevm_testnet: "0x8D254a21b3C86D32F7179855531CE99164721933",
@@ -138,6 +139,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
138139
scroll_sepolia: "0x41c9e39574F40Ad34c79f1C99B66A45eFB830d4c",
139140
sepolia: "0xDd24F84d36BF92C65F92307595335bdFab5Bbd21",
140141
shimmer_testnet: "0x8D254a21b3C86D32F7179855531CE99164721933",
142+
soneium_minato_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
141143
taiko_hekla: "0x2880aB155794e7179c9eE2e38200202908C17B43",
142144
taiko_mainnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
143145
viction_testnet: "0x5D289Ad1CE59fCC25b6892e7A303dfFf3a9f7167",

0 commit comments

Comments
 (0)