You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: pages/docs/operate-a-node/run-a-light-client/light-client-api-reference.mdx
+7-2
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ This will be documented in the individual method descriptions.
28
28
2. It is recommended to use `API-v2` over `API-v1`, although both are supported.
29
29
3. The methods documented here were tested on a locally running instance of the Avail light client.
30
30
They will however work with remotely hosted instances as well.
31
+
4. You can check out or docs for [instructions on running your own instance
32
+
of the Avail light client](/docs/operate-a-node/run-a-light-client/0010-light-client)
31
33
</Callout>
32
34
33
35
## Setting up the dev environment
@@ -51,9 +53,12 @@ curl --version
51
53
<Tabs.Tab>
52
54
How to run the Rust code snippets:
53
55
54
-
1. Make sure you have Rust and Cargo installed on your system before moving forward. You can check that by running:
56
+
1. Make sure you have [Rust](https://www.rust-lang.org) and [Cargo](https://crates.io/) installed on your system before moving forward. You can check that by running:
55
57
```sh
56
-
58
+
rustc --version && cargo --version
59
+
```
60
+
If either of these don't work, you can check out [Rust's official installation guide](https://www.rust-lang.org/tools/install).
0 commit comments