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;
}

Properties

secondarySignerAddresses: AccountAddressInput[]
withFeePayer?: boolean