chore(eth): add scroll sepolia

This commit is contained in:
Ali Behjati 2023-08-07 21:41:22 +02:00
parent 272f3c1984
commit f1eeb94210
7 changed files with 29 additions and 2 deletions

View File

@ -310,3 +310,9 @@
rpcUrl: https://json-rpc.evm.testnet.shimmer.network
networkId: 1072
type: EvmChain
- id: scroll_sepolia
wormholeChainName: scroll
mainnet: false
rpcUrl: https://sepolia-rpc.scroll.io/
networkId: 534351
type: EvmChain

View File

@ -154,3 +154,6 @@
- chain: shimmer_testnet
address: "0x5f3c61944CEb01B3eAef861251Fb1E0f14b848fb"
type: EvmContract
- chain: scroll_sepolia
address: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
type: EvmContract

View File

@ -40,6 +40,7 @@ export const RECEIVER_CHAINS = {
neutron_testnet_pion_1: 60025,
eos: 60026,
syndr: 60027,
scroll: 60028,
};
// If there is any overlapping value the receiver chain will replace the wormhole

2
package-lock.json generated
View File

@ -59528,7 +59528,7 @@
},
"target_chains/ethereum/sdk/js": {
"name": "@pythnetwork/pyth-evm-js",
"version": "1.24.0",
"version": "1.25.0",
"license": "Apache-2.0",
"dependencies": {
"@pythnetwork/price-service-client": "*",

View File

@ -0,0 +1,16 @@
[
{
"contractName": "Migrations",
"address": "0xf5BBe9558F4Bf37F1eB82fb2CEdb1C775FA56832"
},
{
"contractName": "WormholeReceiver",
"address": "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
"transactionHash": "0xb8f76498bf67a70d502f0182570371a6e37947bdd66b3daceac39751d0ba5c4b"
},
{
"contractName": "PythUpgradable",
"address": "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
"transactionHash": "0x59eefaa21c17deed2ecce2c766450e78b66d5c9790e7dfbf10114a72b785838f"
}
]

View File

@ -1,6 +1,6 @@
{
"name": "@pythnetwork/pyth-evm-js",
"version": "1.24.0",
"version": "1.25.0",
"description": "Pyth Network EVM Utils in JS",
"homepage": "https://pyth.network",
"author": {

View File

@ -61,4 +61,5 @@ export const CONTRACT_ADDR: Record<string, string> = {
eos_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
base: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
syndr_nitro_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
scroll_sepolia: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
};