Interface AddressWithEmptyTransactionSigner

Something that has an Algorand address associated with it. It could be logic sig, single-signer account, multisig, app, etc.

interface AddressWithEmptyTransactionSigner {
    address: Address;
    emptyTxnSigner: TransactionSigner;
}

Hierarchy (view full)

Properties

address: Address
emptyTxnSigner: TransactionSigner

A TransactionSigner that produces unsigned (or placeholder-signed) transactions. This must only be used to simulate transactions with the allowEmptySignatures option enabled.

Generated using TypeDoc