From 069c5f07b5e1e0208ff158011af77d5506f4133a Mon Sep 17 00:00:00 2001 From: Clay-Mysten <100217682+Clay-Mysten@users.noreply.github.com> Date: Fri, 5 Aug 2022 10:48:47 -0700 Subject: [PATCH] Update and rename doc/src/build/comms/index.md to doc/src/build/comms.md (#3785) --- doc/src/build/comms.md | 13 +++++++++++++ doc/src/build/comms/index.md | 13 ------------- 2 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 doc/src/build/comms.md delete mode 100644 doc/src/build/comms/index.md diff --git a/doc/src/build/comms.md b/doc/src/build/comms.md new file mode 100644 index 0000000000000..f0901d765dc77 --- /dev/null +++ b/doc/src/build/comms.md @@ -0,0 +1,13 @@ +--- +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. + +* 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. +* 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. diff --git a/doc/src/build/comms/index.md b/doc/src/build/comms/index.md deleted file mode 100644 index cd2bbff81b662..0000000000000 --- a/doc/src/build/comms/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Connect and Communicate with the Sui Network ---- - -Now that you have [installed Sui](../../build/install.md), [started the Sui network](../../build/cli-client.md), and learned how to [create smark contracts in Move](../../build/move/index.md) and [program Sui objects](../../build/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. - -* Use the [Sui CLI client](../../build/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](../../build/json-rpc.md) to interact with a local Sui network. -* Adhere to the [restrictions placed on JSON types](../../build/sui-json.md) to make them SuiJSON compatible. -* Interact with the Sui network via the [Sui Rust SDK](../../build/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](../../build/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](../../build/pubsub.md) on your Sui Fullnode using JSON-RPC notifications via the WebSocket API. \ No newline at end of file