Skip to content

Commit 2db5a26

Browse files
authored
[eth] Deploy to testnet Mantle (#742)
1 parent 343091d commit 2db5a26

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
@@ -12,6 +12,7 @@ export const RECEIVER_CHAINS = {
1212
polygon_zkevm: 60008,
1313
canto: 60009,
1414
meter: 60010,
15+
mantle: 60011,
1516
};
1617

1718
// 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=mantle_testnet
3+
WORMHOLE_CHAIN_NAME=mantle
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": "0xf5BBe9558F4Bf37F1eB82fb2CEdb1C775FA56832"
5+
},
6+
{
7+
"contractName": "WormholeReceiver",
8+
"address": "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
9+
"transactionHash": "0xc72732e29994caa647e7fb891ee547eb1dcb76b66fc43751c9145e93a9a2b4a9"
10+
},
11+
{
12+
"contractName": "PythUpgradable",
13+
"address": "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
14+
"transactionHash": "0x43468658e986846dd076bbc6abc2714e1b663a3b64b1d212534f05f31245d4e1"
15+
}
16+
]

target_chains/ethereum/contracts/truffle-config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,10 @@ module.exports = {
247247
provider: payerProvider("https://rpc-meter.jellypool.xyz"),
248248
network_id: 82,
249249
},
250+
mantle_testnet: {
251+
provider: payerProvider("https://rpc.testnet.mantle.xyz/"),
252+
network_id: 5001,
253+
},
250254
},
251255

252256
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.12.0",
3+
"version": "1.14.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
@@ -45,4 +45,5 @@ export const CONTRACT_ADDR: Record<string, string> = {
4545
canto_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
4646
meter_testnet: "0x5fF5B9039FbD8256864A4460B7EA77093A65B1b5",
4747
meter: "0xbFe3f445653f2136b2FD1e6DdDb5676392E3AF16",
48+
mantle_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
4849
};

0 commit comments

Comments
 (0)