Skip to content

Commit 0338f5c

Browse files
Merge branch 'main' into empieichO-docs-review
2 parents 6dad09d + ec42a9b commit 0338f5c

File tree

20 files changed

+30
-46
lines changed

20 files changed

+30
-46
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/reference/rpc-endpoints.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Mumbai testnet serves as a replica of the Polygon mainnet and is primarily u
1212
| Parent chain | **[Goërli](https://goerli.net/)** |
1313
| Chain ID | `80001` |
1414
| Gas token | MATIC |
15-
| Gas station | [Mumbai gas station](https://gasstation-mumbai.matic.today/v2) |
15+
| Gas station | [Mumbai gas station](https://gasstation-testnet.polygon.technology/v2) |
1616
| RPC endpoint | [https://rpc-mumbai.matic.today](https://rpc-mumbai.matic.today) |
1717
| Node endpoint | [wss://rpc-mumbai.matic.today](wss://rpc-mumbai.matic.today) |
1818
| Heimdall API | [https://heimdall-api-testnet.polygon.technology](https://heimdall-api-testnet.polygon.technology) |
@@ -56,7 +56,7 @@ Developers can interact with on-chain data and execute various types of transact
5656
!!!info
5757
Getting started with RPC calls
5858

59-
For a comprehensive list of API documentation, visit [**Polygon JSON-RPC calls**](https://edge-docs.polygon.technology/docs/get-started/json-rpc-commands/).
59+
For a comprehensive list of API documentation, visit [**Polygon JSON-RPC calls**](https://github.com/0xPolygon/polygon-edge/tree/develop/docs/docs/api).
6060

6161
To explore API requests without any setup, fix failing requests, or discover new methods on the Polygon network, try the [**Composer App**](https://composer.alchemyapi.io).
6262

@@ -70,7 +70,6 @@ Public RPCs may have rate limits or traffic restrictions. For dedicated free RPC
7070
- [Ankr](https://www.ankr.com/)
7171
- [Blast (Bware Labs)](https://blastapi.io/)
7272
- [BlockPI](https://blockpi.io/)
73-
- [BlockSpaces](https://www.blockspaces.com/web3-infrastructure)
7473
- [Chainnodes](https://www.chainnodes.org/)
7574
- [Chainstack](https://chainstack.com/build-better-with-polygon/)
7675
- [DataHub (Figment)](https://datahub.figment.io)
@@ -79,7 +78,6 @@ Public RPCs may have rate limits or traffic restrictions. For dedicated free RPC
7978
- [Moralis](https://moralis.io)
8079
- [NodeReal](https://nodereal.io)
8180
- [OnFinality](https://onfinality.io/)
82-
- [Pocket Network](https://www.portal.pokt.network/)
8381
- [QuickNode](https://www.quicknode.com/chains/matic)
8482
- [SettleMint](https://docs.settlemint.com/docs/polygon-connect-to-a-node)
8583
- [Tatum](https://tatum.io/)

0 commit comments

Comments
 (0)