getRecentPrioritizationFeesRaw method

Future<JsonRpcSuccessResponse<List<PrioritizationFee>>> getRecentPrioritizationFeesRaw([
  1. List<Pubkey>? addresses
])

Returns a list of prioritization fees from recent blocks.

If addresses is provided, the response will reflect a fee to land a transaction locking all of the provided accounts as writable.

Implementation

Future<JsonRpcSuccessResponse<List<PrioritizationFee>>>
getRecentPrioritizationFeesRaw([final List<Pubkey>? addresses]) =>
    send(GetRecentPrioritizationFees.map(addresses));