Skip to content

Commit

Permalink
Merge pull request navcoin#22 from chasingkirkjufell/navcash
Browse files Browse the repository at this point in the history
add a category for navcash
  • Loading branch information
alex v authored Sep 7, 2020
2 parents fc03f52 + 42f3b08 commit cc1415d
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 4 deletions.
3 changes: 2 additions & 1 deletion content/General Support/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
---
order: "000"
---
8 changes: 8 additions & 0 deletions content/NavCash/_index.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: "NavCash"
date: 2020-09-06T11:02:05+06:00
icon: "fas fa-wallet"
description: "An electrum-based light wallet with support for the hardware wallet."
type : "pages"
order: "030"
---
12 changes: 12 additions & 0 deletions content/NavCash/install_navcash.en.md
Original file line number Diff line number Diff line change
@@ -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, 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.
8 changes: 8 additions & 0 deletions content/NavCash/navcash.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: What is NavCash?
date: "2020-09-06"
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.
22 changes: 22 additions & 0 deletions content/NavCash/setup_server.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: How to run my own NavCash Server?
date: "2020-09-06"
draft: false
order: "020"
---

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.

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!

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 check out this medium [article](https://medium.com/@NAVCoin/navcoin-the-ultimate-guide-to-staking-its-never-been-so-easy-c0ef2f9983c8).
3 changes: 2 additions & 1 deletion content/NavCoin Core/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
---
order: "010"
---
1 change: 1 addition & 0 deletions content/NavCoin Website/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
---
4 changes: 2 additions & 2 deletions themes/dot/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{{with .Site.Params.topics.title}} <h2 class="section-title">{{ . }}</h2> {{ end }}
</div>
{{ "<!-- topic-item -->" | safeHTML }}
{{ range (where .Site.Pages "Type" "pages") }}
{{ range (where .Site.Pages "Type" "pages").ByParam "order" }}
<div class="col-lg-4 col-sm-6 mb-4">
<a href="{{ .Permalink }}" class="px-4 py-5 bg-white shadow text-center d-block">
<i class="{{ .Params.Icon }} icon text-dark d-block mb-4"></i>
Expand Down Expand Up @@ -40,4 +40,4 @@ <h3 class="mb-3">{{ .Title }}</h3>
{{ "<!-- /call to action -->" | safeHTML }}
{{ end }}

{{ end }}
{{ end }}

0 comments on commit cc1415d

Please sign in to comment.