Interface AddressWithTransactionSigner

An address paired with a signer able to sign transactions on its behalf.

Remarks

address is the address transactions are sent from, which is not necessarily the address that authorizes them: for a rekeyed account the two differ, and txnSigner sets the transaction's sgnr field accordingly.

interface AddressWithTransactionSigner {
    address: Address;
    txnSigner: TransactionSigner;
}

Hierarchy (view full)

Properties

Properties

address: Address

Generated using TypeDoc