Skip to content

Commit

Permalink
Merge branch 'master' into feat/grc7211-by-spec
Browse files Browse the repository at this point in the history
  • Loading branch information
leohhhn authored Jun 25, 2024
2 parents 15b7b71 + 49fab4a commit f02f3de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
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)
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)

0 comments on commit f02f3de

Please sign in to comment.