Skip to content

Commit ced7b98

Browse files
authored
chore(pricefeed) Deploy Abstract Testnet (#1983)
1 parent 08bbbbd commit ced7b98

File tree

7 files changed

+22
-2
lines changed

7 files changed

+22
-2
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,3 +714,8 @@
714714
rpcUrl: https://mainnet.evm.nodes.onflow.org
715715
networkId: 747
716716
type: EvmChain
717+
- id: abstract_testnet
718+
mainnet: false
719+
rpcUrl: https://api.testnet.abs.xyz
720+
networkId: 11124
721+
type: EvmChain

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,3 +397,6 @@
397397
- chain: fantom_sonic_testnet
398398
address: "0x96124d1F6E44FfDf1fb5D6d74BB2DE1B7Fbe7376"
399399
type: EvmPriceFeedContract
400+
- chain: abstract_testnet
401+
address: "0x47F2A9BDAd52d65b66287253cf5ca0D2b763b486"
402+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,3 +388,6 @@
388388
- chain: fantom_sonic_testnet
389389
address: "0xb700C2f6D14e2cfbD0845Bb102701dBDFf5d1bC4"
390390
type: EvmWormholeContract
391+
- chain: abstract_testnet
392+
address: "0xB1DB1498902F08E16E11F1a423ec9CCB9537E1D6"
393+
type: EvmWormholeContract

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ export const RECEIVER_CHAINS = {
190190
soneium_minato_testnet: 50096,
191191
nighthawk: 50097,
192192
blackbird: 50099,
193+
abstract_testnet: 50100,
193194
};
194195

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

target_chains/ethereum/contracts/hardhat.config.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = {
1515
},
1616
},
1717
},
18-
defaultNetwork: "cronosZkEvmMainnet",
18+
defaultNetwork: "abstractTestnet",
1919
networks: {
2020
// [process.env.MIGRATIONS_NETWORK!]: {
2121
// url: process.env.RPC_URL,
@@ -53,6 +53,13 @@ module.exports = {
5353
verifyURL:
5454
"https://explorer-api.zkevm.cronos.org/api/v1/contract/verify/hardhat?apikey=",
5555
},
56+
abstractTestnet: {
57+
url: "https://api.testnet.abs.xyz",
58+
ethNetwork: "sepolia",
59+
zksync: true,
60+
verifyURL:
61+
"https://api-explorer-verify.testnet.abs.xyz/contract_verification",
62+
},
5663
},
5764
etherscan: {
5865
apiKey: {

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.70.0",
3+
"version": "1.71.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
@@ -69,6 +69,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
6969
zkfair: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
7070
zksync_era: "0xf087c864AEccFb6A2Bf1Af6A0382B0d0f6c5D834",
7171
// Testnets (Stable sources)
72+
abstract_testnet: "0x47F2A9BDAd52d65b66287253cf5ca0D2b763b486",
7273
apechain_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
7374
arbitrum_blueberry: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
7475
arbitrum_sepolia: "0x4374e5a8b9C22271E9EB878A2AA31DE97DF15DAF",

0 commit comments

Comments
 (0)