UNPKG

@btc-vision/bitcoin-rpc

Version:

The one and only fully typed Bitcoin RPC client for Node.js

13 lines (10 loc) 251 B
export enum FeeEstimation { ECONOMICAL = 'ECONOMICAL', CONSERVATIVE = 'CONSERVATIVE', UNSET = 'UNSET', } export interface SmartFeeEstimation { readonly blocks: number; readonly feeRate?: number; readonly errors?: string[]; }