pub trait FullSignerSync<S>: SignerSync<S> + TxSignerSync<S> { }
Available on crate feature
network
only.Expand description
A unifying trait for synchronous Ethereum signers that implement both SignerSync
and
TxSignerSync
.
This trait enables dynamic dispatch (e.g., using Box<dyn FullSignerSync>
) for types that
combine both synchronous Ethereum signing and transaction signing functionalities.