Skip to content

Commit

Permalink
chore(pricefeed) Deploy Abstract Testnet (#1983)
Browse files Browse the repository at this point in the history
  • Loading branch information
aditya520 authored Oct 2, 2024
1 parent 08bbbbd commit ced7b98
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 2 deletions.
5 changes: 5 additions & 0 deletions contract_manager/store/chains/EvmChains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -714,3 +714,8 @@
rpcUrl: https://mainnet.evm.nodes.onflow.org
networkId: 747
type: EvmChain
- id: abstract_testnet
mainnet: false
rpcUrl: https://api.testnet.abs.xyz
networkId: 11124
type: EvmChain
3 changes: 3 additions & 0 deletions contract_manager/store/contracts/EvmPriceFeedContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -397,3 +397,6 @@
- chain: fantom_sonic_testnet
address: "0x96124d1F6E44FfDf1fb5D6d74BB2DE1B7Fbe7376"
type: EvmPriceFeedContract
- chain: abstract_testnet
address: "0x47F2A9BDAd52d65b66287253cf5ca0D2b763b486"
type: EvmPriceFeedContract
3 changes: 3 additions & 0 deletions contract_manager/store/contracts/EvmWormholeContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -388,3 +388,6 @@
- chain: fantom_sonic_testnet
address: "0xb700C2f6D14e2cfbD0845Bb102701dBDFf5d1bC4"
type: EvmWormholeContract
- chain: abstract_testnet
address: "0xB1DB1498902F08E16E11F1a423ec9CCB9537E1D6"
type: EvmWormholeContract
1 change: 1 addition & 0 deletions governance/xc_admin/packages/xc_admin_common/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ export const RECEIVER_CHAINS = {
soneium_minato_testnet: 50096,
nighthawk: 50097,
blackbird: 50099,
abstract_testnet: 50100,
};

// If there is any overlapping value the receiver chain will replace the wormhole
Expand Down
9 changes: 8 additions & 1 deletion target_chains/ethereum/contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
},
},
},
defaultNetwork: "cronosZkEvmMainnet",
defaultNetwork: "abstractTestnet",
networks: {
// [process.env.MIGRATIONS_NETWORK!]: {
// url: process.env.RPC_URL,
Expand Down Expand Up @@ -53,6 +53,13 @@ module.exports = {
verifyURL:
"https://explorer-api.zkevm.cronos.org/api/v1/contract/verify/hardhat?apikey=",
},
abstractTestnet: {
url: "https://api.testnet.abs.xyz",
ethNetwork: "sepolia",
zksync: true,
verifyURL:
"https://api-explorer-verify.testnet.abs.xyz/contract_verification",
},
},
etherscan: {
apiKey: {
Expand Down
2 changes: 1 addition & 1 deletion target_chains/ethereum/sdk/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pythnetwork/pyth-evm-js",
"version": "1.70.0",
"version": "1.71.0",
"description": "Pyth Network EVM Utils in JS",
"homepage": "https://pyth.network",
"author": {
Expand Down
1 change: 1 addition & 0 deletions target_chains/ethereum/sdk/js/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
zkfair: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
zksync_era: "0xf087c864AEccFb6A2Bf1Af6A0382B0d0f6c5D834",
// Testnets (Stable sources)
abstract_testnet: "0x47F2A9BDAd52d65b66287253cf5ca0D2b763b486",
apechain_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
arbitrum_blueberry: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
arbitrum_sepolia: "0x4374e5a8b9C22271E9EB878A2AA31DE97DF15DAF",
Expand Down

0 comments on commit ced7b98

Please sign in to comment.