Skip to content

Commit 4e2f5f4

Browse files
authored
fix links (#1063)
1 parent a49d0dc commit 4e2f5f4

File tree

8 files changed

+11
-7
lines changed

8 files changed

+11
-7
lines changed

docs/concepts/data-collections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ pub fn get_unordered_map(&self, key: String) -> String {
348348
}
349349
```
350350

351-
[ [SDK source](https://github.com/near/near-sdk-rs/blob/master/near-sdk/src/collections/unordered_map.rs) ]
351+
[ [SDK source](https://github.com/near/near-sdk-rs/tree/master/near-sdk/src/collections/unordered_map) ]
352352

353353
[ [Implementation](https://docs.rs/near-sdk/latest/near_sdk/collections/struct.UnorderedMap.html) ]
354354

docs/concepts/epoch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ http post https://rpc.testnet.near.org jsonrpc=2.0 id=dontcare method=EXPERIMENT
7777
}
7878
```
7979

80-
You can learn more about how epoch's are used to manage network validation in the [Validator FAQ](https://wiki.near.org/validators/faq#what-is-an-epoch).
80+
You can learn more about how epochs are used to manage network validation in the [Validator FAQ](https://github.com/near/wiki/blob/master/Archive/validators/faq.md#what-is-an-epoch).
8181

8282
> Got a question?
8383
> <a href="https://stackoverflow.com/questions/tagged/nearprotocol">

docs/concepts/gas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction
44
sidebar_label: Introduction
55
---
66

7-
When you make calls to the NEAR blockchain to update or change data, the people running the infrastructure of the blockchain incur some cost. At the end of the day, some computers somewhere process your request, and the [validators](https://wiki.near.org/validators/staking-overview) running these computers spend significant capital to keep these computers running.
7+
When you make calls to the NEAR blockchain to update or change data, the people running the infrastructure of the blockchain incur some cost. At the end of the day, some computers somewhere process your request, and the [validators](https://github.com/near/wiki/blob/master/Archive/validators/about.md) running these computers spend significant capital to keep these computers running.
88

99
Like other programmable blockchains, NEAR compensates these people by charging _transaction fees_, also called _gas fees_.
1010

docs/faq/developer-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ NEAR is organized around `accounts`. Contract code is deployed 1:1 against an ac
142142

143143
We don't need GPU support as we are a POS chain and we require very little compute power.
144144

145-
You can read more about our consensus strategy on our [Validator Quickstart](https://wiki.near.org/validators/staking-overview) and [Staking FAQ](https://wiki.near.org/validators/faq).
145+
You can read more about our consensus strategy on our [Validator Quickstart](https://github.com/near/wiki/blob/master/Archive/validators/about.md) and [Staking FAQ](https://github.com/near/wiki/blob/master/Archive/validators/faq.md).
146146

147147
### If a developer writes a vulnerable or malicious dApp, is a validator implicitly taking on risk? {#if-a-developer-writes-a-vulnerable-or-malicious-dapp-is-a-validator-implicitly-taking-on-risk}
148148

docs/faq/economics-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Please head over to our economics paper https://near.org/papers/economics-in-sha
3030

3131
_Last updated: 20200902_
3232

33-
Yes. They cannot be transferred while they are still locked but staking and delegation is possible. For a full breakdown of token distribution and lockups, please see the [Token Distribution Post](https://near.org/blog/near-token-supply-and-distribution/). For more information on staking, see the [staking FAQ](https://wiki.near.org/validators/faq) or [Token docs](https://wiki.near.org/ecosystem/near-token/token-custody)
33+
Yes. They cannot be transferred while they are still locked but staking and delegation is possible. For a full breakdown of token distribution and lockups, please see the [Token Distribution Post](https://near.org/blog/near-token-supply-and-distribution/). For more information on staking, see the [staking FAQ](https://wiki.near.org/getting-started/staking-guide) or [Token docs](https://wiki.near.org/getting-started/near-token/token-custody)
3434

3535
### What are the advantages to receiving tokens prior to transfers being unrestricted? {#what-are-the-advantages-to-receiving-tokens-prior-to-transfers-being-unrestricted}
3636

website/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module.exports = {
5454
},
5555
"blog": {},
5656
"theme": {
57-
"customCss": "../src/css/customTheme.css"
57+
"customCss": require.resolve("./src/css/customTheme.css")
5858
}
5959
}
6060
]

website/mlc_config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
{
1616
"pattern": "^https://support.ledger.com"
1717
},
18+
{
19+
"pattern": "^https://help.github.com"
20+
},
1821
{
1922
"pattern": "^https://explorer.betanet.near.org"
2023
},

website/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"@saucelabs/theme-github-codeblock": "^0.1.1",
3333
"clsx": "^1.1.1",
3434
"react": "^17.0.1",
35-
"react-dom": "^17.0.1"
35+
"react-dom": "^17.0.1",
36+
"url": "^0.11.0"
3637
}
3738
}

0 commit comments

Comments
 (0)