Skip to content

Commit dee543b

Browse files
committed
add defaults
1 parent 86b63b7 commit dee543b

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.env.sample.holesky

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker
4848
# See available tags https://hub.docker.com/r/nethermind/nethermind/tags
4949
#NETHERMIND_VERSION=
5050

51-
# Reth docker container image version.
52-
# See available tags https://github.com/paradigmxyz/reth/pkgs/container/reth
53-
#RETH_VERSION=
54-
5551
# Nethermind ancient barrier allows you to specify how many old block bodies and receipts you want to store.
5652
NETHERMIND_ANCIENT_BODIES_BARRIER=4500000
5753
NETHERMIND_ANCIENT_RECEIPTS_BARRIER=4500000
@@ -61,6 +57,10 @@ NETHERMIND_ANCIENT_RECEIPTS_BARRIER=4500000
6157
NETHERMIND_HISTORY_PRUNING=Rolling
6258
NETHERMIND_HISTORY_RETENTION_EPOCHS=82125
6359

60+
# Reth docker container image version.
61+
# See available tags https://github.com/paradigmxyz/reth/pkgs/container/reth
62+
#RETH_VERSION=
63+
6464
######### Consensus Layer Config #########
6565

6666
# CL beacon node host exposed ports.

.env.sample.hoodi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker
4848
# See available tags https://hub.docker.com/r/nethermind/nethermind/tags
4949
#NETHERMIND_VERSION=
5050

51-
# Reth docker container image version.
52-
# See available tags https://github.com/paradigmxyz/reth/pkgs/container/reth
53-
#RETH_VERSION=
54-
5551
# Nethermind ancient barrier allows you to specify how many old block bodies and receipts you want to store.
5652
# Recommended: 1500000 for hoodi testnet.
5753
NETHERMIND_ANCIENT_BODIES_BARRIER=1500000
@@ -62,6 +58,10 @@ NETHERMIND_ANCIENT_RECEIPTS_BARRIER=1500000
6258
NETHERMIND_HISTORY_PRUNING=Rolling
6359
NETHERMIND_HISTORY_RETENTION_EPOCHS=82125
6460

61+
# Reth docker container image version.
62+
# See available tags https://github.com/paradigmxyz/reth/pkgs/container/reth
63+
#RETH_VERSION=
64+
6565
######### Consensus Layer Config #########
6666

6767
# CL beacon node host exposed ports.

.env.sample.mainnet

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker
4848
# See available tags https://hub.docker.com/r/nethermind/nethermind/tags
4949
#NETHERMIND_VERSION=
5050

51-
# Reth docker container image version.
52-
# See available tags https://github.com/paradigmxyz/reth/pkgs/container/reth
53-
#RETH_VERSION=
54-
5551
# Nethermind ancient barrier allows you to specify how many old block bodies and receipts you want to store.
5652
# Recommended: 20000000 for mainnet.
5753
NETHERMIND_ANCIENT_BODIES_BARRIER=20000000
@@ -63,6 +59,10 @@ NETHERMIND_ANCIENT_RECEIPTS_BARRIER=20000000
6359
NETHERMIND_HISTORY_PRUNING=Rolling
6460
NETHERMIND_HISTORY_RETENTION_EPOCHS=82125
6561

62+
# Reth docker container image version.
63+
# See available tags https://github.com/paradigmxyz/reth/pkgs/container/reth
64+
#RETH_VERSION=
65+
6666
######### Consensus Layer Config #########
6767

6868
# CL beacon node host exposed ports.

compose-el.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ services:
3333
--Metrics.Enabled=true
3434
--Metrics.ExposePort=8008
3535
--Sync.SnapSync=true
36-
--Sync.AncientBodiesBarrier=${NETHERMIND_ANCIENT_BODIES_BARRIER:-0}
37-
--Sync.AncientReceiptsBarrier=${NETHERMIND_ANCIENT_RECEIPTS_BARRIER:-0}
38-
--History.Pruning=${NETHERMIND_HISTORY_PRUNING:-Disabled}
36+
--Sync.AncientBodiesBarrier=${NETHERMIND_ANCIENT_BODIES_BARRIER:-20000000}
37+
--Sync.AncientReceiptsBarrier=${NETHERMIND_ANCIENT_RECEIPTS_BARRIER:-20000000}
38+
--History.Pruning=${NETHERMIND_HISTORY_PRUNING:-Rolling}
3939
--History.RetentionEpochs=${NETHERMIND_HISTORY_RETENTION_EPOCHS:-82125}
4040
networks: [dvnode]
4141
volumes:

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ services:
3333
--Metrics.Enabled=true
3434
--Metrics.ExposePort=8008
3535
--Sync.SnapSync=true
36-
--Sync.AncientBodiesBarrier=${NETHERMIND_ANCIENT_BODIES_BARRIER:-0}
37-
--Sync.AncientReceiptsBarrier=${NETHERMIND_ANCIENT_RECEIPTS_BARRIER:-0}
38-
--History.Pruning=${NETHERMIND_HISTORY_PRUNING:-Disabled}
36+
--Sync.AncientBodiesBarrier=${NETHERMIND_ANCIENT_BODIES_BARRIER:-20000000}
37+
--Sync.AncientReceiptsBarrier=${NETHERMIND_ANCIENT_RECEIPTS_BARRIER:-20000000}
38+
--History.Pruning=${NETHERMIND_HISTORY_PRUNING:-Rolling}
3939
--History.RetentionEpochs=${NETHERMIND_HISTORY_RETENTION_EPOCHS:-82125}
4040
networks: [dvnode]
4141
volumes:

0 commit comments

Comments
 (0)