Skip to content

Commit 272f11a

Browse files
authored
[eth] Redeploy shimmer testnet (#724)
1 parent 7dad38e commit 272f11a

File tree

8 files changed

+23
-25
lines changed

8 files changed

+23
-25
lines changed

package-lock.json

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

target_chains/ethereum/contracts/Deploying.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ This is the deployment process:
9696
9. If you are deploying to a new network, please add the new contract address to consumer facing libraries
9797
and documentations. Please update the following resources:
9898
- [Pyth Gitbook EVM Page](https://github.com/pyth-network/pyth-gitbook/blob/main/pythnet-price-feeds/evm.md#networks)
99-
- [pyth-evm-js package](https://github.com/pyth-network/pyth-js/blob/main/pyth-evm-js/src/index.ts#L13)
99+
- [pyth-evm-js package](../sdk/js/)
100100
10. (Optional) You can test the deployed contract by sending and fetching a price update as described in the
101101
[Testing](#testing) section below.
102102
11. (Optional) Verify the contract as described in the [Verifying the contract](#verifying-the-contract) section.

target_chains/ethereum/contracts/hardhat.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module.exports = {
4545
},
4646
shimmer_testnet: {
4747
url: "https://json-rpc.evm.testnet.shimmer.network",
48-
chainId: 1070,
48+
chainId: 1071,
4949
accounts: {
5050
mnemonic: process.env.MNEMONIC,
5151
},
@@ -67,7 +67,7 @@ module.exports = {
6767
},
6868
{
6969
network: "shimmer_testnet",
70-
chainId: 1070,
70+
chainId: 1071,
7171
urls: {
7272
apiURL: "https://explorer.evm.testnet.shimmer.network/api",
7373
browserURL: "https://explorer.evm.testnet.shimmer.network",

target_chains/ethereum/contracts/networks/1070.json

Lines changed: 0 additions & 16 deletions
This file was deleted.
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": "0xf5BBe9558F4Bf37F1eB82fb2CEdb1C775FA56832"
5+
},
6+
{
7+
"contractName": "WormholeReceiver",
8+
"address": "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
9+
"transactionHash": "0xa0f9e2464c9457f370f23949000fd3cebcaf320f7c085907929dd55c000d688d"
10+
},
11+
{
12+
"contractName": "PythUpgradable",
13+
"address": "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
14+
"transactionHash": "0x52ede0289f74c69ea78bd01b0c6452884528489edf5b4144e436e6f955927531"
15+
}
16+
]

target_chains/ethereum/contracts/truffle-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ module.exports = {
194194
},
195195
shimmer_testnet: {
196196
provider: payerProvider(`https://json-rpc.evm.testnet.shimmer.network`),
197-
network_id: 1070,
197+
network_id: 1071,
198198
verify: {
199199
apiUrl: "https://explorer.evm.testnet.shimmer.network/api",
200200
explorerUrl: "https://explorer.evm.testnet.shimmer.network",

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.9.0",
3+
"version": "1.10.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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
3434
arbitrum_goerli: "0x939C0e902FF5B3F7BA666Cc8F6aC75EE76d3f900",
3535
zksync_goerli: "0xC38B1dd611889Abc95d4E0a472A667c3671c08DE",
3636
base_goerli: "0x5955C1478F0dAD753C7E2B4dD1b4bC530C64749f",
37-
shimmer_testnet: "0x354bF866A4B006C9AF9d9e06d9364217A8616E12",
37+
shimmer_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
3838
chiado: "0xdDAf6D29b8bc81c1F0798a5e4c264ae89c16a72B", // Gnosis testnet
3939
zksync: "0xf087c864AEccFb6A2Bf1Af6A0382B0d0f6c5D834",
4040
evmos: "0x354bF866A4B006C9AF9d9e06d9364217A8616E12",

0 commit comments

Comments
 (0)