Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(chore) Deployed pricefeed and entropy on apechain mainnet #1867

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions contract_manager/store/chains/EvmChains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -709,3 +709,8 @@
rpcUrl: https://rpc.minato.soneium.org/
networkId: 1946
type: EvmChain
- id: apechain_mainnet
mainnet: true
rpcUrl: https://apechain.calderachain.xyz/http
networkId: 33139
type: EvmChain
3 changes: 3 additions & 0 deletions contract_manager/store/contracts/EvmEntropyContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,6 @@
- chain: soneium_minato_testnet
address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509"
type: EvmEntropyContract
- chain: apechain_mainnet
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
type: EvmEntropyContract
3 changes: 3 additions & 0 deletions contract_manager/store/contracts/EvmPriceFeedContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -394,3 +394,6 @@
- chain: soneium_minato_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: apechain_mainnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
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 @@ -382,3 +382,6 @@
- chain: soneium_minato_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: apechain_mainnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
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 @@ -82,6 +82,7 @@ export const RECEIVER_CHAINS = {
b3_mainnet: 60058,
cronos_zkevm_mainnet: 60059,
idex_xchain_mainnet: 60060,
apechain_mainnet: 60061,

// Testnets as a separate chain ids (to use stable data sources and governance for them)
injective_testnet: 60013,
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.66.0",
"version": "1.67.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 @@ -11,6 +11,7 @@ export {

export const CONTRACT_ADDR: Record<string, string> = {
// Mainnets
apechain_mainnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
arbitrum: "0xff1a0f4744e8582DF1aE09D5611b887B6a12925C",
astar_zkevm: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
aurora: "0xF89C7b475821EC3fDC2dC8099032c05c6c0c9AB9",
Expand Down
Loading