From d1f86a9f2fd388e7cda7d834fe8611d89918e926 Mon Sep 17 00:00:00 2001 From: icmono <97465591+icmono@users.noreply.github.com> Date: Tue, 26 May 2026 15:15:12 +0300 Subject: [PATCH 1/3] Update execution-entrypoint --- execution-entrypoint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution-entrypoint b/execution-entrypoint index cea226016..0627f886f 100755 --- a/execution-entrypoint +++ b/execution-entrypoint @@ -10,7 +10,7 @@ METRICS_PORT="${METRICS_PORT:-6060}" DISCOVERY_PORT="${DISCOVERY_PORT:-30303}" V5_DISCOVERY_PORT="${V5_DISCOVERY_PORT:-9200}" P2P_PORT="${P2P_PORT:-30303}" -ADDITIONAL_ARGS="" +ADDITIONAL_ARGS="${ADDITIONAL_ARGS:-}" BINARY="./base-reth-node" RETH_HISTORICAL_PROOFS="${RETH_HISTORICAL_PROOFS:-false}" RETH_HISTORICAL_PROOFS_STORAGE_PATH="${RETH_HISTORICAL_PROOFS_STORAGE_PATH:-}" From d4a7f9664466e273ccf74bb310d44add8b1303e1 Mon Sep 17 00:00:00 2001 From: icmono <97465591+icmono@users.noreply.github.com> Date: Tue, 26 May 2026 15:16:39 +0300 Subject: [PATCH 2/3] Update .env.mainnet --- .env.mainnet | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.env.mainnet b/.env.mainnet index ac9e52b66..3be77ce97 100644 --- a/.env.mainnet +++ b/.env.mainnet @@ -53,3 +53,6 @@ STATSD_ADDRESS="172.17.0.1" # NOTE: The node type that was chosen when first running a node cannot be changed after the initial sync. Turning Archive into Pruned, or Pruned into Full is not supported [source](https://reth.rs/run/faq/pruning/). # NOTE: The pruned snapshots provided are set with a distance of 1_339_200 (~31 days). # RETH_PRUNING_ARGS="--prune.senderrecovery.distance=50000 --prune.transactionlookup.distance=50000 --prune.receipts.distance=50000 --prune.accounthistory.distance=50000 --prune.storagehistory.distance=50000 --prune.bodies.distance=50000" + +# ADDITIONAL ARGUMENTS (OPTIONAL - UNCOMMENT TO ENABLE) +# ADDITIONAL_ARGS="--rpc.gascap 1000000000" From 6772dd0e20491c646cd4b9e8601bb2e3019ce5f5 Mon Sep 17 00:00:00 2001 From: icmono <97465591+icmono@users.noreply.github.com> Date: Tue, 26 May 2026 15:16:57 +0300 Subject: [PATCH 3/3] Update .env.sepolia --- .env.sepolia | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.env.sepolia b/.env.sepolia index e518129fb..e1a995fc5 100644 --- a/.env.sepolia +++ b/.env.sepolia @@ -53,3 +53,6 @@ STATSD_ADDRESS="172.17.0.1" # NOTE: The node type that was chosen when first running a node cannot be changed after the initial sync. Turning Archive into Pruned, or Pruned into Full is not supported [source](https://reth.rs/run/faq/pruning/). # NOTE: The pruned snapshots provided are set with a distance of 1_339_200 (~31 days). # RETH_PRUNING_ARGS="--prune.senderrecovery.distance=50000 --prune.transactionlookup.distance=50000 --prune.receipts.distance=50000 --prune.accounthistory.distance=50000 --prune.storagehistory.distance=50000 --prune.bodies.distance=50000" + +# ADDITIONAL ARGUMENTS (OPTIONAL - UNCOMMENT TO ENABLE) +# ADDITIONAL_ARGS="--rpc.gascap 1000000000"