Skip to content

Commit 787e3bf

Browse files
Merge branch 'main' of https://github.com/0xPolygon/polygon-docs into km/learn-frontpage
2 parents fb57c58 + 3a1f5a8 commit 787e3bf

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/pos/how-to/bridging/ethereum-polygon/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
Polygon brings you a trustless two-way transaction channel between Polygon PoS and Ethereum by introducing the cross-chain bridge. With this users can transfer tokens across Polygon PoS without incurring third-party risks and market liquidity limitations. "img/home/The PoS Bridge is available on both Mumbai Testnet as well as Polygon PoS Mainnet"img/home/. You can bridge assets to Polygon PoS using the [Polygon Wallet Suite](https://wallet.polygon.technology/polygon/bridge/deposit).
1+
Polygon brings you a trustless two-way transaction channel between Polygon PoS and Ethereum by introducing the cross-chain bridge. With this users can transfer tokens across Polygon PoS without incurring third-party risks and market liquidity limitations.
22

3-
Polygon also offers the "img/home/zkEVM Bridge"img/home/ which can also be used via the [Polygon Wallet Suite](https://wallet.polygon.technology/polygon/bridge/deposit). This document is not about zkEVM Bridge.
3+
The PoS Bridge is available on both Mumbai Testnet as well as Polygon PoS Mainnet. You can access it and bridge assets over to Polygon PoS using the [Polygon Wallet Suite](https://wallet.polygon.technology/polygon/bridge/deposit).
44

5-
"img/home/Polygon PoS bridge provides a bridging mechanism that is near-instant, low-cost, and quite flexible"img/home/.
5+
Polygon PoS bridge provides a bridging mechanism that is near-instant, low-cost, and quite flexible.
66

7-
"img/home/There is no change to the circulating supply of your token when it crosses the bridge"img/home/;
7+
There is no change to the circulating supply of your token when it crosses the bridge;
88

99
- Tokens that leave the Ethereum network are locked and the same number of tokens are minted on Polygon PoS as a pegged token (1:1).
1010
- To move the tokens back to the Ethereum network, tokens are burned on Polygon PoS network and unlocked on Ethereum network during the process.

docs/zkEVM/get-started/setup-nodes/production-node.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Let's start setting up our zkNode:
7575

7676
2. Download and extract the artifacts. Note that you may need to [install unzip](https://formulae.brew.sh/formula/unzip) before running this command. Also, unlike the mainnet and the Goerli testnet that use the latest version, Cardona testnet uses a specific version.
7777

78-
So use the next `curl` command specifically for Cardona, which uses version 0.5.5 (Note that the latest version, [Cardona v0.5.6](https://github.com/0xPolygonHermez/zkevm-node/releases/tag/v0.5.6), is available and can equally be used.):
78+
So use the next `curl` command specifically for Cardona, which uses version 0.5.5 (Note that the latest version, [Cardona v0.5.7](https://github.com/0xPolygonHermez/zkevm-node/releases/tag/v0.5.7), is available and can equally be used.):
7979

8080
```bash
8181
curl -L https://github.com/0xPolygonHermez/zkevm-node/releases/download/v0.5.5/$ZKEVM_NET.zip > $ZKEVM_NET.zip && unzip -o $ZKEVM_NET.zip -d $ZKEVM_DIR && rm $ZKEVM_NET.zip
@@ -87,14 +87,14 @@ Let's start setting up our zkNode:
8787
curl -L https://github.com/0xPolygonHermez/zkevm-node/releases/latest/download/$ZKEVM_NET.zip > $ZKEVM_NET.zip && unzip -o $ZKEVM_NET.zip -d $ZKEVM_DIR && rm $ZKEVM_NET.zip
8888
```
8989

90-
3. Copy the `example.env` file with the environment parameters:
90+
4. Copy the `example.env` file with the environment parameters:
9191

9292
```sh
9393
cp $ZKEVM_DIR/$ZKEVM_NET/example.env $ZKEVM_CONFIG_DIR/.env
9494
9595
```
9696

97-
4. The `example.env` file must be modified according to your configurations.
97+
5. The `example.env` file must be modified according to your configurations.
9898

9999
Edit the .env file with your favourite editor (we'll use nano in this guide): ```nano $ZKEVM_CONFIG_DIR/.env```
100100
@@ -111,13 +111,13 @@ Let's start setting up our zkNode:
111111
ZKEVM_NODE_POOLDB_DATA_DIR = "/path/to/persistent/data/pooldb"
112112
```
113113
114-
5. To run the zkNode instance, run the following command:
114+
6. To run the zkNode instance, run the following command:
115115
116116
```bash
117117
sudo docker compose --env-file $ZKEVM_CONFIG_DIR/.env -f $ZKEVM_DIR/$ZKEVM_NET/docker-compose.yml up -d
118118
```
119119
120-
6. Run this command to check if everything went well and all the components are running properly:
120+
7. Run this command to check if everything went well and all the components are running properly:
121121
122122
```bash
123123
docker compose --env-file $ZKEVM_CONFIG_DIR/.env -f $ZKEVM_DIR/$ZKEVM_NET/docker-compose.yml ps
@@ -130,7 +130,7 @@ Let's start setting up our zkNode:
130130
- **zkevm-pool-db**
131131
- **zkevm-prover**
132132
133-
7. You should now be able to run queries to the JSON-RPC endpoint at `http://localhost:8545`.
133+
8. You should now be able to run queries to the JSON-RPC endpoint at `http://localhost:8545`.
134134
135135
## Testing
136136

0 commit comments

Comments
 (0)