GetPriorityFeeEstimateOptions
GetPriorityFeeEstimateOptions
Defined in: types.ts:6
GetPriorityFeeEstimateOptions - The options for the priority fee estimate
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
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). | packages/common/solana/rpc/types.ts:12 |
increaseFactor? | number | The multiplier to apply to the priority fee estimate. The result is multiplied by 1 + increaseFactor. Default 0.05 = 5% | packages/common/solana/rpc/types.ts:25 |
percentile? | number | The percentile of the priority fee estimate to return. examples: Triton RPC - [0, 10000] Default 5000 | packages/common/solana/rpc/types.ts:19 |