Trait IntoWallet

Source
pub trait IntoWallet<N: Network = Ethereum>:
    Send
    + Sync
    + Debug {
    type NetworkWallet: NetworkWallet<N>;

    // Required method
    fn into_wallet(self) -> Self::NetworkWallet;
}
Expand description

A trait for converting a signer into a NetworkWallet.

Required Associated Types§

Source

type NetworkWallet: NetworkWallet<N>

The wallet type for the network.

Required Methods§

Source

fn into_wallet(self) -> Self::NetworkWallet

Convert the signer into a wallet.

Implementors§