Skip to content
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

Update index.md #923

Merged
merged 1 commit into from
Mar 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions doc/src/build/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
title: Building Sui
---

Now that you've [learned about Sui](../learn/index.md), it's time to [install](install.md) all the required tools and start building. Begin by becoming familiar with these key concepts:
Now that you've [learned about Sui](../learn/index.md), it's time to [install](../build/install.md) all the required tools and start building. Begin by becoming familiar with these key concepts:

* [Smart Contracts with Move](move.md) - Move is an open source language for writing safe smart contracts. In Sui, Move is used to define,
* [Smart Contracts with Move](../build/move.md) - Move is an open source language for writing safe smart contracts. In Sui, Move is used to define,
create and manage programmable Sui objects representing user-level assets.
* [Sui Wallet](wallet.md) - Sui wallet was developed to facilitate local experimentation with Sui features. In this document, we describe
* [Sui Wallet](../build/wallet.md) - Sui wallet was developed to facilitate local experimentation with Sui features. In this document, we describe
how to set up Sui wallet and execute wallet commands through its command line interface, Wallet CLI.
* [Authorities](authorities.md) - The Sui network is operated by a set of independent authorities, each running its own instance of the Sui
software on a separate machine (or a sharded cluster of machines operated by the same entity).
* [SuiJSON](sui-json.md) - SuiJSON is a JSON-based format with restrictions that allow Sui to align JSON inputs more closely with Move Call
* [SuiJSON](../build/sui-json.md) - SuiJSON is a JSON-based format with restrictions that allow Sui to align JSON inputs more closely with Move Call
arguments. This table shows the restrictions placed on JSON types to make them SuiJSON compatible.
* [Objects](objects.md) - Sui has programmable objects created and managed by Move packages (a.k.a. smart contracts). Move packages themselves
* [Objects](../build/objects.md) - Sui has programmable objects created and managed by Move packages (a.k.a. smart contracts). Move packages themselves
are also objects. Thus, Sui objects can be partitioned into two categories mutable data values and immutable packages.
* [Transactions](transactions.md) - All updates to the Sui ledger happen via a transaction. This section describes the transaction types
* [Transactions](../build/transactions.md) - All updates to the Sui ledger happen via a transaction. This section describes the transaction types
supported by Sui and explains how their execution changes the ledger.