Skip to content

Commit 708ee8a

Browse files
committed
PoS: update mumbai/goerli to amoy/sepolia
1 parent 4db52dd commit 708ee8a

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

docs/pos/get-started/building-on-polygon.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ comments: true
44

55
Ethereum developers are by default Polygon developers. Welcome. Simply switch to the [Polygon RPC](https://polygon-rpc.com/) and get started. All familiar tools used on Ethereum are supported on Polygon. Whether it is Truffle, Remix or Web3.js, Polygon offers the same UX as Ethereum.
66

7-
Connect your wallet and deploy any decentralized application to either Polygon Mainnet or Polygon Mumbai Testnet.
7+
Connect your wallet and deploy any decentralized application to either PoS mainnet or Amoy testnet.
88

9-
Polygon Mumbai Testnet connects to Ethereum Goërli Testnet, which acts as its ParentChain, a testnet layer 1 (L1).
9+
Polygon Amoy testnet connects to Ethereum Sepolia testnet, which acts as its parent chain, a testnet layer 1 (L1).
1010

1111
Find all the network-related details in the [network documentation](../reference/rpc-endpoints.md).
1212

@@ -74,7 +74,7 @@ const { Alchemy, Network } = require("alchemy-sdk");
7474

7575
const settings = {
7676
apiKey: "demo", // Can replace with your API Key from https://www.alchemy.com
77-
network: Network.MATIC_MAINNET, // Can replace with MATIC_MUMBAI
77+
network: Network.MATIC_MAINNET, // Can replace with MATIC_AMOY for testnet config
7878
};
7979

8080
const alchemy = new Alchemy(settings);

docs/pos/governance/governance-fundamentals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Assuming that the change or upgrade agreed upon via community consensus requires
4949
1. The protocol decision is made on a PPGC, and implementation begins in the form of modifications to the relevant GitHub repositories.
5050
2. Core developers create pull requests containing the changes, which can then be merged into the respective code base, and a new [tag](https://github.com/maticnetwork/bor/tags) is created.
5151
3. Core developers test new releases by deploying them on local devnets. If everything continues to function normally, the tag is marked as "**beta**", which is essentially the "**pre-release**" state.
52-
4. The modifications and upgrades are rolled out to the Mumbai testnet, and left out to soak for at least one week. Currently, the [Mumbai Testing Committee](https://forum.polygon.technology/t/introducing-mumbai-testing-committee/12970) reports on the stability of the release in the PPGC.
52+
4. The modifications and upgrades are rolled out to the Amoy testnet, and left out to soak for at least one week. Currently, the [Mumbai Testing Committee](https://forum.polygon.technology/t/introducing-mumbai-testing-committee/12970) reports on the stability of the release in the PPGC.
5353
5. Finally, once confirmed that the upgrade doesn't break anything, it is scheduled to be released to mainnet on a PPGC. At this point, the tag version is marked as "**final**".
5454
6. Validators upgrade their nodes to the latest version after considering the changes. The upgrade is now made canonical via on-chain consensus of the validating stake, including that delegated by token holders.
5555

docs/pos/how-to/snapshots.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ When setting up a new sentry, validator, or full node server, it is recommended
1616
## Client snapshots
1717

1818
To begin, ensure that your node environment meets the **prerequisites** outlined [here](../how-to/full-node/full-node-binaries.md). Before starting any services, execute the shell script provided below. This script will download and extract the snapshot data, which allows for faster bootstrapping. In our example, we will be using an Ubuntu Linux m5d.4xlarge machine with an 8TB block device attached.
19-
To transfer the correct chaindata to your disk, follow these steps:
19+
To transfer the correct chain data to your disk, follow these steps:
2020

21-
- All one has to do is specify the network ("mainnet" or "mumbai") and client type ("heimdall" or "bor" or "erigon") of your desired snapshot and run the following command:
21+
- All one has to do is specify the network ("mainnet" or "amoy") and client type ("heimdall" or "bor" or "erigon") of your desired snapshot and run the following command:
2222

2323
```bash
2424
curl -L https://snapshot-download.polygon.technology/snapdown.sh | bash -s -- --network {{ network }} --client {{ client }} --extract-dir {{ extract_dir }} --validate-checksum {{ true / false }}
@@ -43,8 +43,8 @@ curl -L https://snapshot-download.polygon.technology/snapdown.sh | bash -s -- --
4343
#!/bin/bash
4444

4545
function validate_network() {
46-
if [[ "$1" != "mainnet" && "$1" != "mumbai" ]]; then
47-
echo "Invalid network input. Please enter 'mainnet' or 'mumbai'."
46+
if [[ "$1" != "mainnet" && "$1" != "amoy" ]]; then
47+
echo "Invalid network input. Please enter 'mainnet' or 'amoy'."
4848
exit 1
4949
fi
5050
}
@@ -99,7 +99,7 @@ curl -L https://snapshot-download.polygon.technology/snapdown.sh | bash -s -- --
9999
done
100100

101101
# Set default values if not provided through command-line arguments
102-
network=${network:-mumbai}
102+
network=${network:-amoy}
103103
client=${client:-heimdall}
104104
extract_dir=${extract_dir:-"${client}_extract"}
105105
checksum=${checksum:-false}
@@ -214,7 +214,7 @@ sudo service bor start
214214

215215
## Recommended disk size guidance
216216

217-
**Polygon Mumbai Testnet**
217+
**Polygon Amoy testnet**
218218

219219
| Metric | Calculation Breakdown | Value |
220220
| ------ | --------------------- | ----------- |
@@ -223,7 +223,7 @@ sudo service bor start
223223
| approx. total extracted size | 350 GB (bor) + 50 GB (heimdall) | 400 GB |
224224
| suggested disk size (2.5x buffer) | 400 GB * 2.5 (natural chain growth) | 1 TB |
225225

226-
**Polygon Mainnet**
226+
**Polygon mainnet**
227227

228228
| Metric | Calculation Breakdown | Value |
229229
| ------ | --------------------- | ----------- |
@@ -232,7 +232,7 @@ sudo service bor start
232232
| approx. total extracted size | 2.1 TB (bor) + 300 GB (heimdall) | 2.4 TB |
233233
| suggested disk size (2.5x buffer) | 2.4 TB * 2.5 (natural chain growth) | 6 TB |
234234

235-
**Polygon Mumbai Erigon Archive**
235+
**Polygon Amoy Erigon Archive**
236236

237237
| Metric | Calculation Breakdown | Value |
238238
| ------ | --------------------- | ----------- |

0 commit comments

Comments
 (0)