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

fix(docs): broken links #2431

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
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
9 changes: 5 additions & 4 deletions docs/how-to-guides/connecting-from-go.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ func main() {
A few things to note:
- You can view keys in your local keybase by running `gnokey list`.
- You can get the password from a user input using the IO package.
- `Signer` can also be initialized in-memory from a BIP39 mnemonic, using the
[`SignerFromBip39`](../reference/gnoclient/signer.md#func-signerfrombip39) function.
- `Signer` can also be initialized in-memory from a BIP39 mnemonic, using the
[`SignerFromBip39`](https://gnolang.github.io/gno/github.com/gnolang/gno@v0.0.0/gno.land/pkg/gnoclient.html#SignerFromBip39)
leohhhn marked this conversation as resolved.
Show resolved Hide resolved
function.

## Initialize the RPC connection & Client

Expand All @@ -115,8 +116,8 @@ if err != nil {
}
```

A list of Gno.land network endpoints & chain IDs can be found in the [Gno RPC
endpoints](../reference/rpc-endpoints.md#network-configurations) page.
A list of Gno.land network endpoints & chain IDs can be found in the
[Gno RPC endpoints](../reference/network-config.md) page.

With this, we can initialize the `gnoclient.Client` struct:

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/gnoclient/gnoclient.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ To see the full reference documentation for the `gnoclient` package, we recommen
visiting the [`gnoclient godoc page`](https://gnolang.github.io/gno/github.com/gnolang/gno@v0.0.0/gno.land/pkg/gnoclient.html).

For a tutorial on how to use the `gnoclient` package, check out
["How to connect a Go app to Gno.land"](../../how-to-guides/connecting-from-go.md.)
["How to connect a Go app to Gno.land"](../../how-to-guides/connecting-from-go.md)

Loading