Function new

Source
pub(crate) async fn new(
    secret_key_seed: Option<u8>,
) -> Result<(Client, impl Stream<Item = Event>, EventLoop), Box<dyn Error>>
Expand description

Creates the network components, namely:

  • The network client to interact with the network layer from anywhere within your application.

  • The network event stream, e.g. for incoming requests.

  • The network task driving the network itself.