From 393434c37d2a04c1077c67c882fe3c5da88c554f Mon Sep 17 00:00:00 2001 From: Jack Zampolin Date: Thu, 24 Jan 2019 17:04:13 -0800 Subject: [PATCH 1/2] Fix curlies in the docs --- docs/gaia/ledger.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/gaia/ledger.md b/docs/gaia/ledger.md index ce03c88b2..71c41603e 100644 --- a/docs/gaia/ledger.md +++ b/docs/gaia/ledger.md @@ -15,15 +15,15 @@ Once you have the Cosmos app installed on your Ledger, and the Ledger is accessible from the machine you are using `gaiacli` from you can create a new account key using the Ledger: ```bash -$ gaiacli keys add {{ .Key.Name }} --ledger +$ gaiacli keys add { .Key.Name } --ledger NAME: TYPE: ADDRESS: PUBKEY: -{{ .Key.Name }} ledger cosmos1aw64xxr80lwqqdk8u2xhlrkxqaxamkr3e2g943 cosmospub1addwnpepqvhs678gh9aqrjc2tg2vezw86csnvgzqq530ujkunt5tkuc7lhjkz5mj629 +{ .Key.Name } ledger cosmos1aw64xxr80lwqqdk8u2xhlrkxqaxamkr3e2g943 cosmospub1addwnpepqvhs678gh9aqrjc2tg2vezw86csnvgzqq530ujkunt5tkuc7lhjkz5mj629 ``` This key will only be accessible while the Ledger is plugged in and unlocked. To send some coins with this key, run the following: ```bash -$ gaiacli tx send --from {{ .Key.Name }} --to {{ .Destination.AccAddr }} --chain-id=gaia-7000 +$ gaiacli tx send --from { .Key.Name } --to { .Destination.AccAddr } --chain-id=gaia-7000 ``` You will be asked to review and confirm the transaction on the Ledger. Once you do this you should see the result in the console! Now you can use your Ledger to manage your Atoms and Stake! From a8e6ec4a72d7f3a67c827e011c5f0347481c53b3 Mon Sep 17 00:00:00 2001 From: Jack Zampolin Date: Thu, 24 Jan 2019 17:19:28 -0800 Subject: [PATCH 2/2] Fix comma --- docs/.vuepress/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 94aaf953c..a007b9fe9 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -37,7 +37,7 @@ module.exports = { title: "Gaia", collapsable: false, children: [ - "/gaia/what-is-gaia" + "/gaia/what-is-gaia", "/gaia/installation", "/gaia/join-testnet", "/gaia/validators/validator-setup",