@solana/web3.js
    Preparing search index...

    Type Alias TransactionConfig

    The transaction config of a v1 transaction message, which expresses the compute budget directly in the message instead of through ComputeBudget program instructions. Fields the transaction did not set are null.

    type TransactionConfig = {
        computeUnitLimit: number | null;
        heapSize: number | null;
        loadedAccountsDataSizeLimit: number | null;
        priorityFee: number | null;
    }
    Index
    computeUnitLimit: number | null

    The maximum number of compute units this transaction may consume

    heapSize: number | null

    The transaction-wide heap size in bytes

    loadedAccountsDataSizeLimit: number | null

    The maximum number of account data bytes this transaction may load

    priorityFee: number | null

    The total priority fee in lamports.