Skip to content

Commit e77ee10

Browse files
authored
chore(network) Add monad testnet (#2240)
1 parent d853ad2 commit e77ee10

File tree

7 files changed

+17
-1
lines changed

7 files changed

+17
-1
lines changed

contract_manager/store/chains/EvmChains.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -850,3 +850,8 @@
850850
rpcUrl: https://rpc.test2.btcs.network
851851
networkId: 1114
852852
type: EvmChain
853+
- id: monad_testnet
854+
mainnet: false
855+
rpcUrl: https://rpc.monad-testnet.category.xyz/rpc/nSyzM1wlIgaALWzbh3oIg5rW65AC6yjqrslOE8wb
856+
networkId: 10143
857+
type: EvmChain

contract_manager/store/contracts/EvmEntropyContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,6 @@
139139
- chain: monad_devnet
140140
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
141141
type: EvmEntropyContract
142+
- chain: monad_testnet
143+
address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320"
144+
type: EvmEntropyContract

contract_manager/store/contracts/EvmPriceFeedContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,3 +472,6 @@
472472
- chain: coredao_testnet_v2
473473
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
474474
type: EvmPriceFeedContract
475+
- chain: monad_testnet
476+
address: "0x2880aB155794e7179c9eE2e38200202908C17B43"
477+
type: EvmPriceFeedContract

contract_manager/store/contracts/EvmWormholeContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,3 +466,6 @@
466466
- chain: coredao_testnet_v2
467467
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
468468
type: EvmWormholeContract
469+
- chain: monad_testnet
470+
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
471+
type: EvmWormholeContract

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ export const RECEIVER_CHAINS = {
224224
coredao_testnet_v2: 50114,
225225
bittensor_testnet: 50115,
226226
monad_devnet: 50116,
227+
monad_testnet: 50117,
227228
};
228229

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

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.82.0",
3+
"version": "1.83.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
@@ -131,6 +131,7 @@ export const CONTRACT_ADDR: Record<string, string> = {
131131
meter_testnet: "0x5a71C07a0588074443545eE0c08fb0375564c3E4",
132132
mode_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
133133
monad_devnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
134+
monad_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
134135
morph_holesky_testnet: "0x2880aB155794e7179c9eE2e38200202908C17B43",
135136
morph_testnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
136137
movement_evm_devnet: "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",

0 commit comments

Comments
 (0)