discv5-cli 0.3.0

Simple CLI utility for creating and debugging discovery v5 servers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Args;

/// RequestEnr
#[derive(Args, Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct RequestEnr {
    /// Multiaddr of the node to request the ENR from.
    #[clap(
        short = 'm',
        long = "multiaddr",
        help = "The multiaddr of the node to request their ENR from"
    )]
    pub multiaddr: String,
}