@aptos-labs/ts-sdk - v7.3.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
    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(). Encrypted payloads (options.encrypted when building) are not supported: simulation throws before the request is sent; simulate a plaintext build of the same entry function instead.

    signerPublicKey?: PublicKey

    For a single signer transaction