diff --git a/docs/getting-started/setup.mdx b/docs/getting-started/setup.mdx index e145c802..b57e473a 100644 --- a/docs/getting-started/setup.mdx +++ b/docs/getting-started/setup.mdx @@ -97,16 +97,18 @@ $ soroban Build, deploy, & interact with contracts; set identities to sign with; configure networks; generate keys; and more. Intro: https://soroban.stellar.org -CLI Reference: https://github.com/stellar/soroban-cli/tree/main/docs/soroban-cli-full-docs.md +CLI Reference: https://github.com/stellar/soroban-tools/tree/main/docs/soroban-cli-full-docs.md Usage: soroban [OPTIONS] Commands: completion Print shell completion code for the specified shell + config Deprecated, use `soroban keys` and `soroban network` instead contract Tools for smart contract developers - config Read and update config events Watch the network for contract events + keys Create and manage identities including keys and addresses lab Experiment with early features and expert tools + network Start and configure networks version Print version information Options: @@ -120,7 +122,7 @@ Options: -V, --version Print version TESTING_OPTIONS: - --config-dir + --config-dir Location of config directory, default is "." ``` :::info diff --git a/docs/getting-started/storing-data.mdx b/docs/getting-started/storing-data.mdx index a5a87e1b..d5ffe954 100644 --- a/docs/getting-started/storing-data.mdx +++ b/docs/getting-started/storing-data.mdx @@ -142,6 +142,8 @@ For now, it's worth knowing that there are three kinds of storage: `Persistent`, ### Build the contract +From inside `getting-started-tutorial`, run: + ```sh soroban contract build ```