-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/gnodev-handle-tx
- Loading branch information
Showing
50 changed files
with
9,319 additions
and
501 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected]/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: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected]/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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.