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

    Interface InputGenerateMultiAgentRawTransactionData

    Holds user data input for generating a multi-agent transaction.

    The address of the primary sender.

    The payload data for the transaction.

    An array of addresses for secondary signers.

    Optional transaction options.

    Indicates if a fee payer is included.

    interface InputGenerateMultiAgentRawTransactionData {
        data: InputGenerateTransactionPayloadData;
        options?: InputGenerateTransactionOptions;
        secondarySignerAddresses: AccountAddressInput[];
        sender: AccountAddressInput;
        withFeePayer?: boolean;
    }
    Index

    Properties

    secondarySignerAddresses: AccountAddressInput[]
    withFeePayer?: boolean