pub trait SignerExt: Send + Sync {
// Required method
fn sign(&self, hash: &[u8; 32]) -> Result<Vec<u8>, SignError>;
}Expand description
Trait for signers.
This trait is defined here to avoid circular dependencies.
It mirrors the Signer trait from txgate-crypto.