Skip to content

Commit 5952b9d

Browse files
authored
(chore)(evm/pricefeed) Deploy Polynomial (#1696)
* (chore) Add Polynomial * Added etherlink as well
1 parent adf0b3b commit 5952b9d

File tree

6 files changed

+27
-1
lines changed

6 files changed

+27
-1
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -629,3 +629,13 @@
629629
rpcUrl: https://node.ghostnet.etherlink.com/
630630
networkId: 128123
631631
type: EvmChain
632+
- id: polynomial
633+
mainnet: true
634+
rpcUrl: https://rpc.polynomial.fi/
635+
networkId: 8008
636+
type: EvmChain
637+
- id: etherlink
638+
mainnet: true
639+
rpcUrl: https://node.mainnet.etherlink.com/
640+
networkId: 42793
641+
type: EvmChain

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,3 +355,9 @@
355355
- chain: etherlink_testnet
356356
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
357357
type: EvmPriceFeedContract
358+
- chain: polynomial
359+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
360+
type: EvmPriceFeedContract
361+
- chain: etherlink
362+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
363+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,3 +334,9 @@
334334
- chain: etherlink_testnet
335335
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
336336
type: EvmWormholeContract
337+
- chain: polynomial
338+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
339+
type: EvmWormholeContract
340+
- chain: etherlink
341+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
342+
type: EvmWormholeContract

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ export const RECEIVER_CHAINS = {
7272
sei_evm_mainnet: 50078,
7373
opbnb: 60052,
7474
gravity: 60053,
75+
polynomial: 60054,
76+
etherlink: 60055,
7577

7678
// Testnets as a separate chain ids (to use stable data sources and governance for them)
7779
injective_testnet: 60013,

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.53.0",
3+
"version": "1.55.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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
2929
eos: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
3030
evmos: "0x354bF866A4B006C9AF9d9e06d9364217A8616E12",
3131
ethereum: "0x4305FB66699C3B2702D4d05CF36551390A4c69C6",
32+
etherlink: "0x2880aB155794e7179c9eE2e38200202908C17B43",
3233
fantom: "0xff1a0f4744e8582DF1aE09D5611b887B6a12925C",
3334
filecoin: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
3435
flow_previewnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
@@ -52,6 +53,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
5253
parallel: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
5354
polygon: "0xff1a0f4744e8582DF1aE09D5611b887B6a12925C",
5455
polygon_zkevm: "0xC5E56d6b40F3e3B5fbfa266bCd35C37426537c65",
56+
polynomial: "0x2880aB155794e7179c9eE2e38200202908C17B43",
5557
ronin: "0x2880aB155794e7179c9eE2e38200202908C17B43",
5658
scroll: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
5759
shimmer: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",

0 commit comments

Comments
 (0)