Skip to content

Commit

Permalink
fix most links, add patterns + config
Browse files Browse the repository at this point in the history
  • Loading branch information
CrackTheCode016 committed Aug 28, 2023
1 parent f523d44 commit 50b05d5
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ jobs:
with:
use-quiet-mode: "yes"
use-verbose-mode: "yes"
config-file: '.github/workflows/markdown.config.json'
- uses: actions/checkout@v3
16 changes: 16 additions & 0 deletions .github/workflows/markdown.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"ignorePatterns": [
{
"pattern": "^http://localhost"
},
{
"pattern": "^https://crates.io"
}
],
"replacementPatterns": [],
"timeout": "20s",
"retryOn429": true,
"retryCount": 5,
"fallbackRetryDelay": "30s",
"aliveStatusCodes": [200, 206, 403]
}
2 changes: 1 addition & 1 deletion docs/Rust/section1/wasm-tldr.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ context-specific registers for holding bytes.
On [Polkadot](https://polkadot.network/), Wasm is a core part of the technology stack:

- It defines reliable state transition functions for the
[relay chain runtimes](https://wiki.polkadot.network/docs/appendix#runtime).
[relay chain runtimes](https://wiki.polkadot.network/docs/glossary#runtime).
- It defines
[Parachain Validation Functions (PVFs)](https://wiki.polkadot.network/docs/learn-parachains-protocol),
which is a core part of how relay and parachains agree on their respective state.
Expand Down
5 changes: 2 additions & 3 deletions docs/polkadotFAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sidebar_position: 1
### Where can I find a list of academic and in-depth articles and information about Polkadot?

- Polkadot Wiki: https://wiki.polkadot.network/
- Web3 Research Papers: https://research.web3.foundation/en/latest/index.html
- Web3 Research Papers: https://research.web3.foundation/research
- Overview of Polkadot and its Design Considerations: https://arxiv.org/abs/2005.13456.
- Polkadot Specification: https://spec.polkadot.network/
- Analysis of Polkadot: Architecture, Internals, and Contradictions:
Expand Down Expand Up @@ -573,8 +573,7 @@ for (var key in accounts) {
IPFS is decentralized, even though it's not using blockchain ( https://ipfs.tech/ ) - it's not at
all the same as putting something on a Google Cloud server. Same with Crust.

Conversely, on-chain does not necessarily mean decentralized ( see this article from a former W3F
Tech Ed team member - https://bitfalls.com/hr/2020/05/25/opinion-on-private-blockchains/ ).
Conversely, on-chain does not necessarily mean decentralized.

It's important to realize that technically, a blockchain is just a linked list with hash pointers.
There's nothing about the blockchain data structure itself that promotes decentralization, just
Expand Down

0 comments on commit 50b05d5

Please sign in to comment.