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
In order to sign, you will also need the `chain-id`, `account-number` and `sequence`. The `chain-id` is a unique identifier for the blockchain on which you are submitting the transaction. The `account-number` is an identifier generated when your account first receives funds. The `sequence` number is used to keep track of the number of transactions you have sent and prevent replay attacks.
514
515
515
-
Get the chain-id from the genesis file (`cosmoshub-2`), and the two other fields using the account query:
516
+
Get the chain-id from the genesis file (`4`), and the two other fields using the account query:
Then, copy `unsignedTx.json` and transfer it (e.g. via USB) to the offline computer. If it is not done already, [create an account on the offline computer](#using-a-computer). For additional security, you can double check the parameters of your transaction before signing it using the following command:
@@ -527,7 +528,7 @@ cat unsignedTx.json
527
528
Now, sign the transaction using the following command. You will need the `chain-id`, `sequence` and `account-number` obtained earlier:
Copy file name to clipboardexpand all lines: docs/docs/getting-started/installation.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ This guide will explain how to install the `gaiad` binary and run the cli. With
7
7
8
8
## Build Requirements
9
9
10
-
At present, the SDK fully supports installation on linux distributions. For the purpose of this instruction set, we'll be using `Ubuntu 20.04.3 LTS`. It is also possible to install `gaiad` on Unix, while Windows may require additional unsupported third party installation. All steps are listed below for a clean install.
10
+
At present, the SDK fully supports installation on linux distributions. For the purpose of this instruction set, we'll be using `Ubuntu 22.04 LTS`. It is also possible to install `gaiad` on Unix, while Windows may require additional unsupported third party installation. All steps are listed below for a clean install.
11
11
12
12
1.[Update & install build tools](#build-tools)
13
13
2.[Install Go](#install-go)
@@ -28,7 +28,7 @@ sudo apt-get install -y make gcc
28
28
## Install Go
29
29
30
30
:::tip
31
-
**Go 1.20+** is required.
31
+
**Go 1.21+** is required.
32
32
:::
33
33
34
34
We suggest the following two ways to install Go. Check out the [official docs](https://golang.org/doc/install) and Go installer for the correct download for your operating system. Alternatively, you can install Go yourself from the command line. Detailed below are standard default installation locations, but feel free to customize.
@@ -37,12 +37,12 @@ We suggest the following two ways to install Go. Check out the [official docs](h
37
37
38
38
**Ubuntu:**
39
39
40
-
At the time of this writing, the latest release is `1.20.3`. We're going to download the tarball, extract it to `/usr/local`, and export `GOROOT` to our `$PATH`
40
+
At the time of this writing, the latest release is `1.21.7`. We're going to download the tarball, extract it to `/usr/local`, and export `GOROOT` to our `$PATH`
0 commit comments