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