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

    Interface InputGenerateSingleSignerRawTransactionData

    Holds user input data for generating a single signer transaction.

    The address of the account sending the transaction.

    The payload data for the transaction.

    Optional transaction options.

    Indicates if the fee payer is included.

    Addresses for any secondary signers (not used in single signer transactions).

    interface InputGenerateSingleSignerRawTransactionData {
        data: InputGenerateTransactionPayloadData;
        options?: InputGenerateTransactionOptions;
        secondarySignerAddresses?: undefined;
        sender: AccountAddressInput;
        withFeePayer?: boolean;
    }
    Index

    Properties

    secondarySignerAddresses?: undefined
    withFeePayer?: boolean