Skip to content

Commit 729b18e

Browse files
authored
chore(target_chains/ethereum): add morph testnet network (#1445)
1 parent 1135f00 commit 729b18e

File tree

6 files changed

+12
-2
lines changed

6 files changed

+12
-2
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,3 +549,8 @@
549549
rpcUrl: https://rpc-polynomial-network-testnet-x0tryg8u1c.t.conduit.xyz
550550
networkId: 80008
551551
type: EvmChain
552+
- id: morph_testnet
553+
mainnet: false
554+
rpcUrl: https://rpc-testnet.morphl2.io
555+
networkId: 2710
556+
type: EvmChain

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,3 +319,6 @@
319319
- chain: linea_sepolia
320320
address: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
321321
type: EvmPriceFeedContract
322+
- chain: morph_testnet
323+
address: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
324+
type: EvmPriceFeedContract

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ export const RECEIVER_CHAINS = {
139139
polynomial_testnet: 50063,
140140
linea_sepolia: 50064,
141141
rol_testnet: 50065,
142+
morph_testnet: 50066,
142143
};
143144

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

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.39.0",
3+
"version": "1.40.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
@@ -95,6 +95,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
9595
merlin_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
9696
meter_testnet: "0x5a71C07a0588074443545eE0c08fb0375564c3E4",
9797
mode_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
98+
morph_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
9899
movement_evm_devnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
99100
mumbai: "0xFC6bd9F9f0c6481c6Af3A7Eb46b296A5B85ed379",
100101
neon_devnet: "0x0708325268dF9F66270F1401206434524814508b",

0 commit comments

Comments
 (0)