Skip to content

Commit 95f4790

Browse files
committed
Merge branch 'main' of github.com:0xPolygon/polygon-docs into empieichO-docs-review
2 parents 7d4da20 + 202def0 commit 95f4790

File tree

22 files changed

+49
-48
lines changed

22 files changed

+49
-48
lines changed

.cache/plugin/git-committers/page-authors.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/pos/architecture/heimdall/governance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Heimdall's governance operates identically to the Cosmos-sdk `x/gov` module, as detailed in [Cosmos-sdk documentation](https://docs.cosmos.network/master/modules/gov/).
1+
Heimdall's governance operates identically to the Cosmos-sdk `x/gov` module, as detailed in [Cosmos-sdk documentation](https://docs.cosmos.network/main/build/modules/gov).
22

33
## Overview
44

docs/pos/concepts/tokens/matic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ For testing purposes on the Mumbai Testnet, test MATIC can be obtained, which do
1616
3. Choose the Mumbai network
1717
4. Enter your account address and confirm
1818

19-
For interactions between Goerli and Mumbai, consider using tools like [Matic.js](https://maticnetwork.github.io/matic.js/) or the [Polygon Web Wallet](https://wallet-dev.polygon.technology/).
19+
For interactions between Goerli and Mumbai, consider using tools like [Matic.js](https://maticnetwork.github.io/matic.js/) or use the the [Polygon wallet page](https://wallet.polygon.technology/).

docs/pos/concepts/transactions/meta-transactions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Under the hood, user signs on an intent to execute a transaction, which is relay
102102

103103
## What is enabling transaction execution?
104104

105-
The client that the user interacts with (web browser, mobile apps, etc) never interacts with the blockchain, instead it interacts with a simple relayer server (or a network of relayers), similar to the way GSN or any meta-transaction solution works ( see: [Meta Transactions: An Introduction](https://www.notion.so/Meta-Transactions-An-Introduction-8f54cf75321e4ec3b6d755e18e406590)).
105+
The client that the user interacts with (web browser, mobile apps, etc) never interacts with the blockchain, instead it interacts with a simple relayer server (or a network of relayers), similar to the way GSN or any meta-transaction solution works.
106106

107107
For any action that requires blockchain interaction,
108108

@@ -115,7 +115,7 @@ For any action that requires blockchain interaction,
115115

116116
- Choose between a custom simple relayer node/biconomy.
117117

118-
- For biconomy, setup a dapp from the dashboard and save the api-id and api-key, see: [Tutorial: Biconomy](https://www.notion.so/Tutorial-Biconomy-7f578bfb4e7d4904b8c79522085ba568) or [https://docs.biconomy.io/](https://docs.biconomy.io/)
118+
- For biconomy, setup a dapp from the dashboard and save the api-id and api-key, see: [https://docs.biconomy.io/](https://docs.biconomy.io/)
119119

120120
**Steps:**
121121

docs/pos/how-to/smart-contracts/alchemy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To get your custom Polygon RPC URL from Alchemy, go to your **Hello World** app
5454

5555
![img](../../../img/pos/view-key.png)
5656

57-
You can download and create a MetaMask account for free [here](https://metamask.io/download.html). Once you've created an account, follow these steps to set up the Polygon PoS network on your wallet.
57+
You can download and create a MetaMask account for free [here](https://metamask.io/download/). Once you've created an account, follow these steps to set up the Polygon PoS network on your wallet.
5858

5959
1. Select **Settings** from the drop-down menu in the top right corner of your MetaMask wallet.
6060
2. Select **Networks** from the menu to the left.
@@ -356,7 +356,7 @@ We’ve adopted the Hardhat team explanations to what each of these lines of cod
356356
const HelloWorld = await ethers.getContractFactory("HelloWorld");
357357
```
358358
359-
A `ContractFactory` in ethers.js is an abstraction used to deploy new smart contracts, so `HelloWorld` here is a [factory](https://en.wikipedia.org/wiki/Factory\_\(object-oriented\_programming\)) for instances of our hello world contract. When using the `hardhat-ethers` plugin `ContractFactory` and `Contract`, instances are connected to the first signer (owner) by default.
359+
A `ContractFactory` in ethers.js is an abstraction used to deploy new smart contracts, so `HelloWorld` here is a [factory](https://en.wikipedia.org/wiki/Factory_(object-oriented_programming)) for instances of our hello world contract. When using the `hardhat-ethers` plugin `ContractFactory` and `Contract`, instances are connected to the first signer (owner) by default.
360360
361361
```javascript
362362
const hello_world = await HelloWorld.deploy();

docs/pos/how-to/smart-contracts/getblock.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ In this tutorial, you will:
3434

3535
![img](https://storage.getblock.io/web/blog/article-images/imga3.png)
3636

37-
If you don't have any tokens in your account, you can request some from the Mumbai faucet through the [faucet website](https://chat.openai.com/develop/tools/matic-faucet.md).
37+
If you don't have any tokens in your account, you can request some from the Mumbai faucet through the [faucet website](https://faucet.polygon.technology/).
3838

3939
## Smart Contract Development
4040

docs/pos/operate-node/validator/getting-started.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
2-
!!!tip
3-
Stay in the know
4-
5-
Keep up with the latest node and validator updates from the Polygon team and the community by subscribing to [Polygon notifications](https://polygon.technology/notifications/).
6-
7-
81
Validators are the key actor in maintaining the Polygon network. Validators run a full node, secure the network by staking MATIC to produce blocks, validate and participate in PoS consensus.
92

103
!!!info

docs/pos/operate-node/validator/kb/how-to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ sudo dpkg -i rabbitmq-server_3.10.8-1_all.deb
9696

9797
This document gives some additional details for setting up a new node based on [Full Node Deployment](/operate/full-node-binaries.md) guide.
9898

99-
- VPN setup is required before proceeding with any of these steps can be done by referring [Bastillion user guide](https://www.notion.so/Bastillion-VPN-user-guide-c04f5f26afda4fa59d5d9f6041327f43).
99+
- VPN setup is required before proceeding with any of these steps.
100100
- If you are using Macbook, it has native Python 2.7 available which **needs to be replaced by with anything Python 3.x**.
101101
- Make sure if pip3 packages are installed correctly
102102

docs/pos/operate-node/validator/run-validator/packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ will start the Bor service on the validator machine.
517517
The Heimdall service takes several days to sync from scratch fully.
518518

519519
Alternatively, you can use a maintained snapshot, which will reduce the sync time to a few hours.
520-
For detailed instructions, see [Snapshot Instructions for Heimdall and Bor](https://forum.matic.network/t/snapshot-instructions-for-heimdall-and-bor/2278).
520+
For detailed instructions, see [Snapshot Instructions for Heimdall and Bor](https://forum.polygon.technology/t/snapshot-instructions-for-heimdall-and-bor/9233).
521521

522522
For snapshot download links, see [Polygon Chains Snapshots](https://snapshot.polygon.technology/).
523523

docs/pos/operate-node/validator/technical-faqs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ You can run the following command to check it:
265265
Check the value of catching_up. If it is false then the node is all synced up.
266266

267267

268-
### 15. What if someone become a Top 10 staker, how he will receive his MATIC reward at the end?
268+
### 15. Deprecated FAQ: What if someone become a Top 10 staker, how he will receive his MATIC reward at the end?
269269

270-
Stage 1 rewards are not based on stake. Please refer to this document [here](../../how-to/operating/validator-node/rewards.md) for the reward details. Participants with high stake don't automatically qualify for a reward in this stage.
270+
Stage 1 rewards are not based on stake. Participants with high stake don't automatically qualify for a reward in this stage.
271271

272272

273273
### 16. What should be my heimdall version?

0 commit comments

Comments
 (0)