Struct sc_cli::NetworkParams

source ·
pub struct NetworkParams {
Show 18 fields pub bootnodes: Vec<MultiaddrWithPeerId>, pub reserved_nodes: Vec<MultiaddrWithPeerId>, pub reserved_only: bool, pub public_addr: Vec<Multiaddr>, pub listen_addr: Vec<Multiaddr>, pub port: Option<u16>, pub no_private_ipv4: bool, pub allow_private_ipv4: bool, pub out_peers: u32, pub in_peers: u32, pub in_peers_light: u32, pub no_mdns: bool, pub max_parallel_downloads: u32, pub node_key_params: NodeKeyParams, pub discover_local: bool, pub kademlia_disjoint_query_paths: bool, pub ipfs_server: bool, pub sync: SyncMode,
}
Expand description

Parameters used to create the network configuration.

Fields§

§bootnodes: Vec<MultiaddrWithPeerId>

Specify a list of bootnodes.

§reserved_nodes: Vec<MultiaddrWithPeerId>

Specify a list of reserved node addresses.

§reserved_only: bool

Whether to only synchronize the chain with reserved nodes.

Also disables automatic peer discovery.

TCP connections might still be established with non-reserved nodes. In particular, if you are a validator your node might still connect to other validator nodes and collator nodes regardless of whether they are defined as reserved nodes.

§public_addr: Vec<Multiaddr>

The public address that other nodes will use to connect to it. This can be used if there’s a proxy in front of this node.

§listen_addr: Vec<Multiaddr>

Listen on this multiaddress.

By default: If --validator is passed: /ip4/0.0.0.0/tcp/<port> and /ip6/[::]/tcp/<port>. Otherwise: /ip4/0.0.0.0/tcp/<port>/ws and /ip6/[::]/tcp/<port>/ws.

§port: Option<u16>

Specify p2p protocol TCP port.

§no_private_ipv4: bool

Always forbid connecting to private IPv4 addresses (as specified in RFC1918), unless the address was passed with --reserved-nodes or --bootnodes. Enabled by default for chains marked as “live” in their chain specifications.

§allow_private_ipv4: bool

Always accept connecting to private IPv4 addresses (as specified in RFC1918). Enabled by default for chains marked as “local” in their chain specifications, or when --dev is passed.

§out_peers: u32

Specify the number of outgoing connections we’re trying to maintain.

§in_peers: u32

Maximum number of inbound full nodes peers.

§in_peers_light: u32

Maximum number of inbound light nodes peers.

§no_mdns: bool

Disable mDNS discovery.

By default, the network will use mDNS to discover other nodes on the local network. This disables it. Automatically implied when using –dev.

§max_parallel_downloads: u32

Maximum number of peers from which to ask for the same blocks in parallel.

This allows downloading announced blocks from multiple peers. Decrease to save traffic and risk increased latency.

§node_key_params: NodeKeyParams§discover_local: bool

Enable peer discovery on local networks.

By default this option is true for --dev or when the chain type is Local/Development and false otherwise.

§kademlia_disjoint_query_paths: bool

Require iterative Kademlia DHT queries to use disjoint paths for increased resiliency in the presence of potentially adversarial nodes.

See the S/Kademlia paper for more information on the high level design as well as its security improvements.

§ipfs_server: bool

Join the IPFS network and serve transactions over bitswap protocol.

§sync: SyncMode

Blockchain syncing mode.

  • full: Download and validate full blockchain history.
  • fast: Download blocks and the latest state only.
  • fast-unsafe: Same as fast, but skip downloading state proofs.
  • warp: Download the latest state and proof.

Implementations§

Fill the given NetworkConfiguration by looking at the cli parameters.

Trait Implementations§

Append to Command so it can instantiate Self. Read more
Append to Command so it can update self. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Assign values from ArgMatches to self.
Assign values from ArgMatches to self.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Convert from a value of T into an equivalent instance of Option<Self>. Read more
Consume self to return Some equivalent value of Option<T>. Read more
Converts self into T using Into<T>. Read more
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more
Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more
Causes self to use its Binary implementation when Debug-formatted. Read more
Causes self to use its Display implementation when Debug-formatted. Read more
Causes self to use its LowerExp implementation when Debug-formatted. Read more
Causes self to use its LowerHex implementation when Debug-formatted. Read more
Causes self to use its Octal implementation when Debug-formatted. Read more
Causes self to use its Pointer implementation when Debug-formatted. Read more
Causes self to use its UpperExp implementation when Debug-formatted. Read more
Causes self to use its UpperHex implementation when Debug-formatted. Read more
Formats each item in a sequence. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Get a reference to the inner from the outer.

Get a mutable reference to the inner from the outer.

Pipes by value. This is generally the method you want to use. Read more
Borrows self and passes that borrow into the pipe function. Read more
Mutably borrows self and passes that borrow into the pipe function. Read more
Borrows self, then passes self.borrow() into the pipe function. Read more
Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
Borrows self, then passes self.as_ref() into the pipe function.
Mutably borrows self, then passes self.as_mut() into the pipe function. Read more
Borrows self, then passes self.deref() into the pipe function.
Mutably borrows self, then passes self.deref_mut() into the pipe function. Read more
The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Should always be Self
Convert from a value of T into an equivalent instance of Self. Read more
Consume self to return an equivalent value of T. Read more
Immutable access to a value. Read more
Mutable access to a value. Read more
Immutable access to the Borrow<B> of a value. Read more
Mutable access to the BorrowMut<B> of a value. Read more
Immutable access to the AsRef<R> view of a value. Read more
Mutable access to the AsMut<R> view of a value. Read more
Immutable access to the Deref::Target of a value. Read more
Mutable access to the Deref::Target of a value. Read more
Calls .tap() only in debug builds, and is erased in release builds.
Calls .tap_mut() only in debug builds, and is erased in release builds. Read more
Calls .tap_borrow() only in debug builds, and is erased in release builds. Read more
Calls .tap_borrow_mut() only in debug builds, and is erased in release builds. Read more
Calls .tap_ref() only in debug builds, and is erased in release builds. Read more
Calls .tap_ref_mut() only in debug builds, and is erased in release builds. Read more
Calls .tap_deref() only in debug builds, and is erased in release builds. Read more
Calls .tap_deref_mut() only in debug builds, and is erased in release builds. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Attempts to convert self into T using TryInto<T>. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
The counterpart to unchecked_from.
Consume self to return an equivalent value of T.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more