Skip to content

Commit

Permalink
[docs] fix links: http -> https (MystenLabs#1843)
Browse files Browse the repository at this point in the history
  • Loading branch information
666lcz authored May 5, 2022
1 parent 089e4d1 commit f620d65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/src/build/wallet.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ If you have used the wallet before with a local network, follow the next section
If you have used the wallet before, you will have an existing `wallet.conf` configuration
file. Change the configured Gateway URL to DevNet by using:
```shell
$ wallet switch --gateway http://gateway.devnet.sui.io:9000
$ wallet switch --gateway https://gateway.devnet.sui.io:9000
```
## Genesis
Expand Down
8 changes: 4 additions & 4 deletions doc/src/explore/devnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ title: Experiment with Sui DevNet

Welcome to the beginnings of the Sui DevNet. It exists now to gain operational experience with the Sui software in a public setting. The Sui DevNet currently consists of:

* A four-validator network with all nodes operated by Mysten Labs. Clients send transactions and read requests via this endpoint: https://gateway.devnet.sui.io:9000/
* A public network [Sui Explorer](https://github.com/MystenLabs/sui/tree/main/explorer/client#readme) for browsing the TestNet transaction history: http://explorer.devnet.sui.io
* A four-validator network with all nodes operated by Mysten Labs. Clients send transactions and read requests via this endpoint: https://gateway.devnet.sui.io:9000/ using [JSON-RPC](../build/json-rpc.md)
* A public network [Sui Explorer](https://github.com/MystenLabs/sui/tree/main/explorer/client#readme) for browsing the TestNet transaction history: https://explorer.devnet.sui.io
* A [Discord channel](https://discordapp.com/channels/916379725201563759/971488439931392130) for requesting test coins that can be used to pay for gas on the test network. These coins have no financial value and will disappear each time we reset the network.

Many improvements to the Sui DevNet are underway, such as the ability to run full nodes and use a browser-based wallet. See the [Sui DevNet blog post](https://medium.com/mysten-labs) announcement for full details on upcoming features. All DevNet usage is subject to our [terms of service](https://sui.io/terms/).
Expand Down Expand Up @@ -82,7 +82,7 @@ Type: 0x2::DevNetNFT::DevNetNFT

The above command created an object with ID `ED883F6812AF447B9B0CE220DA5EA9E0F58012FE`. Note you may use `wallet` to [view objects owned by the account](https://docs.sui.io/build/wallet#view-objects-owned-by-the-account).

Now you can view the created object in the [Sui Explorer](http://explorer.devnet.sui.io) at:
Now you can view the created object in the [Sui Explorer](https://explorer.devnet.sui.io) at:
https://explorer.devnet.sui.io/objects/ED883F6812AF447B9B0CE220DA5EA9E0F58012FE

Replace the object ID in the link above with the object ID of the Example NFT you observed in your own command output to see it in Sui Explorer:
Expand All @@ -109,7 +109,7 @@ https://explorer.devnet.sui.io/objects/EC97467A40A1305FFDEF7019C3045FBC7AA31E29

![Custom NFT](../../static/custom-nft.png "Custom NFT")

See all transactions on the [home page](http://explorer.devnet.sui.io) and find the transaction hash under *Latest Transactions*:
See all transactions on the [home page](https://explorer.devnet.sui.io) and find the transaction hash under *Latest Transactions*:

![Explorer home](../../static/explorer-home.png "Explorer home")

Expand Down

0 comments on commit f620d65

Please sign in to comment.