Source code for zpywallet.fees.btc.mempoolspace
from .esplora import EsploraFeeEstimator
[docs]class MempoolSpaceFeeEstimator(EsploraFeeEstimator):
"""
A class representing a Bitcoin fee rate estimator using Mempool.space.
"""
def __init__(self, request_interval=(3, 1), transactions=None):
super().__init__(
request_interval=request_interval,
transactions=transactions,
url="https://mempool.space/api/v1",
)