Mempool class

Constructors

Mempool(int count, int vsize, int totalFee, List<List<num>> feeHistogram)
Mempool.fromJson(Map<String, dynamic> json)

Properties

count int
the number of transactions in the mempool
getter/setter pair
feeHistogram List<List<num>>
mempool fee-rate distribution histogram An array of (feerate, vsize) tuples, where each entry's vsize is the total vsize of transactions paying more than feerate but less than the previous entry's feerate (except for the first entry, which has no upper bound). This matches the format used by the Electrum RPC protocol for mempool.get_fee_histogram.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
totalFee int
the total fee paid by mempool transactions in satoshis
getter/setter pair
vsize int
the total size of mempool transactions in virtual bytes
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited