Skip to content

Commit d5b15f1

Browse files
authored
chore(networks) Add new networks (#2178)
1 parent 940ed61 commit d5b15f1

File tree

7 files changed

+52
-2
lines changed

7 files changed

+52
-2
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -815,3 +815,28 @@
815815
rpcUrl: https://rpc.soniclabs.com
816816
networkId: 146
817817
type: EvmChain
818+
# - id: bittensor
819+
# mainnet: true
820+
# rpcUrl: https://entrypoint-finney.opentensor.ai:443
821+
# networkId: 945
822+
# type: EvmChain
823+
# - id: bittensor_testnet
824+
# mainnet: false
825+
# rpcUrl: https://test.finney.opentensor.ai:443
826+
# networkId: 945
827+
# type: EvmChain
828+
- id: threat_level_midnight
829+
mainnet: true
830+
rpcUrl: $ENV_THREAT_LEVEL_MIDNIGHT_RPC_URL
831+
networkId: 1868
832+
type: EvmChain
833+
- id: story_testnet
834+
mainnet: false
835+
rpcUrl: https://rpc.odyssey.storyrpc.io/
836+
networkId: 1516
837+
type: EvmChain
838+
- id: eventum_mainnet
839+
mainnet: true
840+
rpcUrl: https://mainnet-rpc.evedex.com
841+
networkId: 161803
842+
type: EvmChain

contract_manager/store/contracts/EvmEntropyContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,6 @@
133133
- chain: fantom_sonic_mainnet
134134
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
135135
type: EvmEntropyContract
136+
- chain: tabi_testnet
137+
address: "0xEbe57e8045F2F230872523bbff7374986E45C486"
138+
type: EvmEntropyContract

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,3 +454,12 @@
454454
- chain: fantom_sonic_mainnet
455455
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
456456
type: EvmPriceFeedContract
457+
- chain: eventum_mainnet
458+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
459+
type: EvmPriceFeedContract
460+
- chain: threat_level_midnight
461+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
462+
type: EvmPriceFeedContract
463+
- chain: story_testnet
464+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
465+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,3 +448,12 @@
448448
- chain: fantom_sonic_mainnet
449449
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
450450
type: EvmWormholeContract
451+
- chain: eventum_mainnet
452+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
453+
type: EvmWormholeContract
454+
- chain: threat_level_midnight
455+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
456+
type: EvmWormholeContract
457+
- chain: story_testnet
458+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
459+
type: EvmWormholeContract

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ export const RECEIVER_CHAINS = {
9999
horse_dream: 60070,
100100
mathematician_in_heart: 60071,
101101
fantom_sonic_mainnet: 60072,
102-
102+
eventum_mainnet: 60073,
103+
threat_level_midnight: 60074,
103104
// Testnets as a separate chain ids (to use stable data sources and governance for them)
104105
injective_testnet: 60013,
105106
osmosis_testnet_4: 60015,
@@ -218,6 +219,7 @@ export const RECEIVER_CHAINS = {
218219
eventum_testnet: 50110,
219220
fantom_sonic_devnet: 50111,
220221
movement_bardock_testnet: 50112,
222+
story_testnet: 50113,
221223
};
222224

223225
// 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.78.0",
3+
"version": "1.79.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
@@ -32,6 +32,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
3232
evmos: "0x354bF866A4B006C9AF9d9e06d9364217A8616E12",
3333
ethereum: "0x4305FB66699C3B2702D4d05CF36551390A4c69C6",
3434
etherlink: "0x2880aB155794e7179c9eE2e38200202908C17B43",
35+
eventum_mainnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
3536
fantom: "0xff1a0f4744e8582DF1aE09D5611b887B6a12925C",
3637
fantom_sonic_mainnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
3738
filecoin: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
@@ -154,6 +155,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
154155
shimmer_testnet: "0x8D254a21b3C86D32F7179855531CE99164721933",
155156
skate_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
156157
soneium_minato_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
158+
story_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
157159
superseed_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
158160
tabi_testnet: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
159161
taiko_hekla: "0x2880aB155794e7179c9eE2e38200202908C17B43",

0 commit comments

Comments
 (0)