Skip to content

Commit e330234

Browse files
committed
moved files to Basics
1 parent 1b8a6dc commit e330234

File tree

8 files changed

+25
-21
lines changed

8 files changed

+25
-21
lines changed

docs/faq/general-faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ image: https://matic.network/banners/matic-network-16x9.png
1414

1515
Polygon Network is a Layer 2 scaling solution that achieves scale by utilizing sidechains for off-chain computation, while ensuring asset security using the Plasma framework and a decentralized network of Proof-of-Stake (PoS) validators.
1616

17-
See also [What Is Polygon](/docs/validate/polygon-basics/what-is-polygon).
17+
See also [What Is Polygon](/docs/home/polygon-basics/what-is-polygon).
1818

1919
## What is Proof of Stake (PoS)?
2020

2121
Proof-of-Stake is a system in which the blockchain network aims to achieve distributed consensus. Anyone with sufficient amount of tokens can lock up their cryptocurrencies and the economic incentive lies in the shared value of the decentralized network. The individuals staking their cryptocurrencies validate transactions by voting on the same while consensus is achieved when a transaction or a set of transactions in a block or a set of blocks in a checkpoint receives enough votes. The threshold uses the weight in terms of stake that comes with every vote. For instance, in Polygon, consensus is achieved for committing checkpoints of Polygon blocks to the Ethereum network, when at least ⅔ +1 of the total staking power vote for this.
2222

23-
See also [What Is Proof of Stake](/docs/validate/polygon-basics/what-is-proof-of-stake).
23+
See also [What Is Proof of Stake](/docs/home/polygon-basics/what-is-proof-of-stake).
2424

2525
## What role does Proof-of-Stake play in the Polygon architecture?
2626

docs/validate/polygon-basics/what-is-polygon.md renamed to docs/home/polygon-basics/what-is-polygon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
id: what-is-polygon
3-
title: What is Polygon
3+
title: What is Polygon?
44
description: Learn what the Polygon scaling solution is.
55
keywords:
66
- docs

docs/validate/polygon-basics/what-is-proof-of-stake.md renamed to docs/home/polygon-basics/what-is-proof-of-stake.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
id: what-is-proof-of-stake
3-
title: What Is Proof of Stake
3+
title: What is Proof of Stake?
44
description: Learn what is Proof of Stake.
55
keywords:
66
- docs

docs/validate/glossary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ See also [Bor Consensus: Span](/docs/contribute/bor/consensus/#span).
8989

9090
Staking is the process of locking up tokens into a deposit to earn the right to validate and produce blocks on a blockchain. Typically staking is done in the native token for the network — for the MATIC token is locked up by validators/stakers in the Polygon Network. Other examples include ETH in ETH 2.0, ATOM in Cosmos, etc.
9191

92-
See also [What Is Proof of Stake](/docs/validate/polygon-basics/what-is-proof-of-stake).
92+
See also [What Is Proof of Stake](/docs/home/polygon-basics/what-is-proof-of-stake).
9393

9494
## Signer address
9595

docs/validate/rewards.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ image: https://matic.network/banners/matic-network-16x9.png
1111

1212
For an introduction to Polygon and the Proof of Stake algorithm, see:
1313

14-
* [What Is Polygon](/docs/validate/polygon-basics/what-is-polygon)
15-
* [What Is Proof of Stake](/docs/validate/polygon-basics/what-is-proof-of-stake)
14+
* [What Is Polygon](/docs/home/polygon-basics/what-is-polygon)
15+
* [What Is Proof of Stake](/docs/home/polygon-basics/what-is-proof-of-stake)
1616

1717
In Polygon, validators stake their MATIC tokens as collateral to work for the security of the network, and in exchange for their service, earn rewards.
1818

docs/validate/validator/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Polygon Network is broadly divided into three layers:
2121

2222
## Staking and Plasma smart contracts on Ethereum
2323

24-
To enable the [Proof of Stake (PoS)](docs/validate/polygon-basics/what-is-proof-of-stake) mechanism on Polygon, the system employs a set of [staking](/docs/validate/glossary#staking) management contracts on the Ethereum mainnet.
24+
To enable the [Proof of Stake (PoS)](docs/home/polygon-basics/what-is-proof-of-stake) mechanism on Polygon, the system employs a set of [staking](/docs/validate/glossary#staking) management contracts on the Ethereum mainnet.
2525

2626
The staking contracts implement the following features:
2727

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ module.exports = {
182182
activeBasePath: "docs/develop",
183183
},
184184
{
185-
to: "docs/validate/polygon-basics/what-is-polygon",
185+
to: "docs/validate/polygon-basics/who-is-validator",
186186
label: "Validate",
187187
position: "left",
188188
activeBasePath: "docs/validate",

sidebars.js

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ module.exports = {
1616
"home/blockchain-basics/blockchain-types",
1717
"home/blockchain-basics/consensus-mechanism",
1818
"home/blockchain-basics/ethereum",
19-
"home/blockchain-basics/polygon",
2019
"home/blockchain-basics/solidity",
2120
"home/blockchain-basics/transactions",
2221
"home/blockchain-basics/gas",
@@ -25,6 +24,14 @@ module.exports = {
2524
"home/blockchain-basics/import-account-to-metamask",
2625
],
2726
},
27+
{
28+
type: "category",
29+
label: "Polygon Basics",
30+
items: [
31+
"home/polygon-basics/what-is-polygon",
32+
"home/polygon-basics/what-is-proof-of-stake"
33+
]
34+
},
2835
"home/architecture/polygon-architecture",
2936
"home/architecture/security-models",
3037
"home/faq",
@@ -386,21 +393,12 @@ module.exports = {
386393
},
387394
],
388395
Validate: [
389-
{
390-
type: "category",
391-
label: "Polygon Basics",
392-
items: [
393-
"validate/polygon-basics/what-is-polygon",
394-
"validate/polygon-basics/who-is-validator",
395-
"validate/polygon-basics/who-is-delegator",
396-
"validate/polygon-basics/what-is-proof-of-stake"
397-
],
398-
},
399396
{
400397
type: "category",
401398
label: "Validator Overview",
402399
items: [
403400
"validate/validator/introduction",
401+
"validate/polygon-basics/who-is-validator",
404402
"validate/validator/architecture",
405403
"validate/validator/responsibilities",
406404
{
@@ -423,7 +421,13 @@ module.exports = {
423421
},
424422
],
425423
},
426-
"validate/delegate",
424+
{
425+
type: "category",
426+
label: "Delegate",
427+
items: ["validate/delegate",
428+
"validate/polygon-basics/who-is-delegator"
429+
],
430+
},
427431
//"validate/delegator-faq",
428432
// "validate/port_management",
429433
{

0 commit comments

Comments
 (0)