opnet
Version:
The perfect library for building Bitcoin-based applications.
10 lines (9 loc) • 371 B
text/typescript
/** Aggregate mempool statistics returned by `btc_getMempoolInfo`. */
export interface MempoolInfo {
/** Total number of pending transactions in the mempool. */
readonly count: number;
/** Number of pending OPNet-specific transactions in the mempool. */
readonly opnetCount: number;
/** Total byte size of the mempool. */
readonly size: number;
}