diff --git a/bin/reth/src/chain/import.rs b/bin/reth/src/chain/import.rs index 8323743ca..f60db7e7c 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 e25cbf8a2..0f8f6b8bb 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 a17ab8a30..bc2b9adb1 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 53a24b718..1c9f15bcd 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 b1d5c8f77..97cddea0a 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 bddece765..7da85f2c8 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 37e41e8fc..d61afbf91 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 fd30527ef..c689553c5 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 cc0010486..864c62ee4 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 d1e8a87f5..01a00c3d4 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 073c14c2a..aaee45354 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 792777d1a..1c4c46fee 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 d06ee8e7b..3a8e7003a 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 d88346bc7..4c0c5a1e2 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 72db45438..304711adf 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 e9610f7b0..12d8c83f7 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 5b4de6a57..30e41d711 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 3824bcea7..b250cb3d2 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 d295e42f8..e73fb600c 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 1c6d962a7..582c229d9 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 8821be830..38bf646de 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 fc8330422..770892888 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 019b85f42..25db4a260 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 665eec059..31892c929 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 87fced2d8..8164af82c 100644 --- a/book/cli/test-vectors.md +++ b/book/cli/test-vectors.md @@ -21,6 +21,7 @@ Options: - mainnet - goerli - sepolia + - holesky [default: mainnet]