Skip to content

Commit

Permalink
Fix remaining links to newly moved CLI Client and Devnet docs (#4089)
Browse files Browse the repository at this point in the history
  • Loading branch information
Clay-Mysten authored Aug 17, 2022
1 parent b93f0c8 commit ac5d40a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions crates/sui-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ This directory contains examples of interacting with a Move language smart contr

#### 1. Prepare the environment
1. Install `sui` and `rpc-server` binaries following the [Sui installation](https://github.com/MystenLabs/sui/blob/main/doc/src/build/install.md#binaries) docs.
1. [Connect to Sui Devnet](https://github.com/MystenLabs/sui/blob/main/doc/src/explore/devnet.md).
1. [Make sure you have two addresses with gas](https://github.com/MystenLabs/sui/blob/main/doc/src/build/cli-client.md#adding-accounts-to-the-client) by using the `new-address` command to create new addresses:
1. [Connect to Sui Devnet](https://github.com/MystenLabs/sui/blob/main/doc/src/build/devnet.md).
1. [Make sure you have two addresses with gas](https://github.com/MystenLabs/sui/blob/main/doc/src/contribute/cli-client.md#adding-accounts-to-the-client) by using the `new-address` command to create new addresses:
```shell
sui client new-address
```
Expand Down
2 changes: 1 addition & 1 deletion doc/src/build/comms.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Connect and Communicate with the Sui Network
---

Now that you have [installed Sui](install.md), [connected to Devnet](../explore/devnet.md), and started to [create smart contracts in Move](move/index.md) and [program Sui objects](programming-with-objects/index.md), it's time to let your apps talk to Sui.
Now that you have [installed Sui](install.md), [connected to Devnet](../build/devnet.md), and started to [create smart contracts in Move](move/index.md) and [program Sui objects](programming-with-objects/index.md), it's time to let your apps talk to Sui.

The pages in this section provide various options for communicating with Sui:

Expand Down
4 changes: 2 additions & 2 deletions doc/src/build/devnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.

To instead [contribute](../contribute/index.md) to Sui itself, you may experiment with the advanced [Sui CLI client](../build/cli-client.md) at the command line.
To instead [contribute](../contribute/index.md) to Sui itself, you may experiment with the advanced [Sui CLI client](../contribute/cli-client.md) at the command line.


The Sui Devnet currently consists of:
Expand All @@ -19,7 +19,7 @@ Many improvements to the Sui Devnet are underway, such as the ability to run ful

We provide the following tools for users to interact with the Sui Devnet:

* The [Sui Wallet command line interface (CLI)](../build/cli-client.md)
* The [Sui Wallet command line interface (CLI)](../contribute/cli-client.md)
* create and manage your private keys
* submit transactions for creating example NFTs
* call and publish Move modules
Expand Down
4 changes: 2 additions & 2 deletions doc/src/build/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Now that you've [learned about Sui](../learn/index.md), it's time to start build
Here is our recommended workflow to interact with Sui:

1. [Install](../build/install.md) all of the *required tools*.
1. [Connect](../explore/devnet.md) to the Sui Devnet network.
1. [Connect](../build/devnet.md) to the Sui Devnet network.
1. [Create](../build/move/index.md) *smart contracts* with Move:
1. [Write](../build/move/write-package.md) a package.
1. [Build and test](../build/move/build-test.md) a package.
Expand All @@ -27,6 +27,6 @@ Here is our recommended workflow to interact with Sui:
* [Make](../build/rust-sdk.md) Rust SDK calls to Sui from your app.
* [Write](https://github.com/MystenLabs/sui/tree/main/sdk/typescript/) TypeScript/JavaScript apps.
* [Run](../build/fullnode.md) a Sui Fullnode and [subscribe](../build/pubsub.md) to events.
1. Optionally, [create](../build/cli-client.md#genesis) and [start](../build/cli-client.md#starting-the-network) a *local Sui network* to contribute to the blockchain.
1. Optionally, [create](../contribute/cli-client.md#genesis) and [start](../contribute/cli-client.md#starting-the-network) a *local Sui network* to contribute to the blockchain.

Find answers to common questions about our [roadmap](https://github.com/MystenLabs/sui/blob/main/ROADMAP.md) and more in our [FAQ](../contribute/faq.md).
2 changes: 1 addition & 1 deletion doc/src/build/json-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Follow the instructions to [install Sui binaries](install.md).
### Connect to Sui network

#### Remote Devnet
Simply [connect to the Sui Devnet](../explore/devnet.md) to start making RPC calls to our remote server, build on top of Sui.
Simply [connect to the Sui Devnet](../build/devnet.md) to start making RPC calls to our remote server, build on top of Sui.

#### Local Sui Network
Alternatively, to [contribute](../contribute/index.md) to Sui itself, you may follow the instructions to [create](cli-client.md#genesis) and [start](cli-client.md#starting-the-network) a local Sui network.
Expand Down
2 changes: 1 addition & 1 deletion doc/src/contribute/cli-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ the Sui client and execute commands through its command line
interface, *Sui CLI*.

Note, this is an advanced option and an alternative to simply connecting to our public
[Devnet](../explore/devnet.md). Use Devnet to build upon Sui. Use the Sui CLI here to
[Devnet](../build/devnet.md). Use Devnet to build upon Sui. Use the Sui CLI here to
[contribute](../contribute/index.md) to Sui itself.

## Set up
Expand Down

0 comments on commit ac5d40a

Please sign in to comment.