Skip to content

Commit 7fddbd6

Browse files
authored
(chore) Add Flow testnet (#1834)
1 parent 3ff6c67 commit 7fddbd6

File tree

6 files changed

+14
-1
lines changed

6 files changed

+14
-1
lines changed

contract_manager/store/chains/EvmChains.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -689,3 +689,8 @@
689689
rpcUrl: https://mevm.devnet.imola.movementlabs.xyz
690690
networkId: 30732
691691
type: EvmChain
692+
- id: flow_testnet
693+
mainnet: false
694+
rpcUrl: https://testnet.evm.nodes.onflow.org
695+
networkId: 545
696+
type: EvmChain

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -382,3 +382,6 @@
382382
- chain: movement_evm_devnet_imola
383383
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
384384
type: EvmPriceFeedContract
385+
- chain: flow_testnet
386+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
387+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -370,3 +370,6 @@
370370
- chain: movement_evm_devnet_imola
371371
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
372372
type: EvmWormholeContract
373+
- chain: flow_testnet
374+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
375+
type: EvmWormholeContract

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

+1
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ export const RECEIVER_CHAINS = {
182182
cronos_zkevm_testnet: 50091,
183183
reya_testnet: 50092,
184184
movement_evm_devnet_imola: 50093,
185+
flow_testnet: 50094,
185186
};
186187

187188
// If there is any overlapping value the receiver chain will replace the wormhole

target_chains/ethereum/sdk/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/pyth-evm-js",
3-
"version": "1.63.0",
3+
"version": "1.64.0",
44
"description": "Pyth Network EVM Utils in JS",
55
"homepage": "https://pyth.network",
66
"author": {

target_chains/ethereum/sdk/js/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
9595
fantom_sonic_testnet: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
9696
fantom_testnet: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
9797
filecoin_calibration: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
98+
flow_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
9899
fuji: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
99100
hedera_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
100101
idex_xchain_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",

0 commit comments

Comments
 (0)