You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/zkEVM/get-started/setup-nodes/production-node.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Polygon zkEVM's Mainnet Beta is available for developers to launch smart contracts, execute transactions, and experiment with the network. This tutorial extends the exploration by allowing developers to launch their own production zkNode.
2
2
3
-
Developers can setup a production node with either the Polygon zkEVM's mainnet or the testnet.
3
+
Developers can setup a production node with either the Polygon zkEVM's mainnet or the Cardona testnet.
4
4
5
5
After spinning up an instance of the production zkNode, you will be able to run the Synchronizer and utilize the JSON-RPC interface.
6
6
@@ -46,7 +46,7 @@ Here is a list of crucial network components that are required before you can ru
46
46
47
47
The Ethereum node is the first component to be set up. And it is because the Ethereum network takes a long time to synchronise. So, we start synchronising the Ethereum Node, and then begin to setup other components while waiting for the synchronisation to complete.
48
48
49
-
There are numerous ways to set up an Ethereum L1 environment; we will use Geth for this. We recommend Geth, but a Goerli node will suffice.
49
+
There are numerous ways to set up an Ethereum L1 environment; we will use Geth for this. We recommend Geth, but a Sepolia node will suffice.
50
50
51
51
Follow the instructions provided in this [guide to setup and install Geth](https://geth.ethereum.org/docs/getting-started/installing-geth).
52
52
@@ -63,8 +63,8 @@ Let's start setting up our zkNode:
63
63
1. Launch your command line/terminal and set the variables using below commands:
64
64
65
65
```bash
66
-
# define the network("mainnet" or "cardona" or "testnet")
67
-
ZKEVM_NET=testnet
66
+
# define the network("mainnet" or "cardona")
67
+
ZKEVM_NET=cardona
68
68
69
69
# define installation path
70
70
ZKEVM_DIR=./path_to_install
@@ -73,7 +73,7 @@ Let's start setting up our zkNode:
73
73
ZKEVM_CONFIG_DIR=./path_to_config
74
74
```
75
75
76
-
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.
76
+
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, the mainnet uses the latest version, and Cardona testnet uses a specific version.
77
77
78
78
So use the next `curl`command specifically for Cardona, which uses version v0.6.3.
79
79
@@ -83,7 +83,7 @@ Let's start setting up our zkNode:
0 commit comments