Skip to content

Commit 569fa24

Browse files
committed
zkEVM - remove Goerli
1 parent f13d82c commit 569fa24

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

docs/zkEVM/get-started/setup-nodes/deploy-zkevm/configure-node-deployment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ comments: true
3131
4. In the `.env` file, set the following:
3232

3333
```sh
34-
ZKEVM_NODE_ETHERMAN_URL = "" # set valid Goerli RPC endpoint
34+
ZKEVM_NODE_ETHERMAN_URL = "" # set valid Sepolia RPC endpoint
3535
ZKEVM_NODE_STATEDB_DATA_DIR = "~/zkevm/data/statedb"
3636
ZKEVM_NODE_POOLDB_DATA_DIR = "~/zkevm/data/pooldb"
3737
```
@@ -43,17 +43,17 @@ comments: true
4343

4444
## Approve MATIC token for sequencer
4545

46-
1. Launch a Hardhat console connected to the Goerli network.
46+
1. Launch a Hardhat console connected to the Sepolia network.
4747

4848
```sh
4949
cd ~/zkevm-contracts
50-
npx hardhat console --network goerli
50+
npx hardhat console --network sepolia
5151
```
5252

5353
2. Add the missing data as directed and copy/paste the following code into the open console.
5454

5555
```js
56-
const provider = ethers.getDefaultProvider("<GOERLI_RPC_NODE>"); // set Goerli RPC node
56+
const provider = ethers.getDefaultProvider("<SEPOLIA_RPC_NODE>"); // set Sepolia RPC node
5757
const privateKey = "<TRUSTED_SEQUENCER_PK>"; // from wallets.txt
5858
const wallet = new ethers.Wallet(privateKey, provider);
5959
@@ -97,7 +97,7 @@ Add the following missing parameters to the `~/zkevm/mainnet/config/environments
9797
If you're having trouble locating the configuration file, try looking for `node.config.toml`, since it may exist under that name in some cases. Once you've added the missing parameters, rename the file to `public.node.config.toml`.
9898

9999
- `ApiKey` # for Etherscan
100-
- `URL` # for Goerli node, under [ETHERMAN]
100+
- `URL` # for Sepolia node, under [ETHERMAN]
101101

102102
## Add wallet keystores
103103

docs/zkEVM/get-started/setup-nodes/deploy-zkevm/create-wallets.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,17 +105,17 @@ npm i
105105
```sh
106106
cd ..
107107
npm i @openzeppelin/hardhat-upgrades
108-
npm run deploy:deployer:ZkEVM:goerli
109-
npm run verify:deployer:ZkEVM:goerli
110-
npm run prepare:testnet:ZkEVM:goerli && npm run deploy:ZkEVM:test:goerli
111-
npm run verify:ZkEVM:goerli
108+
npm run deploy:deployer:ZkEVM:sepolia
109+
npm run verify:deployer:ZkEVM:sepolia
110+
npm run prepare:testnet:ZkEVM:sepolia && npm run deploy:ZkEVM:test:sepolia
111+
npm run verify:ZkEVM:sepolia
112112
```
113113
114114
You should see output that looks something like this at the start each time:
115115
116116
```sh
117-
> @0xpolygonhermez/zkevm-contracts@3.0.0 deploy:deployer:ZkEVM:goerli
118-
> npx hardhat run deployment/2_deployPolygonZKEVMDeployer.js --network goerli
117+
> @0xpolygonhermez/zkevm-contracts@3.0.0 deploy:deployer:ZkEVM:sepolia
118+
> npx hardhat run deployment/2_deployPolygonZKEVMDeployer.js --network sepolia
119119
120120
#######################
121121
@@ -128,5 +128,5 @@ npm i
128128
2. Check the deployment was successful on Etherscan.
129129
130130
```html
131-
https://goerli.etherscan.io/address/[deployment-address] <!-- from `wallets.txt` -->
131+
https://sepolia.etherscan.io/address/[deployment-address] <!-- from `wallets.txt` -->
132132
```

docs/zkEVM/get-started/setup-nodes/deploy-zkevm/environment-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ Deploying the full zkEVM stack requires installing and deploying a number of dif
2424
| zkEVM explorer | `zkevm-explorer-l2` | L2 network's block explorer. i.e., The zkRollup Etherscan [explorer](https://zkevm.polygonscan.com). |
2525
| zkEVM explorer DB | `zkevm-explorer-l2-db` | Database for the L2 network's Block explorer. i.e., Where all the zkRollup Etherscan explorer queries are made. |
2626
| Gas pricer | `zkevm-l2gaspricer` | Responsible for suggesting the gas price for the L2 network fees. |
27-
| Goërli execution | `goerli-execution` | L1 node's execution layer. |
28-
| Goërli consensus | `goerli-consensus` | L1 node's consensus layer.
27+
| Sepolia execution | `sepolia-execution` | L1 node's execution layer. |
28+
| Sepolia consensus | `sepolia-consensus` | L1 node's consensus layer.

docs/zkEVM/get-started/setup-nodes/deploy-zkevm/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
comments: true
33
---
44

5-
This tutorial takes you through the process of deploying a full zkEVM stack on Goerli.
5+
This tutorial takes you through the process of deploying a full zkEVM stack on either testnet or mainnet.
66

77
It relies on specific component versions so we have hidden most of the configuration complexity in scripts to make the process straightforward.
88

0 commit comments

Comments
 (0)