pub trait ThreadSafeSigner: Signer + Send + Sync + 'static { // Required method fn to_signer(&self) -> &dyn Signer; }
async