Skip to content

Commit

Permalink
fix: broken links & mv /resources to /static
Browse files Browse the repository at this point in the history
  • Loading branch information
mistakia committed May 7, 2024
1 parent a7b3bf6 commit 20536f6
Show file tree
Hide file tree
Showing 30 changed files with 63 additions and 73 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ JavaScript & markdown are used to make the project as accessible as possible.
|-- data data output folder
|-- db schema for mysql
|-- docs community markdown documents
|-- resources static assets (png, svg, jpg, pdf, html)
|-- static static assets (png, svg, jpg, pdf, html)
|-- scripts data aggregation or processing
|-- server server configs
|-- src single page react & redux app (deployed to IPFS)
Expand Down
8 changes: 4 additions & 4 deletions api/server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ api.use(
})
)

api.use(robots(path.join(__dirname, '..', 'resources', 'robots.txt')))
api.use(favicon(path.join(__dirname, '..', 'resources', 'favicon.ico')))
api.use(robots(path.join(__dirname, '..', 'static', 'robots.txt')))
api.use(favicon(path.join(__dirname, '..', 'static', 'favicon.ico')))
api.use((req, res, next) => {
res.set('Cache-Control', 'no-cache, must-revalidate, proxy-revalidate')
next()
})

const resourcesPath = path.join(__dirname, '..', 'resources')
api.use('/resources', serveStatic(resourcesPath))
const static_path = path.join(__dirname, '..', 'static')
api.use('/static', serveStatic(static_path))

const dataPath = path.join(__dirname, '..', 'data')
api.use('/data', serveStatic(dataPath))
Expand Down
12 changes: 6 additions & 6 deletions docs/design/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ tags: nano, protocol, xno, crypto, digital, money, whitepaper, design

For a general overview for those new to the topic of digital money, start with a brief overview of <a href="/introduction/how-it-works">how it works</a>.

| Resources | Description |
| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------- |
| [Protocol Reference](/getting-started-devs/protocol-reference) | details based on the reference implementation maintained by the Nano Foundation |
| <a href="https://docs.nano.org/protocol-design/introduction/" target="_blank">Living Whitepaper</a> | Latest version of the protocol design |
| <a href="https://github.com/mistakia/nano-community/blob/main/resources/nano-whitepaper.pdf" target="_blank">Nano Whitepaper</a> | revised (2017) |
| <a href="https://github.com/mistakia/nano-community/blob/main/resources/raiblocks-whitepaper.pdf" target="_blank">RaiBlocks Whitepaper</a> | original protocol design (2015) |
| Resources | Description |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
| [Protocol Reference](/getting-started-devs/protocol-reference) | details based on the reference implementation maintained by the Nano Foundation |
| <a href="https://docs.nano.org/protocol-design/introduction/" target="_blank">Living Whitepaper</a> | Latest version of the protocol design |
| <a href="https://github.com/mistakia/nano-community/blob/main/static/nano-whitepaper.pdf" target="_blank">Nano Whitepaper</a> | revised (2017) |
| <a href="https://github.com/mistakia/nano-community/blob/main/static/raiblocks-whitepaper.pdf" target="_blank">RaiBlocks Whitepaper</a> | original protocol design (2015) |

<small>_Note: the published whitepapers are outdated_</small>

Expand Down
16 changes: 8 additions & 8 deletions docs/getting-started-devs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ A 32-byte value, usually represented as a 64 character, uppercase hexadecimal st
A string that starts with `nano_` (previously `xrb_`), then has 52 characters which are the account public key but encoded with a specific base32 encoding algorithm to prevent human transcription errors by limiting ambiguity between different characters (no O and 0 for example). Then the final 8 characters are Blake2b-40 checksum of the account public key to aid in discovering typos, also encoded with the same base32 scheme (5 bytes).

<figure>
<img alt='Nano account address encoding' src='/resources/account-address.png' />
<img alt='Nano account address encoding' src='/static/account-address.png' />
<figcaption>Ex. nano_1anrzcuwe64rwxzcco8dkhpyxpi8kd7zsjc1oeimpc3ppca4mrjtwnqposrs</figcaption>
</figure>

Expand Down Expand Up @@ -116,10 +116,10 @@ account_id = nanolib.generate_account_id(seed, 0)

##### Dart

| Name | Description |
| -------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| [nanodart](https://github.com/appditto/nanodart) | Dart library for the NANO and BANANO cryptocurrencies - supports key generation, signing, encryption, and more. |
| [nanoutil](https://github.com/perishllc/nanoutil) | A Nano and Banano cryptocurrency library for the Dart programming language |
| Name | Description |
| ------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| [nanodart](https://github.com/appditto/nanodart) | Dart library for the NANO and BANANO cryptocurrencies - supports key generation, signing, encryption, and more. |
| [nanoutil](https://github.com/perishllc/nanoutil) | A Nano and Banano cryptocurrency library for the Dart programming language |

##### Python

Expand Down Expand Up @@ -151,9 +151,9 @@ account_id = nanolib.generate_account_id(seed, 0)

##### Java

| Name | Description |
| ----------------------------------------------- | --------------------------------------------------------- |
| [jNano](https://github.com/nano-java/nano-java) | A comprehensive Java library for the Nano cryptocurrency. |
| Name | Description |
| ------------------------------------------ | --------------------------------------------------------- |
| [jNano](https://github.com/koczadly/jNano) | A comprehensive Java library for the Nano cryptocurrency. |

##### Go

Expand Down
57 changes: 25 additions & 32 deletions docs/getting-started-users/acquiring.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,8 @@ tags: nano, xno, buy, how, where, get, purchase, crypto, exchange, faucets, earn

Get some free Nano (XNO) from community maintained and donated faucets to test it out.

- <a href="https://nano-faucet.org/" target="_blank">nano-faucet.org</a>
- <a href="https://nanodrop.io/" target="_blank">NanoDrop.io</a>
- <a href="https://www.freenanofaucet.com/" target="_blank">freenanofaucet.com</a>
- <a href="https://www.trynano.io/" target="_blank">trynano.io</a>
- <a href="http://nendlyy5734pdfflygapdayez6dcorodcio72jwfvaux4fsrzyh7rzqd.onion/faucet/" target="_blank">nendlyy5734...yh7rzqd.onion</a> (TOR)
- <a href="https://apollonano.com/" target="_blank">apollonano.com</a>
- <a href="https://nanocafe.cc/faucet" target="_blank">nanocafe.cc</a>

## Purchasing

Expand All @@ -40,21 +35,21 @@ As a rule of thumb, depositing money onto a trusted exchange is the most cost-ef

#### Australia

| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
| ----------------------------------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
| <a href="https://www.binance.com/en/trade/NANO_USDT?layout=pro" target="_blank">Binance.com</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://www.kraken.com/en-us/prices/nano-price-chart/usd-us-dollar?interval=1m" target="_blank">Kraken.com</a> | 0.16% | 0.26% | Ӿ 0.05 |
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
| ----------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
| <a href="https://www.binance.com/en/trade/NANO_USDT?layout=pro" target="_blank">Binance.com</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://www.kraken.com/prices/nano" target="_blank">Kraken.com</a> | 0.16% | 0.26% | Ӿ 0.05 |
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |

#### Canada

| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
| ----------------------------------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
| <a href="https://www.binance.com/en/trade/NANO_USDT?layout=pro" target="_blank">Binance.com</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://www.kraken.com/en-us/prices/nano-price-chart/usd-us-dollar?interval=1m" target="_blank">Kraken.com</a> | 0.16% | 0.26% | Ӿ 0.05 |
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
| ----------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
| <a href="https://www.binance.com/en/trade/NANO_USDT?layout=pro" target="_blank">Binance.com</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://www.kraken.com/prices/nano" target="_blank">Kraken.com</a> | 0.16% | 0.26% | Ӿ 0.05 |
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |

#### Europe

Expand All @@ -75,11 +70,10 @@ As a rule of thumb, depositing money onto a trusted exchange is the most cost-ef

#### South Korea

| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
| ------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
| <a href="https://www.probit.kr/app/exchange/NANO-KRW" target="_blank">Probit.kr</a> | 0.2% | 0.2% | Unknown |
| <a href="https://www.huobi.co.kr/en-us/exchange/nano_usdt/" target="_blank">Huobi.co.kr</a> | 0.1% | 0.1% | Unknown |
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
| ----------------------------------------------------------------------------------- | --------- | --------- | -------------- |
| <a href="https://www.probit.kr/app/exchange/NANO-KRW" target="_blank">Probit.kr</a> | 0.2% | 0.2% | Unknown |
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |

#### United Kingdom

Expand All @@ -93,12 +87,12 @@ As a rule of thumb, depositing money onto a trusted exchange is the most cost-ef

#### United States

| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
| ----------------------------------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
| <a href="https://www.binance.us/en/trade/NANO_USD" target="_blank">Binance.US</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://www.kraken.com/en-us/prices/nano-price-chart/usd-us-dollar?interval=1m" target="_blank">Kraken.com</a> | 0.16% | 0.26% | Ӿ 0.05 |
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
| --------------------------------------------------------------------------------- | --------- | --------- | -------------- |
| <a href="https://www.binance.us/en/trade/NANO_USD" target="_blank">Binance.US</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://www.kraken.com/prices/nano" target="_blank">Kraken.com</a> | 0.16% | 0.26% | Ӿ 0.05 |
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |

### Services

Expand Down Expand Up @@ -361,20 +355,19 @@ As a rule of thumb, depositing money onto a trusted exchange is the most cost-ef

## Earning

Visit <a href="https://earn-nano.com/" target="_blank">earn-nano.com</a> for some ways to earn nano.

#### General

- <a href="https://wenano.net/" target="_blank">Wenano</a>: travel around to spots around the world to collect free Nano
- <a href="https://playnano.online/" target="_blank">PlayNANO</a>: Earn, play, bet with Nano, no account or login required
- <a href="https://www.quicrypto.com/" target="_blank">quicrypto.com</a>
- <a href="https://www.bitfortip.com/" target="_blank">bitfortip.com</a>
- <a href="https://unmineable.com/coins/NANO" target="_blank">unmineable.com</a>
- <a href="https://cryptovision.live/" target="_blank">cryptovision.live</a> is a live video sharing platform where viewers are rewarded with nano.
- <a href="https://www.perseeve.app/" target="_blank">perseeve.app</a>

#### Games

- <a href="https://nanogames.io/" target="_blank">nanogames.io</a>
- <a href="https://playerkillers.exchange/" target="_blank">playerkillers.exchange</a>
- <a href="https://nanolooker.com/nanobrowserquest/" target="_blank">NanoBrowserQuest</a> is a remake of the popular BrowserQuest web-based MMORPG mini-game that gives small nano reward after completion
- <a href="https://www.luckynano.com/" target="_blank">luckynano.com</a>
- <a href="https://nanoquakejs.com/" target="_blank">nanoquakejs.com</a>

Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started-users/storing/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ To generate one on your own, you can download one of the following static websit

### Pages (Offline & Local)

- Numtel (<a href="/resources/numtel-account-generator.html" download>Download</a> / <a href="https://raw.githubusercontent.com/mistakia/nano-community/main/resources/numtel-account-generator.html" target="_blank">Github</a>) — <a href="https://github.com/numtel/rai-paper-wallet/" target="_blank">Source</a>
- Nanoo.tools (<a href="/resources/nanoo-tools-account-generator.html" download>Download</a> / <a href="https://raw.githubusercontent.com/mistakia/nano-community/main/resources/nanoo-tools-account-generator.html" target="_blank">GitHub</a>) — <a href="https://nanoo.tools/light-paperwallets" target="_blank">Site</a>
- Numtel (<a href="/static/numtel-account-generator.html" download>Download</a> / <a href="https://raw.githubusercontent.com/mistakia/nano-community/main/static/numtel-account-generator.html" target="_blank">Github</a>) — <a href="https://github.com/numtel/rai-paper-wallet/" target="_blank">Source</a>
- Nanoo.tools (<a href="/static/nanoo-tools-account-generator.html" download>Download</a> / <a href="https://raw.githubusercontent.com/mistakia/nano-community/main/static/nanoo-tools-account-generator.html" target="_blank">GitHub</a>) — <a href="https://nanoo.tools/light-paperwallets" target="_blank">Site</a>

<small>_Note: these generators have not been audited yet_</small>

Expand Down
8 changes: 2 additions & 6 deletions docs/history/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Distribution began in 2015 and ended in October 2017, at which point the faucet

Ӿ 7,000,000 (~5%) was set aside as a <a href="https://www.nanolooker.com/developer-fund" target="_blank">developer fund</a>, of which about Ӿ 300,000 Nano remain as of November 2021.

Because the distribution process was conducted on-chain, it is publicly available to be reviewed and audited by looking at the <a href="https://nanex.cc/accountstats?account=nano_13ezf4od79h1tgj9aiu4djzcmmguendtjfuhwfukhuucboua8cpoihmh8byo" target="_blank">Landing Account</a>.
Because the distribution process was conducted on-chain, it is publicly available to be reviewed and audited by looking at the <a href="https://nano.community/nano_13ezf4od79h1tgj9aiu4djzcmmguendtjfuhwfukhuucboua8cpoihmh8byo" target="_blank">Landing Account</a>.

A few notable statistics compiled by <a href="https://www.reddit.com/r/nanocurrency/comments/h7fmge/the_nano_faucet_distribution_visualized_and/" target="_blank">u/hanzyfranzy</a>:

Expand All @@ -89,18 +89,14 @@ On 11 February 2018, the Core Team <a href="https://medium.com/nanocurrency/bitg
nano_1fioob7u6ia76rfo1medtrwwdobey1ua8qe7z55qyjimir5b9d95hkdabbjn
```

<a href="https://nanex.cc/accountstats?account=nano_1fioob7u6ia76rfo1medtrwwdobey1ua8qe7z55qyjimir5b9d95hkdabbjn" target="_blank">Account History</a>

<a href="https://nanex.cc/findaccount?searchstring=Bitgrail+Hacker" target="_blank">Potential Accounts</a>

## Nano

On 31 January 2018, RaiBlocks rebranded to Nano because it is easier to pronounce and sounds similar in whatever tongue spoken.

## Timeline

<figure>
<img alt='History of notable digital money advances & innovations' src="/resources/bitcoin-academic-pedigree.jpg" />
<img alt='History of notable digital money advances & innovations' src="/static/bitcoin-academic-pedigree.jpg" />
</figure>

<a href="https://nakamotoinstitute.org/literature/" target="_blank">Notable Publications</a>
Loading

0 comments on commit 20536f6

Please sign in to comment.