diff --git a/docs/how-to-guides/connecting-from-go.md b/docs/how-to-guides/connecting-from-go.md index 29067fe0ca1..2d8ebbc7f19 100644 --- a/docs/how-to-guides/connecting-from-go.md +++ b/docs/how-to-guides/connecting-from-go.md @@ -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) +function. ## Initialize the RPC connection & Client @@ -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: diff --git a/docs/reference/gnoclient/gnoclient.md b/docs/reference/gnoclient/gnoclient.md index 5b9a9f5d43e..588cc528dae 100644 --- a/docs/reference/gnoclient/gnoclient.md +++ b/docs/reference/gnoclient/gnoclient.md @@ -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)