pub trait TransactionSigner {
    // Required method
    fn sign_txn(&self, raw_txn: RawTransaction) -> Result<SignedTransaction>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl TransactionSigner for KeyPair<Ed25519PrivateKey, Ed25519PublicKey>

Implementors§