Trait FullSigner

Source
pub trait FullSigner<S>: Signer<S> + TxSigner<S> { }
Available on crate feature network only.
Expand description

A unifying trait for asynchronous Ethereum signers that combine the functionalities of both Signer and TxSigner.

This trait enables dynamic dispatch (e.g., using Box<dyn FullSigner>) for types that combine both asynchronous Ethereum signing and transaction signing functionalities.

Implementors§

Source§

impl<T, S> FullSigner<S> for T
where T: Signer<S> + TxSigner<S>,