using org.ldk.impl; using org.ldk.enums; using org.ldk.util; using System; namespace org { namespace ldk { namespace structs { /** An implementation of FeeEstimator */ public interface FeeEstimatorInterface { /**Gets estimated satoshis of fee required per 1000 Weight-Units. * * LDK will wrap this method and ensure that the value returned is no smaller than 253 * (ie 1 satoshi-per-byte rounded up to ensure later round-downs don't put us below 1 satoshi-per-byte). * * The following unit conversions can be used to convert to sats/KW: * satoshis-per-byte * 250 * satoshis-per-kbyte / 4 */ int get_est_sat_per_1000_weight(ConfirmationTarget confirmation_target); } /** * A trait which should be implemented to provide feerate information on a number of time * horizons. * * If access to a local mempool is not feasible, feerate estimates should be fetched from a set of * third-parties hosting them. Note that this enables them to affect the propagation of your * pre-signed transactions at any time and therefore endangers the safety of channels funds. It * should be considered carefully as a deployment. * * Note that all of the functions implemented here *must* be reentrant-safe (obviously - they're * called from inside the library in response to chain events, P2P events, or timer events). * * LDK may generate a substantial number of fee-estimation calls in some cases. You should * pre-calculate and cache the fee estimate results to ensure you don't substantially slow HTLC * handling. */ public class FeeEstimator : CommonBase { internal bindings.LDKFeeEstimator bindings_instance; internal long instance_idx; internal FeeEstimator(object _dummy, long ptr) : base(ptr) { bindings_instance = null; } ~FeeEstimator() { if (ptr != 0) { bindings.FeeEstimator_free(ptr); } } private class LDKFeeEstimatorHolder { internal FeeEstimator held; } private class LDKFeeEstimatorImpl : bindings.LDKFeeEstimator { internal LDKFeeEstimatorImpl(FeeEstimatorInterface arg, LDKFeeEstimatorHolder impl_holder) { this.arg = arg; this.impl_holder = impl_holder; } private FeeEstimatorInterface arg; private LDKFeeEstimatorHolder impl_holder; public int get_est_sat_per_1000_weight(ConfirmationTarget _confirmation_target) { int ret = arg.get_est_sat_per_1000_weight(_confirmation_target); GC.KeepAlive(arg); return ret; } } /** Creates a new instance of FeeEstimator from a given implementation */ public static FeeEstimator new_impl(FeeEstimatorInterface arg) { LDKFeeEstimatorHolder impl_holder = new LDKFeeEstimatorHolder(); LDKFeeEstimatorImpl impl = new LDKFeeEstimatorImpl(arg, impl_holder); long[] ptr_idx = bindings.LDKFeeEstimator_new(impl); impl_holder.held = new FeeEstimator(null, ptr_idx[0]); impl_holder.held.instance_idx = ptr_idx[1]; impl_holder.held.bindings_instance = impl; return impl_holder.held; } /** * Gets estimated satoshis of fee required per 1000 Weight-Units. * * LDK will wrap this method and ensure that the value returned is no smaller than 253 * (ie 1 satoshi-per-byte rounded up to ensure later round-downs don't put us below 1 satoshi-per-byte). * * The following unit conversions can be used to convert to sats/KW: * satoshis-per-byte * 250 * satoshis-per-kbyte / 4 */ public int get_est_sat_per_1000_weight(ConfirmationTarget confirmation_target) { int ret = bindings.FeeEstimator_get_est_sat_per_1000_weight(this.ptr, confirmation_target); GC.KeepAlive(this); GC.KeepAlive(confirmation_target); return ret; } } } } }