diff --git a/bin/reth/src/chain/import.rs b/bin/reth/src/chain/import.rs index 8323743ca9..f60db7e7c8 100644 --- a/bin/reth/src/chain/import.rs +++ b/bin/reth/src/chain/import.rs @@ -55,6 +55,7 @@ pub struct ImportCommand { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/chain/init.rs b/bin/reth/src/chain/init.rs index e25cbf8a2c..0f8f6b8bb6 100644 --- a/bin/reth/src/chain/init.rs +++ b/bin/reth/src/chain/init.rs @@ -30,6 +30,7 @@ pub struct InitCommand { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/cli/mod.rs b/bin/reth/src/cli/mod.rs index a17ab8a30e..bc2b9adb1f 100644 --- a/bin/reth/src/cli/mod.rs +++ b/bin/reth/src/cli/mod.rs @@ -40,6 +40,7 @@ pub struct Cli { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/db/mod.rs b/bin/reth/src/db/mod.rs index 53a24b718a..1c9f15bcd6 100644 --- a/bin/reth/src/db/mod.rs +++ b/bin/reth/src/db/mod.rs @@ -48,6 +48,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/debug_cmd/execution.rs b/bin/reth/src/debug_cmd/execution.rs index b1d5c8f776..97cddea0aa 100644 --- a/bin/reth/src/debug_cmd/execution.rs +++ b/bin/reth/src/debug_cmd/execution.rs @@ -63,6 +63,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/debug_cmd/in_memory_merkle.rs b/bin/reth/src/debug_cmd/in_memory_merkle.rs index bddece7650..7da85f2c89 100644 --- a/bin/reth/src/debug_cmd/in_memory_merkle.rs +++ b/bin/reth/src/debug_cmd/in_memory_merkle.rs @@ -51,6 +51,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/debug_cmd/merkle.rs b/bin/reth/src/debug_cmd/merkle.rs index 37e41e8fc6..d61afbf911 100644 --- a/bin/reth/src/debug_cmd/merkle.rs +++ b/bin/reth/src/debug_cmd/merkle.rs @@ -56,6 +56,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/node/mod.rs b/bin/reth/src/node/mod.rs index fd30527efb..c689553c5c 100644 --- a/bin/reth/src/node/mod.rs +++ b/bin/reth/src/node/mod.rs @@ -113,6 +113,7 @@ pub struct NodeCommand { /// - mainnet /// - goerli /// - sepolia + /// - holesky /// - dev #[arg( long, diff --git a/bin/reth/src/p2p/mod.rs b/bin/reth/src/p2p/mod.rs index cc0010486b..864c62ee41 100644 --- a/bin/reth/src/p2p/mod.rs +++ b/bin/reth/src/p2p/mod.rs @@ -33,6 +33,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/recover/storage_tries.rs b/bin/reth/src/recover/storage_tries.rs index d1e8a87f54..01a00c3d40 100644 --- a/bin/reth/src/recover/storage_tries.rs +++ b/bin/reth/src/recover/storage_tries.rs @@ -37,6 +37,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/stage/drop.rs b/bin/reth/src/stage/drop.rs index 073c14c2a0..aaee453541 100644 --- a/bin/reth/src/stage/drop.rs +++ b/bin/reth/src/stage/drop.rs @@ -32,6 +32,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/stage/dump/mod.rs b/bin/reth/src/stage/dump/mod.rs index 792777d1a6..1c4c46feeb 100644 --- a/bin/reth/src/stage/dump/mod.rs +++ b/bin/reth/src/stage/dump/mod.rs @@ -46,6 +46,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/stage/run.rs b/bin/reth/src/stage/run.rs index d06ee8e7b2..3a8e7003ad 100644 --- a/bin/reth/src/stage/run.rs +++ b/bin/reth/src/stage/run.rs @@ -50,6 +50,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/bin/reth/src/stage/unwind.rs b/bin/reth/src/stage/unwind.rs index d88346bc71..4c0c5a1e2d 100644 --- a/bin/reth/src/stage/unwind.rs +++ b/bin/reth/src/stage/unwind.rs @@ -31,6 +31,7 @@ pub struct Command { /// - mainnet /// - goerli /// - sepolia + /// - holesky #[arg( long, value_name = "CHAIN_OR_PATH", diff --git a/book/cli/cli.md b/book/cli/cli.md index 72db454386..304711adfd 100644 --- a/book/cli/cli.md +++ b/book/cli/cli.md @@ -52,6 +52,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet] diff --git a/book/cli/config.md b/book/cli/config.md index e9610f7b04..12d8c83f79 100644 --- a/book/cli/config.md +++ b/book/cli/config.md @@ -23,6 +23,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet] diff --git a/book/cli/db.md b/book/cli/db.md index 5b4de6a57d..30e41d711e 100644 --- a/book/cli/db.md +++ b/book/cli/db.md @@ -39,6 +39,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet] diff --git a/book/cli/debug.md b/book/cli/debug.md index 3824bcea77..b250cb3d23 100644 --- a/book/cli/debug.md +++ b/book/cli/debug.md @@ -34,6 +34,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet] diff --git a/book/cli/import.md b/book/cli/import.md index d295e42f85..e73fb600cb 100644 --- a/book/cli/import.md +++ b/book/cli/import.md @@ -31,6 +31,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet] diff --git a/book/cli/init.md b/book/cli/init.md index 1c6d962a75..582c229d9e 100644 --- a/book/cli/init.md +++ b/book/cli/init.md @@ -28,6 +28,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet] diff --git a/book/cli/node.md b/book/cli/node.md index 8821be8301..38bf646de5 100644 --- a/book/cli/node.md +++ b/book/cli/node.md @@ -31,6 +31,7 @@ Options: - mainnet - goerli - sepolia + - holesky - dev [default: mainnet] diff --git a/book/cli/p2p.md b/book/cli/p2p.md index fc83304228..7708928886 100644 --- a/book/cli/p2p.md +++ b/book/cli/p2p.md @@ -25,6 +25,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet] diff --git a/book/cli/recover.md b/book/cli/recover.md index 019b85f428..25db4a2605 100644 --- a/book/cli/recover.md +++ b/book/cli/recover.md @@ -21,6 +21,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet] diff --git a/book/cli/stage.md b/book/cli/stage.md index 665eec0593..31892c9291 100644 --- a/book/cli/stage.md +++ b/book/cli/stage.md @@ -24,6 +24,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet] diff --git a/book/cli/test-vectors.md b/book/cli/test-vectors.md index 87fced2d8e..8164af82ca 100644 --- a/book/cli/test-vectors.md +++ b/book/cli/test-vectors.md @@ -21,6 +21,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet]