Skip to content

Commit

Permalink
(chore)(evm/pricefeed) Deploy Polynomial (#1696)
Browse files Browse the repository at this point in the history
* (chore) Add Polynomial

* Added etherlink as well
  • Loading branch information
aditya520 authored Jun 14, 2024
1 parent adf0b3b commit 5952b9d
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 1 deletion.
10 changes: 10 additions & 0 deletions contract_manager/store/chains/EvmChains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -629,3 +629,13 @@
rpcUrl: https://node.ghostnet.etherlink.com/
networkId: 128123
type: EvmChain
- id: polynomial
mainnet: true
rpcUrl: https://rpc.polynomial.fi/
networkId: 8008
type: EvmChain
- id: etherlink
mainnet: true
rpcUrl: https://node.mainnet.etherlink.com/
networkId: 42793
type: EvmChain
6 changes: 6 additions & 0 deletions contract_manager/store/contracts/EvmPriceFeedContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -355,3 +355,9 @@
- chain: etherlink_testnet
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: polynomial
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
- chain: etherlink
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
type: EvmPriceFeedContract
6 changes: 6 additions & 0 deletions contract_manager/store/contracts/EvmWormholeContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -334,3 +334,9 @@
- chain: etherlink_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: polynomial
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: etherlink
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
2 changes: 2 additions & 0 deletions governance/xc_admin/packages/xc_admin_common/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ export const RECEIVER_CHAINS = {
sei_evm_mainnet: 50078,
opbnb: 60052,
gravity: 60053,
polynomial: 60054,
etherlink: 60055,

// 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.53.0",
"version": "1.55.0",
"description": "Pyth Network EVM Utils in JS",
"homepage": "https://pyth.network",
"author": {
Expand Down
2 changes: 2 additions & 0 deletions target_chains/ethereum/sdk/js/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
eos: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
evmos: "0x354bF866A4B006C9AF9d9e06d9364217A8616E12",
ethereum: "0x4305FB66699C3B2702D4d05CF36551390A4c69C6",
etherlink: "0x2880aB155794e7179c9eE2e38200202908C17B43",
fantom: "0xff1a0f4744e8582DF1aE09D5611b887B6a12925C",
filecoin: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
flow_previewnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
Expand All @@ -52,6 +53,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
parallel: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
polygon: "0xff1a0f4744e8582DF1aE09D5611b887B6a12925C",
polygon_zkevm: "0xC5E56d6b40F3e3B5fbfa266bCd35C37426537c65",
polynomial: "0x2880aB155794e7179c9eE2e38200202908C17B43",
ronin: "0x2880aB155794e7179c9eE2e38200202908C17B43",
scroll: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
shimmer: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
Expand Down

0 comments on commit 5952b9d

Please sign in to comment.