mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
Co-authored-by: Aditya Pandey <aditya.p@Aditya-P.local> Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
28 lines
733 B
Rust
28 lines
733 B
Rust
//! Parameters for configuring the rpc more granularity via CLI
|
|
|
|
/// NetworkArg struct for configuring the network
|
|
mod network_args;
|
|
pub use network_args::{DiscoveryArgs, NetworkArgs};
|
|
|
|
/// RpcServerArg struct for configuring the RPC
|
|
mod rpc_server_args;
|
|
pub use rpc_server_args::RpcServerArgs;
|
|
|
|
/// DebugArgs struct for debugging purposes
|
|
mod debug_args;
|
|
pub use debug_args::DebugArgs;
|
|
|
|
mod secret_key;
|
|
pub use secret_key::{get_secret_key, SecretKeyError};
|
|
|
|
/// MinerArgs struct for configuring the miner
|
|
mod payload_build_args;
|
|
pub use payload_build_args::PayloadBuilderArgs;
|
|
|
|
/// Stage related arguments
|
|
mod stage_args;
|
|
pub use stage_args::StageEnum;
|
|
|
|
mod gas_price_oracle_args;
|
|
pub use gas_price_oracle_args::GasPriceOracleArgs;
|