chore(eth): add scroll sepolia
This commit is contained in:
parent
272f3c1984
commit
f1eeb94210
|
@ -310,3 +310,9 @@
|
||||||
rpcUrl: https://json-rpc.evm.testnet.shimmer.network
|
rpcUrl: https://json-rpc.evm.testnet.shimmer.network
|
||||||
networkId: 1072
|
networkId: 1072
|
||||||
type: EvmChain
|
type: EvmChain
|
||||||
|
- id: scroll_sepolia
|
||||||
|
wormholeChainName: scroll
|
||||||
|
mainnet: false
|
||||||
|
rpcUrl: https://sepolia-rpc.scroll.io/
|
||||||
|
networkId: 534351
|
||||||
|
type: EvmChain
|
||||||
|
|
|
@ -154,3 +154,6 @@
|
||||||
- chain: shimmer_testnet
|
- chain: shimmer_testnet
|
||||||
address: "0x5f3c61944CEb01B3eAef861251Fb1E0f14b848fb"
|
address: "0x5f3c61944CEb01B3eAef861251Fb1E0f14b848fb"
|
||||||
type: EvmContract
|
type: EvmContract
|
||||||
|
- chain: scroll_sepolia
|
||||||
|
address: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
|
||||||
|
type: EvmContract
|
||||||
|
|
|
@ -40,6 +40,7 @@ export const RECEIVER_CHAINS = {
|
||||||
neutron_testnet_pion_1: 60025,
|
neutron_testnet_pion_1: 60025,
|
||||||
eos: 60026,
|
eos: 60026,
|
||||||
syndr: 60027,
|
syndr: 60027,
|
||||||
|
scroll: 60028,
|
||||||
};
|
};
|
||||||
|
|
||||||
// If there is any overlapping value the receiver chain will replace the wormhole
|
// If there is any overlapping value the receiver chain will replace the wormhole
|
||||||
|
|
|
@ -59528,7 +59528,7 @@
|
||||||
},
|
},
|
||||||
"target_chains/ethereum/sdk/js": {
|
"target_chains/ethereum/sdk/js": {
|
||||||
"name": "@pythnetwork/pyth-evm-js",
|
"name": "@pythnetwork/pyth-evm-js",
|
||||||
"version": "1.24.0",
|
"version": "1.25.0",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pythnetwork/price-service-client": "*",
|
"@pythnetwork/price-service-client": "*",
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"contractName": "Migrations",
|
||||||
|
"address": "0xf5BBe9558F4Bf37F1eB82fb2CEdb1C775FA56832"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"contractName": "WormholeReceiver",
|
||||||
|
"address": "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
|
||||||
|
"transactionHash": "0xb8f76498bf67a70d502f0182570371a6e37947bdd66b3daceac39751d0ba5c4b"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"contractName": "PythUpgradable",
|
||||||
|
"address": "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
|
||||||
|
"transactionHash": "0x59eefaa21c17deed2ecce2c766450e78b66d5c9790e7dfbf10114a72b785838f"
|
||||||
|
}
|
||||||
|
]
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@pythnetwork/pyth-evm-js",
|
"name": "@pythnetwork/pyth-evm-js",
|
||||||
"version": "1.24.0",
|
"version": "1.25.0",
|
||||||
"description": "Pyth Network EVM Utils in JS",
|
"description": "Pyth Network EVM Utils in JS",
|
||||||
"homepage": "https://pyth.network",
|
"homepage": "https://pyth.network",
|
||||||
"author": {
|
"author": {
|
||||||
|
|
|
@ -61,4 +61,5 @@ export const CONTRACT_ADDR: Record<string, string> = {
|
||||||
eos_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
|
eos_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
|
||||||
base: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
|
base: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
|
||||||
syndr_nitro_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
|
syndr_nitro_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
|
||||||
|
scroll_sepolia: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue