UNPKG

@samouraiwallet/one-dollar-fee-estimator

Version:

A script estimating the minimum feerate required for the inclusion of a bitcoin transaction into the next block.

9 lines 277 B
type Tx = { weight: number; fee: number; depends: number[]; }; export declare const getTxsDistrib: (txs: Tx[]) => Map<number, number>; export declare const getBundlesDistrib: (txs: Tx[]) => Map<number, number>; export {}; //# sourceMappingURL=distributions.d.ts.map