Interface TransactionWithSigner

Represents an unsigned transactions and a signer that can authorize that transaction.

interface TransactionWithSigner {
    signer: TransactionSigner;
    txn: Transaction;
}

Properties

Properties

A transaction signer that can authorize txn

An unsigned transaction

Generated using TypeDoc