File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import type { Address } from '@solana/addresses';
22import type { RpcApiMethods } from '@solana/rpc-spec' ;
33import type { MicroLamportsUnsafeBeyond2Pow53Minus1 , Slot } from '@solana/rpc-types' ;
44
5- type GetRecentPrioritizationFeesApiResponse = Readonly < {
5+ type RecentPrioritizationFee = Readonly < {
66 /**
77 * The per-compute-unit fee paid by at least one successfully
88 * landed transaction, specified in increments of
@@ -11,7 +11,9 @@ type GetRecentPrioritizationFeesApiResponse = Readonly<{
1111 prioritizationFee : MicroLamportsUnsafeBeyond2Pow53Minus1 ;
1212 /** Slot in which the fee was observed */
1313 slot : Slot ;
14- } > [ ] ;
14+ } > ;
15+
16+ type GetRecentPrioritizationFeesApiResponse = readonly RecentPrioritizationFee [ ] ;
1517
1618export interface GetRecentPrioritizationFeesApi extends RpcApiMethods {
1719 /**
You can’t perform that action at this time.
0 commit comments