using System.Threading.Tasks; using NBitcoin; namespace BTCPayServer.Services { public interface IFeeProvider { Task GetFeeRateAsync(int blockTarget = 20); } }