@aptos-labs/ts-sdk - v3.1.1
    Preparing search index...

    Type Alias InputSimulateTransactionData

    The data required to simulate a transaction, typically generated by generateTransaction().

    type InputSimulateTransactionData = {
        feePayerPublicKey?: PublicKey;
        options?: InputSimulateTransactionOptions;
        secondarySignersPublicKeys?: (PublicKey | undefined)[];
        signerPublicKey?: PublicKey;
        transaction: AnyRawTransaction;
    }
    Index

    Implementation - Transactions

    Implementation - Transactions This is optional and can be undefined to skip the public/auth key check during the transaction simulation.

    Properties

    Implementation - Transactions

    feePayerPublicKey?: PublicKey

    For a fee payer transaction (aka Sponsored Transaction)

    secondarySignersPublicKeys?: (PublicKey | undefined)[]

    For a fee payer or multi-agent transaction that requires additional signers in

    transaction: AnyRawTransaction

    The transaction to simulate, probably generated by generateTransaction()

    Implementation - Transactions This is optional and can be undefined to skip the public/auth key check during the transaction simulation.

    signerPublicKey?: PublicKey

    For a single signer transaction

    Properties