@aptos-labs/ts-sdk - v5.1.4
    Preparing search index...

    Type Alias TransactionMultiAgentSignature

    The structure for a multi-agent signature in a transaction.

    type TransactionMultiAgentSignature = {
        secondary_signer_addresses: string[];
        secondary_signers: AccountSignature[];
        sender: AccountSignature;
        type: "multi_agent_signature";
    }
    Index

    Properties

    secondary_signer_addresses: string[]

    The other involved parties' addresses

    secondary_signers: AccountSignature[]

    The associated signatures, in the same order as the secondary addresses

    type: "multi_agent_signature"