Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/concepts/data-collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ pub fn get_unordered_map(&self, key: String) -> String {
}
```

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

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

Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/epoch.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ http post https://rpc.testnet.near.org jsonrpc=2.0 id=dontcare method=EXPERIMENT
}
```

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).
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).

> Got a question?
> <a href="https://stackoverflow.com/questions/tagged/nearprotocol">
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/gas.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Introduction
sidebar_label: Introduction
---

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

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

Expand Down
2 changes: 1 addition & 1 deletion docs/faq/developer-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ NEAR is organized around `accounts`. Contract code is deployed 1:1 against an ac

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

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).
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).

### 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}

Expand Down
2 changes: 1 addition & 1 deletion docs/faq/economics-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Please head over to our economics paper https://near.org/papers/economics-in-sha

_Last updated: 20200902_

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)
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)

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

Expand Down
2 changes: 1 addition & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module.exports = {
},
"blog": {},
"theme": {
"customCss": "../src/css/customTheme.css"
"customCss": require.resolve("./src/css/customTheme.css")
}
}
]
Expand Down
3 changes: 3 additions & 0 deletions website/mlc_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
{
"pattern": "^https://support.ledger.com"
},
{
"pattern": "^https://help.github.com"
},
{
"pattern": "^https://explorer.betanet.near.org"
},
Expand Down
3 changes: 2 additions & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"@saucelabs/theme-github-codeblock": "^0.1.1",
"clsx": "^1.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
"react-dom": "^17.0.1",
"url": "^0.11.0"
}
}