GetPriorityFeeEstimateOptions - The options for the priority fee estimate

interface GetPriorityFeeEstimateOptions {
    accountsOrTx: string | (string | PublicKey)[];
    increaseFactor?: number;
    percentile?: number;
}

Properties

accountsOrTx: string | (string | PublicKey)[]

The accounts or transaction to get the priority fee estimate for. string is a serialized base64 transaction. array is interpreted as an array of public keys in string format or as PublicKey instances (writable accounts).

increaseFactor?: number

The multiplier to apply to the priority fee estimate. The result is multiplied by 1 + increaseFactor.

0.05 = 5%
percentile?: number

The percentile of the priority fee estimate to return.

examples: Triton RPC - [0, 10000]

5000