Skip to content

Commit

Permalink
Update Talk index to include connecting to Devnet, move local network…
Browse files Browse the repository at this point in the history
… to bottom as optional (MystenLabs#4026)
  • Loading branch information
Clay-Mysten authored Aug 16, 2022
1 parent 7a50330 commit bdf9525
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions doc/src/build/comms.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
title: Connect and Communicate with the Sui Network
---

Now that you have [installed Sui](install.md), [started the Sui network](cli-client.md), and learned how to [create smark 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.
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.

* Use the [Sui CLI client](cli-client.md) to start and set up the Sui network.
* Set up your own [local Sui RPC server and use the Sui JSON-RPC API](json-rpc.md) to interact with a local Sui network.
The pages in this section provide various options for communicating with Sui:

* Set up your [Sui RPC server and use the Sui JSON-RPC API](json-rpc.md) to interact with a local Sui network.
* Adhere to the [restrictions placed on JSON types](sui-json.md) to make them SuiJSON compatible.
* Interact with the Sui network via the [Sui Rust SDK](rust-sdk.md), a collection of Rust language JSON-RPC wrapper and crypto utilities.
* Sign transactions and interact with the Sui network using the [Sui TypeScript SDK](https://github.com/MystenLabs/sui/tree/main/sdk/typescript) built on the Sui JSON RPC API.
* Run a [Sui Fullnode](fullnode.md) yourself to store the full Sui blockchain state and history and qualify as a [potential validator](https://sui.io/resources-sui/validator-registration-open/).
* Filter and subscribe to a [real-time event stream](pubsub.md) on your Sui Fullnode using JSON-RPC notifications via the WebSocket API.
* Optionally, use the [Sui CLI client](cli-client.md) to start and set up a local Sui network for contributing changes to the blockchain itself.

0 comments on commit bdf9525

Please sign in to comment.