Skip to content
This repository was archived by the owner on Dec 22, 2025. It is now read-only.

Commit e7f1825

Browse files
author
Bloxster
committed
updated to Erigon v3.0.0
1 parent e001959 commit e7f1825

File tree

8 files changed

+13
-15
lines changed

8 files changed

+13
-15
lines changed

src/advanced/options.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ The `--help` flag listing is reproduced below for your convenience.
1616
## Commands
1717

1818
```
19-
NNAME:
19+
NAME:
2020
erigon - erigon
2121
2222
USAGE:
2323
erigon [command] [flags]
2424
2525
VERSION:
26-
3.00.0-rc3-844c6cf3
26+
3.00.0-57625b40
2727
2828
COMMANDS:
2929
init Bootstrap and initialize a new genesis block
@@ -33,8 +33,8 @@ COMMANDS:
3333
help, h Shows a list of commands or help for one command
3434
3535
GLOBAL OPTIONS:
36-
--datadir value Data directory for the databases (default: /home/user/.local/share/erigon)
37-
--ethash.dagdir value Directory to store the ethash mining DAGs (default: /home/user/.local/share/erigon-ethash)
36+
--datadir value Data directory for the databases (default: /home/bloxster/.local/share/erigon)
37+
--ethash.dagdir value Directory to store the ethash mining DAGs (default: /home/bloxster/.local/share/erigon-ethash)
3838
--externalcl Enables the external consensus layer (default: false)
3939
--txpool.disable Experimental external pool and block producer, see ./cmd/txpool/readme.md for more info. Disabling internal txpool and block producer. (default: false)
4040
--txpool.pricelimit value Minimum gas price (fee cap) limit to enforce for acceptance into the pool (default: 1)
@@ -192,7 +192,6 @@ GLOBAL OPTIONS:
192192
--ethstats value Reporting URL of a ethstats service (nodename:secret@host:port)
193193
--override.prague value Manually specify the Prague fork time, overriding the bundled setting (default: 0)
194194
--caplin.discovery.addr value Address for Caplin DISCV5 protocol (default: "0.0.0.0")
195-
--caplin.discovery.addr value Address for Caplin DISCV5 protocol (default: "0.0.0.0")
196195
--caplin.discovery.port value Port for Caplin DISCV5 protocol (default: 4000)
197196
--caplin.discovery.tcpport value TCP Port for Caplin DISCV5 protocol (default: 4001)
198197
--caplin.checkpoint-sync-url value [ --caplin.checkpoint-sync-url value ] checkpoint sync endpoint
@@ -251,8 +250,6 @@ GLOBAL OPTIONS:
251250
--shutter.p2p.listen.port value Use to override the default p2p listen port (defaults to 23102) (default: 0)
252251
--polygon.pos.ssf Enabling Polygon PoS Single Slot Finality (default: false)
253252
--polygon.pos.ssf.block value Enabling Polygon PoS Single Slot Finality since block (default: 0)
254-
--polygon.pos.ssf Enabling Polygon PoS Single Slot Finality (default: false)
255-
--polygon.pos.ssf.block value Enabling Polygon PoS Single Slot Finality since block (default: 0)
256253
--pprof Enable the pprof HTTP server (default: false)
257254
--pprof.addr value pprof HTTP server listening interface (default: "127.0.0.1")
258255
--pprof.port value pprof HTTP server listening port (default: 6060)
@@ -278,4 +275,5 @@ GLOBAL OPTIONS:
278275
--config value Sets erigon flags from YAML/TOML file
279276
--help, -h show help
280277
--version, -v print the version
278+
```
281279

src/installation/build_exec_win.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Then click on the "**New**" button and paste the following path:
5555
Open the Command Prompt and type the following:
5656

5757
```bash
58-
git clone --branch v3.0.0-beta2 --single-branch https://github.com/erigontech/erigon.git
58+
git clone --branch v3.0.0 --single-branch https://github.com/erigontech/erigon.git
5959
```
6060

6161
You might need to change the `ExecutionPolicy` to allow scripts created locally or signed by a trusted publisher to run:

src/installation/docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Here are the steps to download and start Erigon 3 in Docker:
2424
3. Download the latest version:
2525

2626
```bash
27-
docker pull erigontech/erigon:v3.0.0-beta2
27+
docker pull erigontech/erigon:v3.0.0
2828
```
2929

3030
* List the downloaded images to get the IMAGE ID:
@@ -42,7 +42,7 @@ docker run -it <image_id> --v
4242
* If you want to start Erigon add the options according to the [basic usage](/basic-usage.md) page or the advanced customization page. For example:
4343

4444
```bash
45-
docker run -it 50bef1b5d0f9 --chain=holesky --prune.mode=minimal
45+
docker run -it 36f25992dd1a --chain=holesky --prune.mode=minimal
4646
```
4747

4848
* When done, exit the container or press `Ctrl+C`. The container will stop.

src/installation/linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
The basic Erigon configuration is suitable for most users just wanting to run a node. For building the latest stable release use the following command:
55

66
```bash
7-
git clone --branch v3.0.0-beta2 --single-branch https://github.com/erigontech/erigon.git
7+
git clone --branch v3.0.0 --single-branch https://github.com/erigontech/erigon.git
88
cd erigon
99
make erigon
1010
```

src/installation/upgrading-md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To upgrade Erigon to a newer version when you've originally installed it via Git
2323
Replace `<new_version_tag>` with the version tag of the new release, for example:
2424

2525
```bash
26-
git checkout v3.0.0-beta2
26+
git checkout v3.0.0
2727
```
2828

2929
* **Rebuild Erigon**: Since the codebase has changed, you need to compile the new version. Run:

src/nodes/ethereum.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Check which [type of node](/basic/node.md) you might want to run and the [disk s
1818
For MacOS and Linux, run the following commands to build from source the latest Erigon version:
1919

2020
```bash
21-
git clone --branch v3.0.0-beta2 --single-branch https://github.com/erigontech/erigon.git
21+
git clone --branch v3.0.0 --single-branch https://github.com/erigontech/erigon.git
2222
cd erigon
2323
make erigon
2424
```

src/nodes/gnosis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Check which [type of node](/basic/node.md) you might want to run and the [disk s
1818
For MacOS and Linux, run the following commands to build from source the latest Erigon version:
1919

2020
```bash
21-
git clone --branch v3.0.0-beta2 --single-branch https://github.com/erigontech/erigon.git
21+
git clone --branch v3.0.0 --single-branch https://github.com/erigontech/erigon.git
2222
cd erigon
2323
make erigon
2424
```

src/nodes/polygon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Check which [type of node](/basic/node.md) you might want to run and the [disk s
1818
For MacOS and Linux, run the following commands to build from source the latest Erigon version:
1919

2020
```bash
21-
git clone --branch v3.0.0-beta2 --single-branch https://github.com/erigontech/erigon.git
21+
git clone --branch v3.0.0 --single-branch https://github.com/erigontech/erigon.git
2222
cd erigon
2323
make erigon
2424
```

0 commit comments

Comments
 (0)