-
Notifications
You must be signed in to change notification settings - Fork 11.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates to multiple topics to address issues, style, and discoverability #4960
Merged
randall-Mysten
merged 5 commits into
MystenLabs:main
from
randall-Mysten:randall-docs-update-explorer
Oct 6, 2022
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,21 @@ | |
title: Connect to Sui Devnet | ||
--- | ||
|
||
Welcome to the Sui Devnet. We are hosting a public Devnet for the community to experiment with our tech and help to shape the future of the Sui network. It exists to gain operational experience with the Sui software in a public setting prior to our Mainnet launch. | ||
We are hosting a public Devnet for the community to experiment with Sui and provide feedback to help to shape the future of the Sui network. | ||
|
||
The Sui Devnet currently consists of: | ||
The Sui Devnet network currently consists of: | ||
|
||
* A four-validator network with all nodes operated by Mysten Labs. Clients send transactions and read requests via this endpoint: gateway.devnet.sui.io:443 using [JSON-RPC](../build/json-rpc.md) | ||
* Four validator nodes operated by Mysten Labs. Clients send transactions and read requests via this endpoint: gateway.devnet.sui.io:443 using [JSON-RPC](../build/json-rpc.md) | ||
* A public network [Sui Explorer](https://explorer.devnet.sui.io) for browsing transaction history. | ||
* 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/sui-devnet-public-release-a2be304ff36b) announcement for full details on upcoming features. All Devnet usage is subject to our [terms of service](https://sui.io/terms/). | ||
Watch for update announcements in the [#devnet-updates](https://discord.com/channels/916379725201563759/1004638487078772736) Discord channel. | ||
|
||
See the [terms of service](https://sui.io/terms/) for using the Devnet network. | ||
|
||
## Tools | ||
|
||
We provide the following tools for users to interact with the Sui Devnet: | ||
We provide the following tools for users to interact with Sui Devnet: | ||
|
||
* The [Sui command line interface (CLI)](../build/cli-client.md) | ||
* create and manage your private keys | ||
|
@@ -38,9 +40,7 @@ $ which sui | |
``` | ||
You should see the path to the command. Otherwise, reinstall. | ||
|
||
> **Tip:** To reliably test Devnet with the latest Sui binaries, re-install them at least weekly. | ||
|
||
In addition, to conduct advanced work such as publishing a Move module or making a Move call, also obtain the [Sui source code](../build/install.md#source-code); for simplicity, we recommend installing in `~/sui` or using an environment variable. | ||
> **Tip:** Check the [Sui Releases](https://github.com/MystenLabs/sui/releases) page to make sure you have the latest release. | ||
|
||
## Configure the Sui client | ||
|
||
|
@@ -58,11 +58,9 @@ Type `y` and then press `Enter`. You should see the following output: | |
```shell | ||
Sui RPC server Url (Default to Sui Devnet if not specified) : | ||
``` | ||
The Sui client will prompt for the RPC server URL; press 'Enter' and it will default to Devnet. | ||
Or enter a custom URL to connect to a server hosted elsewhere. | ||
The Sui client prompts you for the RPC server URL; press 'Enter' and it defaults to Devnet. You can also enter a custom URL to connect to a custom RPC endpoint. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove single quotes around Enter |
||
|
||
If you have used the Sui client before with a local network, you will have an existing `client.yaml` configuration | ||
file needing update. Change the configured RPC server URL to Devnet by using: | ||
If you previously installed a Sui client with a local network, modify your existing `client.yaml` to change the RPC endpoint with the following command: | ||
```shell | ||
$ sui client switch --rpc https://gateway.devnet.sui.io:443 | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove "to" between "help" and "shape"