Skip to content

Commit 156fb23

Browse files
guibescoscctdaniel
andauthored
[evm] deploy neon devnet (#693)
* add evmos_testnet deployment files * fix precommit * Deploy to neon * Precommit * Add to evm-js * Fix precommit --------- Co-authored-by: Daniel Chew <cctdaniel@outlook.com>
1 parent eaf5f45 commit 156fb23

File tree

7 files changed

+29
-2
lines changed

7 files changed

+29
-2
lines changed

governance/xc_governance_sdk_js/src/chains.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export const RECEIVER_CHAINS = {
88
shimmer: 60004,
99
gnosis: 60005,
1010
evmos: 60006,
11+
neon: 60007,
1112
};
1213

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

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
MIGRATIONS_DIR=./migrations/prod-receiver
2+
MIGRATIONS_NETWORK=neon_devnet
3+
WORMHOLE_CHAIN_NAME=neon
4+
CLUSTER=testnet
5+
VALID_TIME_PERIOD_SECONDS=60
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[
2+
{
3+
"contractName": "Migrations",
4+
"address": "0x5e92a04Cb8591cb7d9FD40B77B474cde0fE44D36"
5+
},
6+
{
7+
"contractName": "WormholeReceiver",
8+
"address": "0x5955C1478F0dAD753C7E2B4dD1b4bC530C64749f",
9+
"transactionHash": "0x1c14a83c42fd99c7e78bfadf9a0200ac3cfd9682cdfbbf875b7ebf90ce75e520"
10+
},
11+
{
12+
"contractName": "PythUpgradable",
13+
"address": "0x2FF312f50689ad279ABb164dB255Eb568733BD6c",
14+
"transactionHash": "0x9fb37b19c9c4d1e765c495f74692de0645ce9efbd3ac7ad9d2a64f0bafccc675"
15+
}
16+
]

target_chains/ethereum/contracts/truffle-config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,10 @@ module.exports = {
216216
provider: payerProvider(`https://eth.bd.evmos.dev:8545/`),
217217
network_id: 9000,
218218
},
219+
neon_devnet: {
220+
provider: payerProvider(`https://devnet.neonevm.org`),
221+
network_id: 245022926,
222+
},
219223
},
220224

221225
compilers: {

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.5.0",
3+
"version": "1.6.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
@@ -39,4 +39,5 @@ export const CONTRACT_ADDR: Record<string, string> = {
3939
zksync: "0xf087c864AEccFb6A2Bf1Af6A0382B0d0f6c5D834",
4040
evmos: "0x354bF866A4B006C9AF9d9e06d9364217A8616E12",
4141
evmos_testnet: "0x354bF866A4B006C9AF9d9e06d9364217A8616E12",
42+
neon_devnet: "0x2FF312f50689ad279ABb164dB255Eb568733BD6c",
4243
};

0 commit comments

Comments
 (0)