Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
change cli links to developer docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliotFriend committed Feb 22, 2024
1 parent 60b235f commit 46bd7b4
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/guides/cli/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ hide_table_of_contents: true

The [Soroban CLI] is a crucial tool for developers to use while creating and interacting with Soroban smart contracts.

[Soroban CLI]: ../../reference/soroban-cli.mdx
[Soroban CLI]: https://developers.stellar.org/docs/tools/developer-tools#soroban-cli
2 changes: 1 addition & 1 deletion docs/migrate/evm/smart-contract-deployment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Soroban and Hardhat are both frameworks that enable developers to build, test, a

### Soroban Framework

Soroban is a Rust-based framework tailored for developing smart contracts on the Stellar network. Designed as a lightweight framework, with [tools to support developers](../../reference/soroban-cli.mdx), Soroban allows developers to develop smart contracts through a simple and intuitive workflow.
Soroban is a Rust-based framework tailored for developing smart contracts on the Stellar network. Designed as a lightweight framework, with [tools to support developers](https://developers.stellar.org/docs/tools/developer-tools#soroban-cli), Soroban allows developers to develop smart contracts through a simple and intuitive workflow.

### Hardhat

Expand Down
2 changes: 1 addition & 1 deletion docs/migrate/evm/solidity-and-rust-basics.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ env.storage().instance().get(&COUNTER).unwrap_or(0)

This is a repeat of the code we saw earlier, which retrieves the value associated with the key `COUNTER` from the contract storage. If there is no value set for the key `COUNTER`, a default value of 0 is used. Finally, the `unwrap()` method is called to extract the actual value from the `Ok` wrapper, which is then returned to the caller of the function.

Now that we have written our smart contract, it's time to explore how we can interact with it using the [Soroban-CLI](../../reference/soroban-cli.mdx), one of many robust [Developer Tools](https://developers.stellar.org/docs/tools/developer-tools) available. This powerful command-line tool allows us to interact with the Soroban Virtual Machine from a local machine, providing us with an efficient and flexible way to manage our smart contract.
Now that we have written our smart contract, it's time to explore how we can interact with it using the [Soroban-CLI](https://developers.stellar.org/docs/tools/developer-tools#soroban-cli), one of many robust [Developer Tools](https://developers.stellar.org/docs/tools/developer-tools) available. This powerful command-line tool allows us to interact with the Soroban Virtual Machine from a local machine, providing us with an efficient and flexible way to manage our smart contract.

### Interacting with the Rust Smart Counter

Expand Down
2 changes: 1 addition & 1 deletion docs/soroban-internals/types/fully-typed-contracts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ When you compile a contract created with [soroban-sdk](https://developers.stella

Today, these interface types are formatted using [XDR](https://developers.stellar.org/docs/encyclopedia/xdr), but this [may change](https://github.com/stellar/rs-soroban-sdk/issues/683) down the road.

The important part is that tooling can fetch these interface types to make your life easier. [Soroban CLI](../../reference/soroban-cli.mdx) is the first tool to do so. Specifically, one subcommand:
The important part is that tooling can fetch these interface types to make your life easier. [Soroban CLI](https://developers.stellar.org/docs/tools/developer-tools#soroban-cli) is the first tool to do so. Specifically, one subcommand:

## `soroban contract invoke`

Expand Down
2 changes: 1 addition & 1 deletion docs/tokens/stellar-asset-contract.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ deployment. Asset Issuer will have the administrative permissions after the
contract has been deployed.

[contract_id]: https://github.com/stellar/stellar-xdr/blob/dc23adf60e095a6ce626b2b09128e58a5eae0cd0/Stellar-transaction.x#L661
[Soroban-CLI]: ../reference/soroban-cli.mdx
[Soroban-CLI]: https://developers.stellar.org/docs/tools/developer-tools#soroban-cli

## Interacting with classic Stellar assets

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/liquidity-pool.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1014,4 +1014,4 @@ soroban contract invoke \
--min_b 196 \
```

[`soroban-cli`]: ../reference/soroban-cli.mdx
[`soroban-cli`]: https://developers.stellar.org/docs/tools/developer-tools#soroban-cli
2 changes: 1 addition & 1 deletion docs/tutorials/tokens.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1071,4 +1071,4 @@ soroban contract invoke \
--id GBZV3NONYSUDVTEHATQO4BCJVFXJO3XQU5K32X3XREVZKSMMOZFO4ZXR
```

[`soroban-cli`]: ../reference/soroban-cli.mdx
[`soroban-cli`]: https://developers.stellar.org/docs/tools/developer-tools#soroban-cli

0 comments on commit 46bd7b4

Please sign in to comment.