pub trait IntoWallet<N = Ethereum>:
Send
+ Sync
+ Debugwhere
N: Network,{
type NetworkWallet: NetworkWallet<N>;
// Required method
fn into_wallet(self) -> Self::NetworkWallet;
}
Available on crate feature
network
only.Expand description
A trait for converting a signer into a NetworkWallet
.
Required Associated Types§
Sourcetype NetworkWallet: NetworkWallet<N>
type NetworkWallet: NetworkWallet<N>
The wallet type for the network.
Required Methods§
Sourcefn into_wallet(self) -> Self::NetworkWallet
fn into_wallet(self) -> Self::NetworkWallet
Convert the signer into a wallet.