From 40b4a2c47401c8cdeeadcfdc90360c00cdba86cc Mon Sep 17 00:00:00 2001 From: chasingkirkjufell Date: Sun, 6 Sep 2020 22:19:45 -0700 Subject: [PATCH 1/9] add navcash category --- content/NavCash/_index.en.md | 8 ++++++++ content/NavCash/install_navcash.en.md | 8 ++++++++ content/NavCash/navcash.en.md | 8 ++++++++ content/NavCash/setup_server.en.md | 12 ++++++++++++ themes/dot/layouts/index.html | 4 ++-- 5 files changed, 38 insertions(+), 2 deletions(-) create mode 100755 content/NavCash/_index.en.md create mode 100644 content/NavCash/install_navcash.en.md create mode 100644 content/NavCash/navcash.en.md create mode 100644 content/NavCash/setup_server.en.md diff --git a/content/NavCash/_index.en.md b/content/NavCash/_index.en.md new file mode 100755 index 0000000..61ad015 --- /dev/null +++ b/content/NavCash/_index.en.md @@ -0,0 +1,8 @@ +--- +title: "NavCash" +date: 2020-09-06T11:02:05+06:00 +icon: "fas fa-piggy-bank" +description: "An electrum-based light wallet with support for the hardware wallet." +type : "pages" +order: "030" +--- diff --git a/content/NavCash/install_navcash.en.md b/content/NavCash/install_navcash.en.md new file mode 100644 index 0000000..ee5c280 --- /dev/null +++ b/content/NavCash/install_navcash.en.md @@ -0,0 +1,8 @@ +--- +title: How to install NavCash? +date: "2020-09-06" +draft: false +order: "010" +--- + +NavCash is a light wallet for NavCoin. Its main features are Ledger and Cold Staking support and that it does not need to keep a full copy of the blockchain in order to operate. Instead, it relies on electrum servers to subscribe to notifications related to the wallet. diff --git a/content/NavCash/navcash.en.md b/content/NavCash/navcash.en.md new file mode 100644 index 0000000..268efff --- /dev/null +++ b/content/NavCash/navcash.en.md @@ -0,0 +1,8 @@ +--- +title: What is NavCash? +date: "2020-03-16" +draft: false +order: "000" +--- + +NavCash is a light wallet for NavCoin. Its main features are Ledger and Cold Staking support and that it does not need to keep a full copy of the blockchain in order to operate. Instead, it relies on electrum servers to subscribe to notifications related to the wallet. diff --git a/content/NavCash/setup_server.en.md b/content/NavCash/setup_server.en.md new file mode 100644 index 0000000..f727c19 --- /dev/null +++ b/content/NavCash/setup_server.en.md @@ -0,0 +1,12 @@ +--- +title: How to install NavCash? +date: "2020-09-06" +draft: false +order: "010" +--- + +NavCash can be downloaded from the [NavCoin website](https://navcoin.org/en/wallets/). After the App is downloaded, simply follow the wizard to finish the installation. + +To use NavCash with Ledger Nano S, and app loaded is needed to be manually installed on Ledger since the Ledger App is still being reviewed by the Ledger team. The loader can be found in the link for the NavCash wallet. + +Ledger Nano X is not supported at the moment since it does not allow 3rd party App. diff --git a/themes/dot/layouts/index.html b/themes/dot/layouts/index.html index 959f4aa..f255a17 100755 --- a/themes/dot/layouts/index.html +++ b/themes/dot/layouts/index.html @@ -8,7 +8,7 @@ {{with .Site.Params.topics.title}}

{{ . }}

{{ end }} {{ "" | safeHTML }} - {{ range (where .Site.Pages "Type" "pages") }} + {{ range (where .Site.Pages "Type" "pages").byParam "order" }}
@@ -40,4 +40,4 @@

{{ .Title }}

{{ "" | safeHTML }} {{ end }} -{{ end }} \ No newline at end of file +{{ end }} From ce522b0a7e4dbfd53b363ddfe3aff38f13b887bf Mon Sep 17 00:00:00 2001 From: chasingkirkjufell Date: Sun, 6 Sep 2020 22:22:19 -0700 Subject: [PATCH 2/9] add ordering info to categories --- content/General Support/_index.en.md | 3 ++- content/NavCoin Core/_index.en.md | 3 ++- content/NavCoin Website/_index.en.md | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/content/General Support/_index.en.md b/content/General Support/_index.en.md index 1e58978..af3c6ed 100755 --- a/content/General Support/_index.en.md +++ b/content/General Support/_index.en.md @@ -4,4 +4,5 @@ date: 2018-12-29T11:02:05+06:00 icon: "fas fa-toolbox" description: "More general articles not related to a single product." type : "pages" ---- \ No newline at end of file +order: "000" +--- diff --git a/content/NavCoin Core/_index.en.md b/content/NavCoin Core/_index.en.md index bbaf97c..78f4722 100755 --- a/content/NavCoin Core/_index.en.md +++ b/content/NavCoin Core/_index.en.md @@ -4,4 +4,5 @@ date: 2018-12-29T11:02:05+06:00 icon: "fas fa-desktop" description: "NavCoin Core is the software for running a full node." type : "pages" ---- \ No newline at end of file +order: "010" +--- diff --git a/content/NavCoin Website/_index.en.md b/content/NavCoin Website/_index.en.md index 916da14..af07384 100644 --- a/content/NavCoin Website/_index.en.md +++ b/content/NavCoin Website/_index.en.md @@ -4,4 +4,5 @@ date: 2018-12-29T11:02:05+06:00 icon: "fas fa-globe" description: "Guides for contributing to the NavCoin.org static site." type : "pages" +order: "020" --- From 5bceeb54110563ddcc3cd60b77decb8a96b3e326 Mon Sep 17 00:00:00 2001 From: chasingkirkjufell Date: Sun, 6 Sep 2020 22:25:21 -0700 Subject: [PATCH 3/9] setup server --- content/NavCash/setup_server.en.md | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/content/NavCash/setup_server.en.md b/content/NavCash/setup_server.en.md index f727c19..e221ed2 100644 --- a/content/NavCash/setup_server.en.md +++ b/content/NavCash/setup_server.en.md @@ -1,12 +1,22 @@ --- -title: How to install NavCash? +title: How to run my own NavCash Server? date: "2020-09-06" draft: false -order: "010" +order: "020" --- -NavCash can be downloaded from the [NavCoin website](https://navcoin.org/en/wallets/). After the App is downloaded, simply follow the wizard to finish the installation. +We have put a lot of effort into making the process of running your own node as simple as possible. We will teach you how to do it with a rented VPS, which will not require you to have your computer turned on 24 hours. If you are going to stake using a pool because you don’t want to run your own server (whether NavCash, NavPool or other), you can skip this section. -To use NavCash with Ledger Nano S, and app loaded is needed to be manually installed on Ledger since the Ledger App is still being reviewed by the Ledger team. The loader can be found in the link for the NavCash wallet. +The first step would be to get a VPS. We recommend you to make this step in [Hetzner](https://console.hetzner.cloud/), a German provider which is famous for its low prices and high quality service. Simply create an account there and log in. Choose ‘Add Server’, select Ubuntu 20.04 and CX21 (2vCPU and 4GB RAM). The costs are as low as 5,83€ per month! -Ledger Nano X is not supported at the moment since it does not allow 3rd party App. +Once the server is created, you will see the details to access it over SSH. Connect to it and one command will be enough to set it up. + +> curl -s https://index.nav.community/setup.sh|sudo -E bash + +It will take about 30 minutes to complete. + +You will be prompted with two important values when it’s finished: your staking address and the address of your Electrum node. + +When you launch NavCash for the first time, you will be asked about which server you want to connect. You can then input the server information to let NavCash connect to your own server. + +For more information on the setup and how NavCash works, please checkout [this medium article](https://medium.com/@NAVCoin/navcoin-the-ultimate-guide-to-staking-its-never-been-so-easy-c0ef2f9983c8). From baeeabf93380f5fd8f80e13aff00399ec23add7e Mon Sep 17 00:00:00 2001 From: chasingkirkjufell Date: Sun, 6 Sep 2020 22:28:09 -0700 Subject: [PATCH 4/9] fix typo --- content/NavCash/setup_server.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/NavCash/setup_server.en.md b/content/NavCash/setup_server.en.md index e221ed2..137bb47 100644 --- a/content/NavCash/setup_server.en.md +++ b/content/NavCash/setup_server.en.md @@ -19,4 +19,4 @@ You will be prompted with two important values when it’s finished: your stakin When you launch NavCash for the first time, you will be asked about which server you want to connect. You can then input the server information to let NavCash connect to your own server. -For more information on the setup and how NavCash works, please checkout [this medium article](https://medium.com/@NAVCoin/navcoin-the-ultimate-guide-to-staking-its-never-been-so-easy-c0ef2f9983c8). +For more information on the setup and how NavCash works, please check out this medium [article](https://medium.com/@NAVCoin/navcoin-the-ultimate-guide-to-staking-its-never-been-so-easy-c0ef2f9983c8). From 5226fd72550af8ec50d4004bc04ed74d18d62fe7 Mon Sep 17 00:00:00 2001 From: chasingkirkjufell Date: Sun, 6 Sep 2020 22:32:23 -0700 Subject: [PATCH 5/9] update install info --- content/NavCash/install_navcash.en.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/NavCash/install_navcash.en.md b/content/NavCash/install_navcash.en.md index ee5c280..f727c19 100644 --- a/content/NavCash/install_navcash.en.md +++ b/content/NavCash/install_navcash.en.md @@ -5,4 +5,8 @@ draft: false order: "010" --- -NavCash is a light wallet for NavCoin. Its main features are Ledger and Cold Staking support and that it does not need to keep a full copy of the blockchain in order to operate. Instead, it relies on electrum servers to subscribe to notifications related to the wallet. +NavCash can be downloaded from the [NavCoin website](https://navcoin.org/en/wallets/). After the App is downloaded, simply follow the wizard to finish the installation. + +To use NavCash with Ledger Nano S, and app loaded is needed to be manually installed on Ledger since the Ledger App is still being reviewed by the Ledger team. The loader can be found in the link for the NavCash wallet. + +Ledger Nano X is not supported at the moment since it does not allow 3rd party App. From b0d83af536a9a61e7ccec3644be9e2d8cad73ecb Mon Sep 17 00:00:00 2001 From: chasingkirkjufell Date: Sun, 6 Sep 2020 22:33:10 -0700 Subject: [PATCH 6/9] update navcash info --- content/NavCash/navcash.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/NavCash/navcash.en.md b/content/NavCash/navcash.en.md index 268efff..45ff141 100644 --- a/content/NavCash/navcash.en.md +++ b/content/NavCash/navcash.en.md @@ -1,6 +1,6 @@ --- title: What is NavCash? -date: "2020-03-16" +date: "2020-09-06" draft: false order: "000" --- From 1742ddf1388c1b4bd34b138ce6a0ddcfc8d3b0b6 Mon Sep 17 00:00:00 2001 From: chasingkirkjufell Date: Sun, 6 Sep 2020 22:33:25 -0700 Subject: [PATCH 7/9] fix ordering param --- themes/dot/layouts/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/dot/layouts/index.html b/themes/dot/layouts/index.html index f255a17..3ba0cf3 100755 --- a/themes/dot/layouts/index.html +++ b/themes/dot/layouts/index.html @@ -8,7 +8,7 @@ {{with .Site.Params.topics.title}}

{{ . }}

{{ end }}
{{ "" | safeHTML }} - {{ range (where .Site.Pages "Type" "pages").byParam "order" }} + {{ range (where .Site.Pages "Type" "pages").ByParam "order" }}
From ac68dd3fb32264e67c9da59de121ef77c1609bee Mon Sep 17 00:00:00 2001 From: chasingkirkjufell Date: Sun, 6 Sep 2020 22:38:05 -0700 Subject: [PATCH 8/9] change navcash icon --- content/NavCash/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/NavCash/_index.en.md b/content/NavCash/_index.en.md index 61ad015..a368ad0 100755 --- a/content/NavCash/_index.en.md +++ b/content/NavCash/_index.en.md @@ -1,7 +1,7 @@ --- title: "NavCash" date: 2020-09-06T11:02:05+06:00 -icon: "fas fa-piggy-bank" +icon: "fas fa-wallet" description: "An electrum-based light wallet with support for the hardware wallet." type : "pages" order: "030" From 42f3b082b3135e382edd054daf1d30dcf0391472 Mon Sep 17 00:00:00 2001 From: chasingkirkjufell Date: Sun, 6 Sep 2020 22:43:38 -0700 Subject: [PATCH 9/9] fix typo --- content/NavCash/install_navcash.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/NavCash/install_navcash.en.md b/content/NavCash/install_navcash.en.md index f727c19..404daf6 100644 --- a/content/NavCash/install_navcash.en.md +++ b/content/NavCash/install_navcash.en.md @@ -7,6 +7,6 @@ order: "010" NavCash can be downloaded from the [NavCoin website](https://navcoin.org/en/wallets/). After the App is downloaded, simply follow the wizard to finish the installation. -To use NavCash with Ledger Nano S, and app loaded is needed to be manually installed on Ledger since the Ledger App is still being reviewed by the Ledger team. The loader can be found in the link for the NavCash wallet. +To use NavCash with Ledger Nano S, an App loader is needed to be manually installed on Ledger since the Ledger App is still being reviewed by the Ledger team. The loader can be found in the link for the NavCash wallet above. Ledger Nano X is not supported at the moment since it does not allow 3rd party App.