71e83fddd4a536c71bdb1a38b77aff1fa4749197
[ldk-java] / src / main / java / org / ldk / structs / ChannelConfig.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10
11 /**
12  * Options which apply on a per-channel basis and may change at runtime or based on negotiation
13  * with our counterparty.
14  */
15 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
16 public class ChannelConfig extends CommonBase {
17         ChannelConfig(Object _dummy, long ptr) { super(ptr); }
18         @Override @SuppressWarnings("deprecation")
19         protected void finalize() throws Throwable {
20                 super.finalize();
21                 if (ptr != 0) { bindings.ChannelConfig_free(ptr); }
22         }
23
24         /**
25          * Amount (in millionths of a satoshi) charged per satoshi for payments forwarded outbound
26          * over the channel.
27          * This may be allowed to change at runtime in a later update, however doing so must result in
28          * update messages sent to notify all nodes of our updated relay fee.
29          * 
30          * Default value: 0.
31          */
32         public int get_forwarding_fee_proportional_millionths() {
33                 int ret = bindings.ChannelConfig_get_forwarding_fee_proportional_millionths(this.ptr);
34                 Reference.reachabilityFence(this);
35                 return ret;
36         }
37
38         /**
39          * Amount (in millionths of a satoshi) charged per satoshi for payments forwarded outbound
40          * over the channel.
41          * This may be allowed to change at runtime in a later update, however doing so must result in
42          * update messages sent to notify all nodes of our updated relay fee.
43          * 
44          * Default value: 0.
45          */
46         public void set_forwarding_fee_proportional_millionths(int val) {
47                 bindings.ChannelConfig_set_forwarding_fee_proportional_millionths(this.ptr, val);
48                 Reference.reachabilityFence(this);
49                 Reference.reachabilityFence(val);
50         }
51
52         /**
53          * Amount (in milli-satoshi) charged for payments forwarded outbound over the channel, in
54          * excess of [`forwarding_fee_proportional_millionths`].
55          * This may be allowed to change at runtime in a later update, however doing so must result in
56          * update messages sent to notify all nodes of our updated relay fee.
57          * 
58          * The default value of a single satoshi roughly matches the market rate on many routing nodes
59          * as of July 2021. Adjusting it upwards or downwards may change whether nodes route through
60          * this node.
61          * 
62          * Default value: 1000.
63          * 
64          * [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
65          */
66         public int get_forwarding_fee_base_msat() {
67                 int ret = bindings.ChannelConfig_get_forwarding_fee_base_msat(this.ptr);
68                 Reference.reachabilityFence(this);
69                 return ret;
70         }
71
72         /**
73          * Amount (in milli-satoshi) charged for payments forwarded outbound over the channel, in
74          * excess of [`forwarding_fee_proportional_millionths`].
75          * This may be allowed to change at runtime in a later update, however doing so must result in
76          * update messages sent to notify all nodes of our updated relay fee.
77          * 
78          * The default value of a single satoshi roughly matches the market rate on many routing nodes
79          * as of July 2021. Adjusting it upwards or downwards may change whether nodes route through
80          * this node.
81          * 
82          * Default value: 1000.
83          * 
84          * [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
85          */
86         public void set_forwarding_fee_base_msat(int val) {
87                 bindings.ChannelConfig_set_forwarding_fee_base_msat(this.ptr, val);
88                 Reference.reachabilityFence(this);
89                 Reference.reachabilityFence(val);
90         }
91
92         /**
93          * The difference in the CLTV value between incoming HTLCs and an outbound HTLC forwarded over
94          * the channel this config applies to.
95          * 
96          * This is analogous to [`ChannelHandshakeConfig::our_to_self_delay`] but applies to in-flight
97          * HTLC balance when a channel appears on-chain whereas
98          * [`ChannelHandshakeConfig::our_to_self_delay`] applies to the remaining
99          * (non-HTLC-encumbered) balance.
100          * 
101          * Thus, for HTLC-encumbered balances to be enforced on-chain when a channel is force-closed,
102          * we (or one of our watchtowers) MUST be online to check for broadcast of the current
103          * commitment transaction at least once per this many blocks (minus some margin to allow us
104          * enough time to broadcast and confirm a transaction, possibly with time in between to RBF
105          * the spending transaction).
106          * 
107          * Default value: 72 (12 hours at an average of 6 blocks/hour).
108          * Minimum value: [`MIN_CLTV_EXPIRY_DELTA`], any values less than this will be treated as
109          * [`MIN_CLTV_EXPIRY_DELTA`] instead.
110          * 
111          * [`MIN_CLTV_EXPIRY_DELTA`]: crate::ln::channelmanager::MIN_CLTV_EXPIRY_DELTA
112          */
113         public short get_cltv_expiry_delta() {
114                 short ret = bindings.ChannelConfig_get_cltv_expiry_delta(this.ptr);
115                 Reference.reachabilityFence(this);
116                 return ret;
117         }
118
119         /**
120          * The difference in the CLTV value between incoming HTLCs and an outbound HTLC forwarded over
121          * the channel this config applies to.
122          * 
123          * This is analogous to [`ChannelHandshakeConfig::our_to_self_delay`] but applies to in-flight
124          * HTLC balance when a channel appears on-chain whereas
125          * [`ChannelHandshakeConfig::our_to_self_delay`] applies to the remaining
126          * (non-HTLC-encumbered) balance.
127          * 
128          * Thus, for HTLC-encumbered balances to be enforced on-chain when a channel is force-closed,
129          * we (or one of our watchtowers) MUST be online to check for broadcast of the current
130          * commitment transaction at least once per this many blocks (minus some margin to allow us
131          * enough time to broadcast and confirm a transaction, possibly with time in between to RBF
132          * the spending transaction).
133          * 
134          * Default value: 72 (12 hours at an average of 6 blocks/hour).
135          * Minimum value: [`MIN_CLTV_EXPIRY_DELTA`], any values less than this will be treated as
136          * [`MIN_CLTV_EXPIRY_DELTA`] instead.
137          * 
138          * [`MIN_CLTV_EXPIRY_DELTA`]: crate::ln::channelmanager::MIN_CLTV_EXPIRY_DELTA
139          */
140         public void set_cltv_expiry_delta(short val) {
141                 bindings.ChannelConfig_set_cltv_expiry_delta(this.ptr, val);
142                 Reference.reachabilityFence(this);
143                 Reference.reachabilityFence(val);
144         }
145
146         /**
147          * Limit our total exposure to in-flight HTLCs which are burned to fees as they are too
148          * small to claim on-chain.
149          * 
150          * When an HTLC present in one of our channels is below a \"dust\" threshold, the HTLC will
151          * not be claimable on-chain, instead being turned into additional miner fees if either
152          * party force-closes the channel. Because the threshold is per-HTLC, our total exposure
153          * to such payments may be sustantial if there are many dust HTLCs present when the
154          * channel is force-closed.
155          * 
156          * The dust threshold for each HTLC is based on the `dust_limit_satoshis` for each party in a
157          * channel negotiated throughout the channel open process, along with the fees required to have
158          * a broadcastable HTLC spending transaction. When a channel supports anchor outputs
159          * (specifically the zero fee HTLC transaction variant), this threshold no longer takes into
160          * account the HTLC transaction fee as it is zero.
161          * 
162          * This limit is applied for sent, forwarded, and received HTLCs and limits the total
163          * exposure across all three types per-channel. Setting this too low may prevent the
164          * sending or receipt of low-value HTLCs on high-traffic nodes, and this limit is very
165          * important to prevent stealing of dust HTLCs by miners.
166          * 
167          * Default value: 5_000_000 msat.
168          */
169         public long get_max_dust_htlc_exposure_msat() {
170                 long ret = bindings.ChannelConfig_get_max_dust_htlc_exposure_msat(this.ptr);
171                 Reference.reachabilityFence(this);
172                 return ret;
173         }
174
175         /**
176          * Limit our total exposure to in-flight HTLCs which are burned to fees as they are too
177          * small to claim on-chain.
178          * 
179          * When an HTLC present in one of our channels is below a \"dust\" threshold, the HTLC will
180          * not be claimable on-chain, instead being turned into additional miner fees if either
181          * party force-closes the channel. Because the threshold is per-HTLC, our total exposure
182          * to such payments may be sustantial if there are many dust HTLCs present when the
183          * channel is force-closed.
184          * 
185          * The dust threshold for each HTLC is based on the `dust_limit_satoshis` for each party in a
186          * channel negotiated throughout the channel open process, along with the fees required to have
187          * a broadcastable HTLC spending transaction. When a channel supports anchor outputs
188          * (specifically the zero fee HTLC transaction variant), this threshold no longer takes into
189          * account the HTLC transaction fee as it is zero.
190          * 
191          * This limit is applied for sent, forwarded, and received HTLCs and limits the total
192          * exposure across all three types per-channel. Setting this too low may prevent the
193          * sending or receipt of low-value HTLCs on high-traffic nodes, and this limit is very
194          * important to prevent stealing of dust HTLCs by miners.
195          * 
196          * Default value: 5_000_000 msat.
197          */
198         public void set_max_dust_htlc_exposure_msat(long val) {
199                 bindings.ChannelConfig_set_max_dust_htlc_exposure_msat(this.ptr, val);
200                 Reference.reachabilityFence(this);
201                 Reference.reachabilityFence(val);
202         }
203
204         /**
205          * The additional fee we're willing to pay to avoid waiting for the counterparty's
206          * `to_self_delay` to reclaim funds.
207          * 
208          * When we close a channel cooperatively with our counterparty, we negotiate a fee for the
209          * closing transaction which both sides find acceptable, ultimately paid by the channel
210          * funder/initiator.
211          * 
212          * When we are the funder, because we have to pay the channel closing fee, we bound the
213          * acceptable fee by our [`Background`] and [`Normal`] fees, with the upper bound increased by
214          * this value. Because the on-chain fee we'd pay to force-close the channel is kept near our
215          * [`Normal`] feerate during normal operation, this value represents the additional fee we're
216          * willing to pay in order to avoid waiting for our counterparty's to_self_delay to reclaim our
217          * funds.
218          * 
219          * When we are not the funder, we require the closing transaction fee pay at least our
220          * [`Background`] fee estimate, but allow our counterparty to pay as much fee as they like.
221          * Thus, this value is ignored when we are not the funder.
222          * 
223          * Default value: 1000 satoshis.
224          * 
225          * [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
226          * [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
227          */
228         public long get_force_close_avoidance_max_fee_satoshis() {
229                 long ret = bindings.ChannelConfig_get_force_close_avoidance_max_fee_satoshis(this.ptr);
230                 Reference.reachabilityFence(this);
231                 return ret;
232         }
233
234         /**
235          * The additional fee we're willing to pay to avoid waiting for the counterparty's
236          * `to_self_delay` to reclaim funds.
237          * 
238          * When we close a channel cooperatively with our counterparty, we negotiate a fee for the
239          * closing transaction which both sides find acceptable, ultimately paid by the channel
240          * funder/initiator.
241          * 
242          * When we are the funder, because we have to pay the channel closing fee, we bound the
243          * acceptable fee by our [`Background`] and [`Normal`] fees, with the upper bound increased by
244          * this value. Because the on-chain fee we'd pay to force-close the channel is kept near our
245          * [`Normal`] feerate during normal operation, this value represents the additional fee we're
246          * willing to pay in order to avoid waiting for our counterparty's to_self_delay to reclaim our
247          * funds.
248          * 
249          * When we are not the funder, we require the closing transaction fee pay at least our
250          * [`Background`] fee estimate, but allow our counterparty to pay as much fee as they like.
251          * Thus, this value is ignored when we are not the funder.
252          * 
253          * Default value: 1000 satoshis.
254          * 
255          * [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
256          * [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
257          */
258         public void set_force_close_avoidance_max_fee_satoshis(long val) {
259                 bindings.ChannelConfig_set_force_close_avoidance_max_fee_satoshis(this.ptr, val);
260                 Reference.reachabilityFence(this);
261                 Reference.reachabilityFence(val);
262         }
263
264         /**
265          * Constructs a new ChannelConfig given each field
266          */
267         public static ChannelConfig of(int forwarding_fee_proportional_millionths_arg, int forwarding_fee_base_msat_arg, short cltv_expiry_delta_arg, long max_dust_htlc_exposure_msat_arg, long force_close_avoidance_max_fee_satoshis_arg) {
268                 long ret = bindings.ChannelConfig_new(forwarding_fee_proportional_millionths_arg, forwarding_fee_base_msat_arg, cltv_expiry_delta_arg, max_dust_htlc_exposure_msat_arg, force_close_avoidance_max_fee_satoshis_arg);
269                 Reference.reachabilityFence(forwarding_fee_proportional_millionths_arg);
270                 Reference.reachabilityFence(forwarding_fee_base_msat_arg);
271                 Reference.reachabilityFence(cltv_expiry_delta_arg);
272                 Reference.reachabilityFence(max_dust_htlc_exposure_msat_arg);
273                 Reference.reachabilityFence(force_close_avoidance_max_fee_satoshis_arg);
274                 if (ret >= 0 && ret <= 4096) { return null; }
275                 org.ldk.structs.ChannelConfig ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelConfig(null, ret); }
276                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
277                 return ret_hu_conv;
278         }
279
280         long clone_ptr() {
281                 long ret = bindings.ChannelConfig_clone_ptr(this.ptr);
282                 Reference.reachabilityFence(this);
283                 return ret;
284         }
285
286         /**
287          * Creates a copy of the ChannelConfig
288          */
289         public ChannelConfig clone() {
290                 long ret = bindings.ChannelConfig_clone(this.ptr);
291                 Reference.reachabilityFence(this);
292                 if (ret >= 0 && ret <= 4096) { return null; }
293                 org.ldk.structs.ChannelConfig ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelConfig(null, ret); }
294                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
295                 return ret_hu_conv;
296         }
297
298         /**
299          * Checks if two ChannelConfigs contain equal inner contents.
300          * This ignores pointers and is_owned flags and looks at the values in fields.
301          * Two objects with NULL inner values will be considered "equal" here.
302          */
303         public boolean eq(ChannelConfig b) {
304                 boolean ret = bindings.ChannelConfig_eq(this.ptr, b == null ? 0 : b.ptr);
305                 Reference.reachabilityFence(this);
306                 Reference.reachabilityFence(b);
307                 if (this != null) { this.ptrs_to.add(b); };
308                 return ret;
309         }
310
311         @Override public boolean equals(Object o) {
312                 if (!(o instanceof ChannelConfig)) return false;
313                 return this.eq((ChannelConfig)o);
314         }
315         /**
316          * Creates a "default" ChannelConfig. See struct and individual field documentaiton for details on which values are used.
317          */
318         public static ChannelConfig with_default() {
319                 long ret = bindings.ChannelConfig_default();
320                 if (ret >= 0 && ret <= 4096) { return null; }
321                 org.ldk.structs.ChannelConfig ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelConfig(null, ret); }
322                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
323                 return ret_hu_conv;
324         }
325
326         /**
327          * Serialize the ChannelConfig object into a byte array which can be read by ChannelConfig_read
328          */
329         public byte[] write() {
330                 byte[] ret = bindings.ChannelConfig_write(this.ptr);
331                 Reference.reachabilityFence(this);
332                 return ret;
333         }
334
335         /**
336          * Read a ChannelConfig from a byte array, created by ChannelConfig_write
337          */
338         public static Result_ChannelConfigDecodeErrorZ read(byte[] ser) {
339                 long ret = bindings.ChannelConfig_read(ser);
340                 Reference.reachabilityFence(ser);
341                 if (ret >= 0 && ret <= 4096) { return null; }
342                 Result_ChannelConfigDecodeErrorZ ret_hu_conv = Result_ChannelConfigDecodeErrorZ.constr_from_ptr(ret);
343                 return ret_hu_conv;
344         }
345
346 }