Skip to content

Commit 20536f6

Browse files
committed
fix: broken links & mv /resources to /static
1 parent a7b3bf6 commit 20536f6

30 files changed

+63
-73
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ JavaScript & markdown are used to make the project as accessible as possible.
4949
|-- data data output folder
5050
|-- db schema for mysql
5151
|-- docs community markdown documents
52-
|-- resources static assets (png, svg, jpg, pdf, html)
52+
|-- static static assets (png, svg, jpg, pdf, html)
5353
|-- scripts data aggregation or processing
5454
|-- server server configs
5555
|-- src single page react & redux app (deployed to IPFS)

api/server.mjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ api.use(
6767
})
6868
)
6969

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

77-
const resourcesPath = path.join(__dirname, '..', 'resources')
78-
api.use('/resources', serveStatic(resourcesPath))
77+
const static_path = path.join(__dirname, '..', 'static')
78+
api.use('/static', serveStatic(static_path))
7979

8080
const dataPath = path.join(__dirname, '..', 'data')
8181
api.use('/data', serveStatic(dataPath))

docs/design/basics.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ tags: nano, protocol, xno, crypto, digital, money, whitepaper, design
88

99
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>.
1010

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

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

docs/getting-started-devs/getting-started.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ A 32-byte value, usually represented as a 64 character, uppercase hexadecimal st
5555
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).
5656

5757
<figure>
58-
<img alt='Nano account address encoding' src='/resources/account-address.png' />
58+
<img alt='Nano account address encoding' src='/static/account-address.png' />
5959
<figcaption>Ex. nano_1anrzcuwe64rwxzcco8dkhpyxpi8kd7zsjc1oeimpc3ppca4mrjtwnqposrs</figcaption>
6060
</figure>
6161

@@ -116,10 +116,10 @@ account_id = nanolib.generate_account_id(seed, 0)
116116

117117
##### Dart
118118

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

124124
##### Python
125125

@@ -151,9 +151,9 @@ account_id = nanolib.generate_account_id(seed, 0)
151151

152152
##### Java
153153

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

158158
##### Go
159159

docs/getting-started-users/acquiring.md

+25-32
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,8 @@ tags: nano, xno, buy, how, where, get, purchase, crypto, exchange, faucets, earn
1010

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

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

2116
## Purchasing
2217

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

4136
#### Australia
4237

43-
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
44-
| ----------------------------------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
45-
| <a href="https://www.binance.com/en/trade/NANO_USDT?layout=pro" target="_blank">Binance.com</a> | 0.1% | 0.1% | Ӿ 0.01 |
46-
| <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 |
47-
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
48-
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
38+
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
39+
| ----------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
40+
| <a href="https://www.binance.com/en/trade/NANO_USDT?layout=pro" target="_blank">Binance.com</a> | 0.1% | 0.1% | Ӿ 0.01 |
41+
| <a href="https://www.kraken.com/prices/nano" target="_blank">Kraken.com</a> | 0.16% | 0.26% | Ӿ 0.05 |
42+
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
43+
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
4944

5045
#### Canada
5146

52-
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
53-
| ----------------------------------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
54-
| <a href="https://www.binance.com/en/trade/NANO_USDT?layout=pro" target="_blank">Binance.com</a> | 0.1% | 0.1% | Ӿ 0.01 |
55-
| <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 |
56-
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
57-
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
47+
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
48+
| ----------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
49+
| <a href="https://www.binance.com/en/trade/NANO_USDT?layout=pro" target="_blank">Binance.com</a> | 0.1% | 0.1% | Ӿ 0.01 |
50+
| <a href="https://www.kraken.com/prices/nano" target="_blank">Kraken.com</a> | 0.16% | 0.26% | Ӿ 0.05 |
51+
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
52+
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
5853

5954
#### Europe
6055

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

7671
#### South Korea
7772

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

8478
#### United Kingdom
8579

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

9488
#### United States
9589

96-
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
97-
| ----------------------------------------------------------------------------------------------------------------------- | --------- | --------- | -------------- |
98-
| <a href="https://www.binance.us/en/trade/NANO_USD" target="_blank">Binance.US</a> | 0.1% | 0.1% | Ӿ 0.01 |
99-
| <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 |
100-
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
101-
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
90+
| Exchange | Maker Fee | Taker Fee | Withdrawal Fee |
91+
| --------------------------------------------------------------------------------- | --------- | --------- | -------------- |
92+
| <a href="https://www.binance.us/en/trade/NANO_USD" target="_blank">Binance.US</a> | 0.1% | 0.1% | Ӿ 0.01 |
93+
| <a href="https://www.kraken.com/prices/nano" target="_blank">Kraken.com</a> | 0.16% | 0.26% | Ӿ 0.05 |
94+
| <a href="https://trade.kucoin.com/NANO-USDT" target="_blank">KuCoin</a> | 0.1% | 0.1% | Ӿ 0.01 |
95+
| <a href="https://crypto.com/price/nano" target="_blank">Crypto.com</a> | 0.4% | 0.4% | Ӿ 0.008 |
10296

10397
### Services
10498

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

362356
## Earning
363357

364-
Visit <a href="https://earn-nano.com/" target="_blank">earn-nano.com</a> for some ways to earn nano.
365-
366358
#### General
367359

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

374367
#### Games
375368

376369
- <a href="https://nanogames.io/" target="_blank">nanogames.io</a>
377-
- <a href="https://playerkillers.exchange/" target="_blank">playerkillers.exchange</a>
370+
- <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
378371
- <a href="https://www.luckynano.com/" target="_blank">luckynano.com</a>
379372
- <a href="https://nanoquakejs.com/" target="_blank">nanoquakejs.com</a>
380373

docs/getting-started-users/storing/setup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ To generate one on your own, you can download one of the following static websit
5050

5151
### Pages (Offline & Local)
5252

53-
- 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>
54-
- 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>
53+
- 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>
54+
- 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>
5555

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

docs/history/overview.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Distribution began in 2015 and ended in October 2017, at which point the faucet
6969

7070
Ӿ 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.
7171

72-
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>.
72+
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>.
7373

7474
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>:
7575

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

92-
<a href="https://nanex.cc/accountstats?account=nano_1fioob7u6ia76rfo1medtrwwdobey1ua8qe7z55qyjimir5b9d95hkdabbjn" target="_blank">Account History</a>
93-
94-
<a href="https://nanex.cc/findaccount?searchstring=Bitgrail+Hacker" target="_blank">Potential Accounts</a>
95-
9692
## Nano
9793

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

10096
## Timeline
10197

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

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

0 commit comments

Comments
 (0)