Skip to content

Commit b0dcbe1

Browse files
committed
Update for testnet-v1.1
1 parent d4233a2 commit b0dcbe1

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

docs/installation/installation-advanced.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ export VOINETWORK_SKIP_WALLET_SETUP=1
2323

2424
## Joining a Specific Network (advanced)
2525

26-
Voi Swarm supports joining the `mainnet`, `betanet`, or `testnet-v1.0` networks.
26+
Voi Swarm supports joining the `mainnet`, `betanet`, or `testnet-v1.1` networks.
2727
To specify a network during installation, set the **VOINETWORK_NETWORK** environment variable:
2828

2929
```bash
30-
export VOINETWORK_NETWORK=testnet-v1.0
30+
export VOINETWORK_NETWORK=testnet-v1.1
3131
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
3232
```
3333

docs/updating/migrating-network.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ export VOINETWORK_NETWORK=mainnet
2323
To migrate to Testnet, execute the following command:
2424

2525
```bash
26-
export VOINETWORK_NETWORK=testnet-v1.0
26+
export VOINETWORK_NETWORK=testnet-v1.1
2727
/bin/bash -c "$(curl -fsSL https://get.voi.network/swarm)"
2828
```

install.sh

+10-10
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ set_network_status_url() {
283283
"testnet")
284284
network_status_url="https://testnet-api.voi.nodly.io/v2/status"
285285
;;
286-
"testnet-v1.0")
286+
"testnet-v1.1")
287287
network_status_url="https://testnet-api.voi.nodly.io/v2/status"
288288
;;
289289
*)
@@ -303,7 +303,7 @@ set_staking_url() {
303303
"testnet")
304304
staking_url="https://arc72-idx.nautilus.sh/v1/scs/accounts"
305305
;;
306-
"testnet-v1.0")
306+
"testnet-v1.1")
307307
staking_url="https://arc72-idx.nautilus.sh/v1/scs/accounts"
308308
;;
309309
*)
@@ -321,10 +321,10 @@ set_network_identifier() {
321321
network_identifier="voibeta-v1.0"
322322
;;
323323
"testnet")
324-
network_identifier="voitest-v1.0"
324+
network_identifier="voitest-v1.1"
325325
;;
326-
"testnet-v1.0")
327-
network_identifier="voitest-v1.0"
326+
"testnet-v1.1")
327+
network_identifier="voitest-v1.1"
328328
;;
329329
*)
330330
network_identifier="voimain-v1.0"
@@ -365,13 +365,13 @@ get_network_identifier() {
365365
echo "voibeta-v1.0"
366366
;;
367367
"testnet")
368-
echo "voitest-v1.0"
368+
echo "voitest-v1.1"
369369
;;
370-
"testnet-v1.0")
371-
echo "voitest-v1.0"
370+
"testnet-v1.1")
371+
echo "voitest-v1.1"
372372
;;
373373
*)
374-
echo "voitest-v1.0"
374+
echo "voitest-v1.1"
375375
;;
376376
esac
377377
}
@@ -1533,7 +1533,7 @@ else
15331533
echo "*"
15341534
echo "* After you've done this, type 'completed' to go on"
15351535
echo "****************************************************************************************************************"
1536-
# elif [[ ${VOINETWORK_NETWORK} == "testnet-v1.0" ]]; then
1536+
# elif [[ ${VOINETWORK_NETWORK} == "testnet-v1.1" ]]; then
15371537
# # Get Voi from faucet
15381538
# echo "****************************************************************************************************************"
15391539
# echo "* To join the Voi network, do one of these:"

0 commit comments

Comments
 (0)