Skip to content

Commit 3168166

Browse files
authored
chore(target_chains/ethereum): add Astar zkEVM mainnet network (#1336)
1 parent c8acfc5 commit 3168166

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,11 +333,16 @@
333333
rpcUrl: https://zetachain-evm.blockpi.network/v1/rpc/public
334334
networkId: 7000
335335
type: EvmChain
336-
- id: astar_testnet
336+
- id: astar_zkevm_testnet
337337
mainnet: false
338338
rpcUrl: https://rpc.zkatana.gelato.digital
339339
networkId: 1261120
340340
type: EvmChain
341+
- id: astar_zkevm
342+
mainnet: true
343+
rpcUrl: https://rpc.startale.com/astar-zkevm
344+
networkId: 3776
345+
type: EvmChain
341346
- id: coredao_testnet
342347
mainnet: false
343348
rpcUrl: https://rpc.test.btcs.network

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
- chain: chiliz_spicy
167167
address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509"
168168
type: EvmPriceFeedContract
169-
- chain: astar_testnet
169+
- chain: astar_zkevm_testnet
170170
address: "0x8D254a21b3C86D32F7179855531CE99164721933"
171171
type: EvmPriceFeedContract
172172
- chain: coredao_testnet
@@ -286,3 +286,6 @@
286286
- chain: blast
287287
address: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
288288
type: EvmPriceFeedContract
289+
- chain: astar_zkevm
290+
address: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
291+
type: EvmPriceFeedContract

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const RECEIVER_CHAINS = {
5151
manta: 60032,
5252
chiliz: 60033,
5353
zetachain: 60034,
54-
astar: 60035,
54+
astar_zkevm: 60035,
5555
coredao: 60036,
5656
tomochain: 60037,
5757
stacks: 60038,
@@ -107,7 +107,7 @@ export const RECEIVER_CHAINS = {
107107
optimism_sepolia: 50033,
108108
chiliz_spicy: 50034, // Chiliz testnet
109109
zetachain_testnet: 50035,
110-
astar_testnet: 50036,
110+
astar_zkevm_testnet: 50036,
111111
coredao_testnet: 50037,
112112
tomochain_testnet: 50038,
113113
stacks_testnet: 50039,

package-lock.json

Lines changed: 2 additions & 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.33.0",
3+
"version": "1.34.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
@@ -12,6 +12,7 @@ export {
1212
export const CONTRACT_ADDR: Record<string, string> = {
1313
// Mainnets
1414
arbitrum: "0xff1a0f4744e8582DF1aE09D5611b887B6a12925C",
15+
astar_zkevm: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
1516
aurora: "0xF89C7b475821EC3fDC2dC8099032c05c6c0c9AB9",
1617
avalanche: "0x4305FB66699C3B2702D4d05CF36551390A4c69C6",
1718
blast: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",

0 commit comments

Comments
 (0)