Interface AddressWithEmptyTransactionSigner

An address paired with a signer that produces placeholder signatures for it.

Remarks

Useful for post-quantum accounts, whose real signatures are large and slow to produce, when only a simulation of the group is needed.

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