mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-31 01:58:17 -05:00
98 lines
2.0 KiB
Markdown
98 lines
2.0 KiB
Markdown
# `reth test-vectors`
|
|
|
|
Generate Test Vectors
|
|
|
|
```bash
|
|
$ reth test-vectors --help
|
|
|
|
Usage: reth test-vectors [OPTIONS] <COMMAND>
|
|
|
|
Commands:
|
|
tables
|
|
Generates test vectors for specified tables. If no table is specified, generate for all
|
|
help
|
|
Print this message or the help of the given subcommand(s)
|
|
|
|
Options:
|
|
-h, --help
|
|
Print help (see a summary with '-h')
|
|
|
|
Logging:
|
|
--log.persistent
|
|
The flag to enable persistent logs
|
|
|
|
--log.directory <PATH>
|
|
The path to put log files in
|
|
|
|
[default: /reth/logs]
|
|
|
|
--log.journald
|
|
Log events to journald
|
|
|
|
--log.filter <FILTER>
|
|
The filter to use for logs written to the log file
|
|
|
|
[default: error]
|
|
|
|
Display:
|
|
-v, --verbosity...
|
|
Set the minimum log level.
|
|
|
|
-v Errors
|
|
-vv Warnings
|
|
-vvv Info
|
|
-vvvv Debug
|
|
-vvvvv Traces (warning: very verbose!)
|
|
|
|
-q, --quiet
|
|
Silence all log output
|
|
```
|
|
|
|
## `reth test-vectors tables`
|
|
|
|
Generates test vectors for specified tables. If no table is specified, generate for all
|
|
|
|
```bash
|
|
$ reth test-vectors tables --help
|
|
|
|
Usage: reth test-vectors tables [OPTIONS] [NAMES]...
|
|
|
|
Arguments:
|
|
[NAMES]...
|
|
List of table names. Case-sensitive
|
|
|
|
Options:
|
|
-h, --help
|
|
Print help (see a summary with '-h')
|
|
|
|
Logging:
|
|
--log.persistent
|
|
The flag to enable persistent logs
|
|
|
|
--log.directory <PATH>
|
|
The path to put log files in
|
|
|
|
[default: /reth/logs]
|
|
|
|
--log.journald
|
|
Log events to journald
|
|
|
|
--log.filter <FILTER>
|
|
The filter to use for logs written to the log file
|
|
|
|
[default: error]
|
|
|
|
Display:
|
|
-v, --verbosity...
|
|
Set the minimum log level.
|
|
|
|
-v Errors
|
|
-vv Warnings
|
|
-vvv Info
|
|
-vvvv Debug
|
|
-vvvvv Traces (warning: very verbose!)
|
|
|
|
-q, --quiet
|
|
Silence all log output
|
|
```
|