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

Fix links #45

Merged
merged 1 commit into from
Jul 29, 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
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ target/wasm32-unknown-unknown/release/[project-name].wasm
If you have [`soroban-cli`] installed, you can invoke contract functions in a
WASM file.

Using the code we wrote in [Write a Contract](write-a-contract.mdx) and the the
resulting `.wasm` file we built in [Build a WASM File](build-a-wasm-file.mdx)
run the following command to invoke the `hello` function with a single argument
`"friend"`.
Using the code we wrote in [Write a Contract] and the the resulting `.wasm` file
we built in [Build and Run] run the following command to invoke the `hello`
function with a single argument `"friend"`.

```sh
soroban-cli invoke \
Expand All @@ -41,4 +40,6 @@ The following output should appear.
["Hello","friend"]
```

[`soroban-cli`]: setup#install-the-soroban-cli
[`soroban-cli`]: ../getting-started/setup#install-the-soroban-cli
[Write a Contract]: write-a-contract
[Build and Run]: build-and-run