getRecentPrioritizationFees method

Future<List<PrioritizationFee>> getRecentPrioritizationFees([
  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<List<PrioritizationFee>> getRecentPrioritizationFees([
  final List<Pubkey>? addresses,
]) async =>
    (await getRecentPrioritizationFeesRaw(addresses)).result!;