Skip to content

Commit 2398afe

Browse files
authored
chore(target_chains/cosmwasm): add rol_testnet network (#1419)
1 parent 80b4dd9 commit 2398afe

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

contract_manager/store/chains/CosmWasmChains.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,11 @@
6666
prefix: juno
6767
feeDenom: ujunox
6868
type: CosmWasmChain
69+
- endpoint: http://18.199.53.161:26657
70+
id: rol_testnet
71+
wormholeChainName: rol_testnet
72+
mainnet: false
73+
gasPrice: "0.025"
74+
prefix: rol
75+
feeDenom: urax
76+
type: CosmWasmChain

contract_manager/store/contracts/CosmWasmPriceFeedContracts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@
4040
- chain: neutron_testnet_pion_1
4141
address: neutron16zwrmx3zgggmxhzau86xfycm42cr4sj888hdvzsxya3qarp6zhhqzhlkvz
4242
type: CosmWasmPriceFeedContract
43+
- chain: rol_testnet
44+
address: rol1pvrwmjuusn9wh34j7y520g8gumuy9xtl3gvprlljfdpwju3x7ucszdyfs8
45+
type: CosmWasmPriceFeedContract

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ export const RECEIVER_CHAINS = {
138138
parallel_testnet: 50062,
139139
polynomial_testnet: 50063,
140140
linea_sepolia: 50064,
141+
rol_testnet: 50065,
141142
};
142143

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

target_chains/cosmwasm/deploy-scripts/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
2. If the wormhole contract is not deployed on the target chain run the following command:
55

66
```
7-
npm run instantiate-wormhole -- --private-key <YOUR_PRIVATE_KEY_HEX> --deploy <stable or edge> --chain <chain id>
7+
npm run instantiate-wormhole -- --private-key <YOUR_PRIVATE_KEY_HEX> --deploy <stable or edge> --chain <chain>
88
```
99

1010
You can re-build the wormhole contract using the scripts given in `wormhole-stub`.
@@ -13,7 +13,8 @@
1313
3. Deploy the pyth contract:
1414

1515
```
16-
npm run instantiate-pyth --contract-version <X.Y.Z> --private-key <YOUR_PRIVATE_KEY_HEX> --deploy <stable or edge>
16+
npm run instantiate-pyth --contract-version <X.Y.Z> --private-key <YOUR_PRIVATE_KEY_HEX> \
17+
--deploy <stable or edge> --wormhole <WORMHOLE_CONTRACT_ADDRESS> --chain <chain>
1718
```
1819

1920
4. You can test the new contract via contract manager scripts like this:

0 commit comments

Comments
 (0)