Struct hotshot_types::network::NetworkConfig
source · pub struct NetworkConfig<KEY: SignatureKey> {Show 21 fields
pub rounds: usize,
pub indexed_da: bool,
pub transactions_per_round: usize,
pub manual_start_password: Option<String>,
pub num_bootrap: usize,
pub next_view_timeout: u64,
pub view_sync_timeout: Duration,
pub builder_timeout: Duration,
pub data_request_delay: Duration,
pub node_index: u64,
pub seed: [u8; 32],
pub transaction_size: usize,
pub key_type_name: String,
pub libp2p_config: Option<Libp2pConfig>,
pub config: HotShotConfig<KEY>,
pub cdn_marshal_address: Option<String>,
pub combined_network_config: Option<CombinedNetworkConfig>,
pub commit_sha: String,
pub builder: BuilderType,
pub random_builder: Option<RandomBuilderConfig>,
pub public_keys: Vec<PeerConfigKeys<KEY>>,
}Expand description
a network configuration
Fields§
§rounds: usizenumber of views to run
indexed_da: boolwhether DA membership is determined by index. if true, the first k nodes to register form the DA committee if false, DA membership is requested by the nodes
transactions_per_round: usizenumber of transactions per view
manual_start_password: Option<String>password to have the orchestrator start the network, regardless of the number of nodes connected.
num_bootrap: usizenumber of bootstrap nodes
next_view_timeout: u64timeout before starting the next view
view_sync_timeout: Durationtimeout before starting next view sync round
builder_timeout: DurationThe maximum amount of time a leader can wait to get a block from a builder
data_request_delay: Durationtime to wait until we request data associated with a proposal
node_index: u64global index of node (for testing purposes a uid)
seed: [u8; 32]unique seed (for randomness? TODO)
transaction_size: usizesize of transactions
key_type_name: Stringname of the key type (for debugging)
libp2p_config: Option<Libp2pConfig>the libp2p config
config: HotShotConfig<KEY>the hotshot config
cdn_marshal_address: Option<String>The address for the Push CDN’s “marshal”, A.K.A. load balancer
combined_network_config: Option<CombinedNetworkConfig>combined network config
commit_sha: Stringthe commit this run is based on
builder: BuilderTypebuilder to use
random_builder: Option<RandomBuilderConfig>random builder config
public_keys: Vec<PeerConfigKeys<KEY>>The list of public keys that are allowed to connect to the orchestrator
Implementations§
source§impl<K: SignatureKey> NetworkConfig<K>
impl<K: SignatureKey> NetworkConfig<K>
sourcepub fn generate_init_validator_config(
cur_node_index: u16,
is_da: bool,
) -> ValidatorConfig<K>
pub fn generate_init_validator_config( cur_node_index: u16, is_da: bool, ) -> ValidatorConfig<K>
Get a temporary node index for generating a validator config
sourcepub fn from_file(file: String) -> Result<Self, NetworkConfigError>
pub fn from_file(file: String) -> Result<Self, NetworkConfigError>
Loads a NetworkConfig from a file.
This function takes a file path as a string, reads the file, and then deserializes the contents into a NetworkConfig.
§Arguments
file- A string representing the path to the file from which to load theNetworkConfig.
§Returns
This function returns a Result that contains a NetworkConfig if the file was successfully read and deserialized, or a NetworkConfigError if an error occurred.
§Errors
This function will return an error if the file cannot be read or if the contents cannot be deserialized into a NetworkConfig.
§Examples
// # use hotshot::traits::election::static_committee::StaticElectionConfig;
let file = "/path/to/my/config".to_string();
// NOTE: broken due to staticelectionconfig not being importable
// cannot import staticelectionconfig from hotshot without creating circular dependency
// making this work probably involves the `types` crate implementing a dummy
// electionconfigtype just to make this example work
let config = NetworkConfig::<BLSPubKey, StaticElectionConfig>::from_file(file).unwrap();sourcepub fn to_file(&self, file: String) -> Result<(), NetworkConfigError>
pub fn to_file(&self, file: String) -> Result<(), NetworkConfigError>
Serializes the NetworkConfig and writes it to a file.
This function takes a file path as a string, serializes the NetworkConfig into JSON format using serde_json and then writes the serialized data to the file.
§Arguments
file- A string representing the path to the file where theNetworkConfigshould be saved.
§Returns
This function returns a Result that contains () if the NetworkConfig was successfully serialized and written to the file, or a NetworkConfigError if an error occurred.
§Errors
This function will return an error if the NetworkConfig cannot be serialized or if the file cannot be written.
§Examples
let file = "/path/to/my/config".to_string();
let config = NetworkConfig::from_file(file);
config.to_file(file).unwrap();Trait Implementations§
source§impl<KEY: Clone + SignatureKey> Clone for NetworkConfig<KEY>
impl<KEY: Clone + SignatureKey> Clone for NetworkConfig<KEY>
source§fn clone(&self) -> NetworkConfig<KEY>
fn clone(&self) -> NetworkConfig<KEY>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl<KEY: Debug + SignatureKey> Debug for NetworkConfig<KEY>
impl<KEY: Debug + SignatureKey> Debug for NetworkConfig<KEY>
source§impl<K: SignatureKey> Default for NetworkConfig<K>
impl<K: SignatureKey> Default for NetworkConfig<K>
source§impl<'de, KEY: SignatureKey> Deserialize<'de> for NetworkConfig<KEY>
impl<'de, KEY: SignatureKey> Deserialize<'de> for NetworkConfig<KEY>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl<K: SignatureKey> From<NetworkConfigFile<K>> for NetworkConfig<K>
impl<K: SignatureKey> From<NetworkConfigFile<K>> for NetworkConfig<K>
source§fn from(val: NetworkConfigFile<K>) -> Self
fn from(val: NetworkConfigFile<K>) -> Self
source§impl<KEY> Serialize for NetworkConfig<KEY>where
KEY: Serialize + SignatureKey,
impl<KEY> Serialize for NetworkConfig<KEY>where
KEY: Serialize + SignatureKey,
Auto Trait Implementations§
impl<KEY> Freeze for NetworkConfig<KEY>
impl<KEY> RefUnwindSafe for NetworkConfig<KEY>
impl<KEY> Send for NetworkConfig<KEY>
impl<KEY> Sync for NetworkConfig<KEY>
impl<KEY> Unpin for NetworkConfig<KEY>
impl<KEY> UnwindSafe for NetworkConfig<KEY>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.