Skip to content

Commit 7259cb2

Browse files
authored
chore(networks)-add-new-networks (#2153)
1 parent 27dba0f commit 7259cb2

File tree

7 files changed

+33
-1
lines changed

7 files changed

+33
-1
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -800,3 +800,13 @@
800800
rpcUrl: https://redacted.master.dev/
801801
networkId: 2741
802802
type: EvmChain
803+
- id: eventum_testnet
804+
mainnet: false
805+
rpcUrl: https://testnet-rpc.eh-dev.app
806+
networkId: 16182
807+
type: EvmChain
808+
- id: fantom_sonic_devnet
809+
mainnet: false
810+
rpcUrl: https://rpc.blaze.soniclabs.com
811+
networkId: 57054
812+
type: EvmChain

contract_manager/store/contracts/EvmEntropyContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,9 @@
124124
- chain: happy_bird_song_ends_with_tio
125125
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
126126
type: EvmEntropyContract
127+
- chain: fantom_sonic_devnet
128+
address: "0xEbe57e8045F2F230872523bbff7374986E45C486"
129+
type: EvmEntropyContract
130+
- chain: unichain_sepolia
131+
address: "0x8D254a21b3C86D32F7179855531CE99164721933"
132+
type: EvmEntropyContract

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,3 +442,9 @@
442442
- chain: happy_bird_song_ends_with_tio
443443
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
444444
type: EvmPriceFeedContract
445+
- chain: eventum_testnet
446+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
447+
type: EvmPriceFeedContract
448+
- chain: fantom_sonic_devnet
449+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
450+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,3 +436,9 @@
436436
- chain: happy_bird_song_ends_with_tio
437437
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
438438
type: EvmWormholeContract
439+
- chain: eventum_testnet
440+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
441+
type: EvmWormholeContract
442+
- chain: fantom_sonic_devnet
443+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
444+
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
@@ -214,6 +214,8 @@ export const RECEIVER_CHAINS = {
214214
superseed_testnet: 50107,
215215
happy_bird_song_ends_with_tio: 50108,
216216
hyperevm_testnet: 50109,
217+
eventum_testnet: 50110,
218+
fantom_sonic_devnet: 50111,
217219
};
218220

219221
// 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.76.0",
3+
"version": "1.77.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
@@ -101,7 +101,9 @@ export const CONTRACT_ADDR: Record<string, string> = {
101101
ethena_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
102102
etherlink_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
103103
eos_testnet: "0x0708325268dF9F66270F1401206434524814508b",
104+
eventum_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
104105
evmos_testnet: "0x74f09cb3c7e2A01865f424FD14F6dc9A14E3e94E",
106+
fantom_sonic_devnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
105107
fantom_sonic_testnet: "0x96124d1F6E44FfDf1fb5D6d74BB2DE1B7Fbe7376",
106108
fantom_testnet: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
107109
filecoin_calibration: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",

0 commit comments

Comments
 (0)