6dc92bfc74cb2efa4b885a6dd9637c3f0cebcc91
[ldk-java] / src / main / java / org / ldk / impl / bindings.java
1 package org.ldk.impl;
2 import org.ldk.enums.*;
3 import org.ldk.impl.version;
4 import java.io.File;
5 import java.io.InputStream;
6 import java.io.IOException;
7 import java.nio.file.Files;
8 import java.nio.file.Path;
9 import java.nio.file.StandardCopyOption;
10
11 public class bindings {
12         static {
13                 try {
14                         // Try to load natively first, this works on Android and in testing.
15                         System.loadLibrary("lightningjni");
16                 } catch (UnsatisfiedLinkError system_load_err) {
17                         // Otherwise try to load from the library jar.
18                         File tmpdir = new File(System.getProperty("java.io.tmpdir"), "ldk-java-nativelib");
19                         tmpdir.mkdir(); // If it fails to create, assume it was there already
20                         tmpdir.deleteOnExit();
21                         String libname = "liblightningjni_" + System.getProperty("os.name").replaceAll(" ", "") +
22                                 "-" + System.getProperty("os.arch").replaceAll(" ", "") + ".nativelib";
23                         try (InputStream is = bindings.class.getResourceAsStream("/" + libname)) {
24                                 Path libpath = new File(tmpdir.toPath().toString(), "liblightningjni.so").toPath();
25                                 Files.copy(is, libpath, StandardCopyOption.REPLACE_EXISTING);
26                                 Runtime.getRuntime().load(libpath.toString());
27                         } catch (Exception e) {
28                                 System.err.println("Failed to load LDK native library.");
29                                 System.err.println("System LDK native library load failed with: " + system_load_err);
30                                 System.err.println("Resource-based LDK native library load failed with: " + e);
31                                 throw new IllegalArgumentException(e);
32                         }
33                 }
34                 init(java.lang.Enum.class);
35                 init_class_cache();
36                 if (!get_lib_version_string().equals(version.get_ldk_java_bindings_version()))
37                         throw new IllegalArgumentException("Compiled LDK library and LDK class failes do not match");
38                 // Fetching the LDK versions from C also checks that the header and binaries match
39                 System.err.println("Loaded LDK-Java Bindings " + version.get_ldk_java_bindings_version() + " with LDK " + get_ldk_version() + " and LDK-C-Bindings " + get_ldk_c_bindings_version());
40         }
41         static native void init(java.lang.Class c);
42         static native void init_class_cache();
43         static native String get_lib_version_string();
44
45         public static native String get_ldk_c_bindings_version();
46         public static native String get_ldk_version();
47
48         static { Bolt11SemanticError.values(); /* Force enum statics to run */ }
49         static { Bolt12SemanticError.values(); /* Force enum statics to run */ }
50         static { COption_NoneZ.values(); /* Force enum statics to run */ }
51         static { ChannelMonitorUpdateStatus.values(); /* Force enum statics to run */ }
52         static { ChannelShutdownState.values(); /* Force enum statics to run */ }
53         static { ConfirmationTarget.values(); /* Force enum statics to run */ }
54         static { CreationError.values(); /* Force enum statics to run */ }
55         static { Currency.values(); /* Force enum statics to run */ }
56         static { HTLCClaim.values(); /* Force enum statics to run */ }
57         static { IOError.values(); /* Force enum statics to run */ }
58         static { Level.values(); /* Force enum statics to run */ }
59         static { Network.values(); /* Force enum statics to run */ }
60         static { PaymentFailureReason.values(); /* Force enum statics to run */ }
61         static { Recipient.values(); /* Force enum statics to run */ }
62         static { RetryableSendFailure.values(); /* Force enum statics to run */ }
63         static { Secp256k1Error.values(); /* Force enum statics to run */ }
64         static { SiPrefix.values(); /* Force enum statics to run */ }
65         static { SocketAddressParseError.values(); /* Force enum statics to run */ }
66         static { UtxoLookupError.values(); /* Force enum statics to run */ }
67         // struct LDKThirtyTwoBytes BigEndianScalar_get_bytes (struct LDKBigEndianScalar* thing)
68         public static native byte[] BigEndianScalar_get_bytes(long thing);
69         // static void BigEndianScalar_free (struct LDKBigEndianScalar thing)
70         public static native void BigEndianScalar_free(long thing);
71         public static class LDKBech32Error {
72                 private LDKBech32Error() {}
73                 public final static class MissingSeparator extends LDKBech32Error {
74                         MissingSeparator() { }
75                 }
76                 public final static class InvalidChecksum extends LDKBech32Error {
77                         InvalidChecksum() { }
78                 }
79                 public final static class InvalidLength extends LDKBech32Error {
80                         InvalidLength() { }
81                 }
82                 public final static class InvalidChar extends LDKBech32Error {
83                         public int invalid_char;
84                         InvalidChar(int invalid_char) { this.invalid_char = invalid_char; }
85                 }
86                 public final static class InvalidData extends LDKBech32Error {
87                         public byte invalid_data;
88                         InvalidData(byte invalid_data) { this.invalid_data = invalid_data; }
89                 }
90                 public final static class InvalidPadding extends LDKBech32Error {
91                         InvalidPadding() { }
92                 }
93                 public final static class MixedCase extends LDKBech32Error {
94                         MixedCase() { }
95                 }
96                 static native void init();
97         }
98         static { LDKBech32Error.init(); }
99         public static native LDKBech32Error LDKBech32Error_ref_from_ptr(long ptr);
100         // struct LDKWitness TxIn_get_witness (struct LDKTxIn* thing)
101         public static native byte[] TxIn_get_witness(long thing);
102         // struct LDKCVec_u8Z TxIn_get_script_sig (struct LDKTxIn* thing)
103         public static native byte[] TxIn_get_script_sig(long thing);
104         // LDKThirtyTwoBytes TxIn_get_previous_txid (struct LDKTxIn* thing)
105         public static native byte[] TxIn_get_previous_txid(long thing);
106         // uint32_t TxIn_get_previous_vout (struct LDKTxIn* thing)
107         public static native int TxIn_get_previous_vout(long thing);
108         // uint32_t TxIn_get_sequence (struct LDKTxIn* thing)
109         public static native int TxIn_get_sequence(long thing);
110         // struct LDKCVec_u8Z TxOut_get_script_pubkey (struct LDKTxOut* thing)
111         public static native byte[] TxOut_get_script_pubkey(long thing);
112         // uint64_t TxOut_get_value (struct LDKTxOut* thing)
113         public static native long TxOut_get_value(long thing);
114         public static class LDKCOption_u64Z {
115                 private LDKCOption_u64Z() {}
116                 public final static class Some extends LDKCOption_u64Z {
117                         public long some;
118                         Some(long some) { this.some = some; }
119                 }
120                 public final static class None extends LDKCOption_u64Z {
121                         None() { }
122                 }
123                 static native void init();
124         }
125         static { LDKCOption_u64Z.init(); }
126         public static native LDKCOption_u64Z LDKCOption_u64Z_ref_from_ptr(long ptr);
127         // struct LDKRefund CResult_RefundBolt12ParseErrorZ_get_ok(LDKCResult_RefundBolt12ParseErrorZ *NONNULL_PTR owner);
128         public static native long CResult_RefundBolt12ParseErrorZ_get_ok(long owner);
129         // struct LDKBolt12ParseError CResult_RefundBolt12ParseErrorZ_get_err(LDKCResult_RefundBolt12ParseErrorZ *NONNULL_PTR owner);
130         public static native long CResult_RefundBolt12ParseErrorZ_get_err(long owner);
131         public static class LDKRetry {
132                 private LDKRetry() {}
133                 public final static class Attempts extends LDKRetry {
134                         public int attempts;
135                         Attempts(int attempts) { this.attempts = attempts; }
136                 }
137                 public final static class Timeout extends LDKRetry {
138                         public long timeout;
139                         Timeout(long timeout) { this.timeout = timeout; }
140                 }
141                 static native void init();
142         }
143         static { LDKRetry.init(); }
144         public static native LDKRetry LDKRetry_ref_from_ptr(long ptr);
145         public static class LDKDecodeError {
146                 private LDKDecodeError() {}
147                 public final static class UnknownVersion extends LDKDecodeError {
148                         UnknownVersion() { }
149                 }
150                 public final static class UnknownRequiredFeature extends LDKDecodeError {
151                         UnknownRequiredFeature() { }
152                 }
153                 public final static class InvalidValue extends LDKDecodeError {
154                         InvalidValue() { }
155                 }
156                 public final static class ShortRead extends LDKDecodeError {
157                         ShortRead() { }
158                 }
159                 public final static class BadLengthDescriptor extends LDKDecodeError {
160                         BadLengthDescriptor() { }
161                 }
162                 public final static class Io extends LDKDecodeError {
163                         public org.ldk.enums.IOError io;
164                         Io(org.ldk.enums.IOError io) { this.io = io; }
165                 }
166                 public final static class UnsupportedCompression extends LDKDecodeError {
167                         UnsupportedCompression() { }
168                 }
169                 static native void init();
170         }
171         static { LDKDecodeError.init(); }
172         public static native LDKDecodeError LDKDecodeError_ref_from_ptr(long ptr);
173         // struct LDKRetry CResult_RetryDecodeErrorZ_get_ok(LDKCResult_RetryDecodeErrorZ *NONNULL_PTR owner);
174         public static native long CResult_RetryDecodeErrorZ_get_ok(long owner);
175         // struct LDKDecodeError CResult_RetryDecodeErrorZ_get_err(LDKCResult_RetryDecodeErrorZ *NONNULL_PTR owner);
176         public static native long CResult_RetryDecodeErrorZ_get_err(long owner);
177         public static class LDKAPIError {
178                 private LDKAPIError() {}
179                 public final static class APIMisuseError extends LDKAPIError {
180                         public java.lang.String err;
181                         APIMisuseError(java.lang.String err) { this.err = err; }
182                 }
183                 public final static class FeeRateTooHigh extends LDKAPIError {
184                         public java.lang.String err;
185                         public int feerate;
186                         FeeRateTooHigh(java.lang.String err, int feerate) { this.err = err; this.feerate = feerate; }
187                 }
188                 public final static class InvalidRoute extends LDKAPIError {
189                         public java.lang.String err;
190                         InvalidRoute(java.lang.String err) { this.err = err; }
191                 }
192                 public final static class ChannelUnavailable extends LDKAPIError {
193                         public java.lang.String err;
194                         ChannelUnavailable(java.lang.String err) { this.err = err; }
195                 }
196                 public final static class MonitorUpdateInProgress extends LDKAPIError {
197                         MonitorUpdateInProgress() { }
198                 }
199                 public final static class IncompatibleShutdownScript extends LDKAPIError {
200                         public long script;
201                         IncompatibleShutdownScript(long script) { this.script = script; }
202                 }
203                 static native void init();
204         }
205         static { LDKAPIError.init(); }
206         public static native LDKAPIError LDKAPIError_ref_from_ptr(long ptr);
207         // void CResult_NoneAPIErrorZ_get_ok(LDKCResult_NoneAPIErrorZ *NONNULL_PTR owner);
208         public static native void CResult_NoneAPIErrorZ_get_ok(long owner);
209         // struct LDKAPIError CResult_NoneAPIErrorZ_get_err(LDKCResult_NoneAPIErrorZ *NONNULL_PTR owner);
210         public static native long CResult_NoneAPIErrorZ_get_err(long owner);
211         public static class LDKCOption_ThirtyTwoBytesZ {
212                 private LDKCOption_ThirtyTwoBytesZ() {}
213                 public final static class Some extends LDKCOption_ThirtyTwoBytesZ {
214                         public byte[] some;
215                         Some(byte[] some) { this.some = some; }
216                 }
217                 public final static class None extends LDKCOption_ThirtyTwoBytesZ {
218                         None() { }
219                 }
220                 static native void init();
221         }
222         static { LDKCOption_ThirtyTwoBytesZ.init(); }
223         public static native LDKCOption_ThirtyTwoBytesZ LDKCOption_ThirtyTwoBytesZ_ref_from_ptr(long ptr);
224         public static class LDKCOption_CVec_u8ZZ {
225                 private LDKCOption_CVec_u8ZZ() {}
226                 public final static class Some extends LDKCOption_CVec_u8ZZ {
227                         public byte[] some;
228                         Some(byte[] some) { this.some = some; }
229                 }
230                 public final static class None extends LDKCOption_CVec_u8ZZ {
231                         None() { }
232                 }
233                 static native void init();
234         }
235         static { LDKCOption_CVec_u8ZZ.init(); }
236         public static native LDKCOption_CVec_u8ZZ LDKCOption_CVec_u8ZZ_ref_from_ptr(long ptr);
237         // struct LDKRecipientOnionFields CResult_RecipientOnionFieldsDecodeErrorZ_get_ok(LDKCResult_RecipientOnionFieldsDecodeErrorZ *NONNULL_PTR owner);
238         public static native long CResult_RecipientOnionFieldsDecodeErrorZ_get_ok(long owner);
239         // struct LDKDecodeError CResult_RecipientOnionFieldsDecodeErrorZ_get_err(LDKCResult_RecipientOnionFieldsDecodeErrorZ *NONNULL_PTR owner);
240         public static native long CResult_RecipientOnionFieldsDecodeErrorZ_get_err(long owner);
241         // uint64_t C2Tuple_u64CVec_u8ZZ_get_a(LDKC2Tuple_u64CVec_u8ZZ *NONNULL_PTR owner);
242         public static native long C2Tuple_u64CVec_u8ZZ_get_a(long owner);
243         // struct LDKCVec_u8Z C2Tuple_u64CVec_u8ZZ_get_b(LDKC2Tuple_u64CVec_u8ZZ *NONNULL_PTR owner);
244         public static native byte[] C2Tuple_u64CVec_u8ZZ_get_b(long owner);
245         // struct LDKRecipientOnionFields CResult_RecipientOnionFieldsNoneZ_get_ok(LDKCResult_RecipientOnionFieldsNoneZ *NONNULL_PTR owner);
246         public static native long CResult_RecipientOnionFieldsNoneZ_get_ok(long owner);
247         // void CResult_RecipientOnionFieldsNoneZ_get_err(LDKCResult_RecipientOnionFieldsNoneZ *NONNULL_PTR owner);
248         public static native void CResult_RecipientOnionFieldsNoneZ_get_err(long owner);
249         public static class LDKCOption_CVec_ThirtyTwoBytesZZ {
250                 private LDKCOption_CVec_ThirtyTwoBytesZZ() {}
251                 public final static class Some extends LDKCOption_CVec_ThirtyTwoBytesZZ {
252                         public byte[][] some;
253                         Some(byte[][] some) { this.some = some; }
254                 }
255                 public final static class None extends LDKCOption_CVec_ThirtyTwoBytesZZ {
256                         None() { }
257                 }
258                 static native void init();
259         }
260         static { LDKCOption_CVec_ThirtyTwoBytesZZ.init(); }
261         public static native LDKCOption_CVec_ThirtyTwoBytesZZ LDKCOption_CVec_ThirtyTwoBytesZZ_ref_from_ptr(long ptr);
262         // struct LDKThirtyTwoBytes CResult_ThirtyTwoBytesNoneZ_get_ok(LDKCResult_ThirtyTwoBytesNoneZ *NONNULL_PTR owner);
263         public static native byte[] CResult_ThirtyTwoBytesNoneZ_get_ok(long owner);
264         // void CResult_ThirtyTwoBytesNoneZ_get_err(LDKCResult_ThirtyTwoBytesNoneZ *NONNULL_PTR owner);
265         public static native void CResult_ThirtyTwoBytesNoneZ_get_err(long owner);
266         // struct LDKBlindedPayInfo CResult_BlindedPayInfoDecodeErrorZ_get_ok(LDKCResult_BlindedPayInfoDecodeErrorZ *NONNULL_PTR owner);
267         public static native long CResult_BlindedPayInfoDecodeErrorZ_get_ok(long owner);
268         // struct LDKDecodeError CResult_BlindedPayInfoDecodeErrorZ_get_err(LDKCResult_BlindedPayInfoDecodeErrorZ *NONNULL_PTR owner);
269         public static native long CResult_BlindedPayInfoDecodeErrorZ_get_err(long owner);
270         // struct LDKDelayedPaymentOutputDescriptor CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_ok(LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
271         public static native long CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_ok(long owner);
272         // struct LDKDecodeError CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_err(LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
273         public static native long CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_err(long owner);
274         // struct LDKStaticPaymentOutputDescriptor CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_ok(LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
275         public static native long CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_ok(long owner);
276         // struct LDKDecodeError CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_err(LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
277         public static native long CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_err(long owner);
278         public static class LDKSpendableOutputDescriptor {
279                 private LDKSpendableOutputDescriptor() {}
280                 public final static class StaticOutput extends LDKSpendableOutputDescriptor {
281                         public long outpoint;
282                         public long output;
283                         StaticOutput(long outpoint, long output) { this.outpoint = outpoint; this.output = output; }
284                 }
285                 public final static class DelayedPaymentOutput extends LDKSpendableOutputDescriptor {
286                         public long delayed_payment_output;
287                         DelayedPaymentOutput(long delayed_payment_output) { this.delayed_payment_output = delayed_payment_output; }
288                 }
289                 public final static class StaticPaymentOutput extends LDKSpendableOutputDescriptor {
290                         public long static_payment_output;
291                         StaticPaymentOutput(long static_payment_output) { this.static_payment_output = static_payment_output; }
292                 }
293                 static native void init();
294         }
295         static { LDKSpendableOutputDescriptor.init(); }
296         public static native LDKSpendableOutputDescriptor LDKSpendableOutputDescriptor_ref_from_ptr(long ptr);
297         // struct LDKSpendableOutputDescriptor CResult_SpendableOutputDescriptorDecodeErrorZ_get_ok(LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
298         public static native long CResult_SpendableOutputDescriptorDecodeErrorZ_get_ok(long owner);
299         // struct LDKDecodeError CResult_SpendableOutputDescriptorDecodeErrorZ_get_err(LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
300         public static native long CResult_SpendableOutputDescriptorDecodeErrorZ_get_err(long owner);
301         public static class LDKCOption_u32Z {
302                 private LDKCOption_u32Z() {}
303                 public final static class Some extends LDKCOption_u32Z {
304                         public int some;
305                         Some(int some) { this.some = some; }
306                 }
307                 public final static class None extends LDKCOption_u32Z {
308                         None() { }
309                 }
310                 static native void init();
311         }
312         static { LDKCOption_u32Z.init(); }
313         public static native LDKCOption_u32Z LDKCOption_u32Z_ref_from_ptr(long ptr);
314         // struct LDKCVec_u8Z C2Tuple_CVec_u8ZusizeZ_get_a(LDKC2Tuple_CVec_u8ZusizeZ *NONNULL_PTR owner);
315         public static native byte[] C2Tuple_CVec_u8ZusizeZ_get_a(long owner);
316         // uintptr_t C2Tuple_CVec_u8ZusizeZ_get_b(LDKC2Tuple_CVec_u8ZusizeZ *NONNULL_PTR owner);
317         public static native long C2Tuple_CVec_u8ZusizeZ_get_b(long owner);
318         // struct LDKC2Tuple_CVec_u8ZusizeZ CResult_C2Tuple_CVec_u8ZusizeZNoneZ_get_ok(LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ *NONNULL_PTR owner);
319         public static native long CResult_C2Tuple_CVec_u8ZusizeZNoneZ_get_ok(long owner);
320         // void CResult_C2Tuple_CVec_u8ZusizeZNoneZ_get_err(LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ *NONNULL_PTR owner);
321         public static native void CResult_C2Tuple_CVec_u8ZusizeZNoneZ_get_err(long owner);
322         // void CResult_NoneNoneZ_get_ok(LDKCResult_NoneNoneZ *NONNULL_PTR owner);
323         public static native void CResult_NoneNoneZ_get_ok(long owner);
324         // void CResult_NoneNoneZ_get_err(LDKCResult_NoneNoneZ *NONNULL_PTR owner);
325         public static native void CResult_NoneNoneZ_get_err(long owner);
326         // struct LDKECDSASignature C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_get_a(LDKC2Tuple_ECDSASignatureCVec_ECDSASignatureZZ *NONNULL_PTR owner);
327         public static native byte[] C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_get_a(long owner);
328         // struct LDKCVec_ECDSASignatureZ C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_get_b(LDKC2Tuple_ECDSASignatureCVec_ECDSASignatureZZ *NONNULL_PTR owner);
329         public static native byte[][] C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_get_b(long owner);
330         // struct LDKC2Tuple_ECDSASignatureCVec_ECDSASignatureZZ CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_get_ok(LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ *NONNULL_PTR owner);
331         public static native long CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_get_ok(long owner);
332         // void CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_get_err(LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ *NONNULL_PTR owner);
333         public static native void CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_get_err(long owner);
334         // struct LDKECDSASignature CResult_ECDSASignatureNoneZ_get_ok(LDKCResult_ECDSASignatureNoneZ *NONNULL_PTR owner);
335         public static native byte[] CResult_ECDSASignatureNoneZ_get_ok(long owner);
336         // void CResult_ECDSASignatureNoneZ_get_err(LDKCResult_ECDSASignatureNoneZ *NONNULL_PTR owner);
337         public static native void CResult_ECDSASignatureNoneZ_get_err(long owner);
338         // struct LDKPublicKey CResult_PublicKeyNoneZ_get_ok(LDKCResult_PublicKeyNoneZ *NONNULL_PTR owner);
339         public static native byte[] CResult_PublicKeyNoneZ_get_ok(long owner);
340         // void CResult_PublicKeyNoneZ_get_err(LDKCResult_PublicKeyNoneZ *NONNULL_PTR owner);
341         public static native void CResult_PublicKeyNoneZ_get_err(long owner);
342         public static class LDKCOption_BigEndianScalarZ {
343                 private LDKCOption_BigEndianScalarZ() {}
344                 public final static class Some extends LDKCOption_BigEndianScalarZ {
345                         public long some;
346                         Some(long some) { this.some = some; }
347                 }
348                 public final static class None extends LDKCOption_BigEndianScalarZ {
349                         None() { }
350                 }
351                 static native void init();
352         }
353         static { LDKCOption_BigEndianScalarZ.init(); }
354         public static native LDKCOption_BigEndianScalarZ LDKCOption_BigEndianScalarZ_ref_from_ptr(long ptr);
355         // struct LDKRecoverableSignature CResult_RecoverableSignatureNoneZ_get_ok(LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR owner);
356         public static native byte[] CResult_RecoverableSignatureNoneZ_get_ok(long owner);
357         // void CResult_RecoverableSignatureNoneZ_get_err(LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR owner);
358         public static native void CResult_RecoverableSignatureNoneZ_get_err(long owner);
359         // struct LDKSchnorrSignature CResult_SchnorrSignatureNoneZ_get_ok(LDKCResult_SchnorrSignatureNoneZ *NONNULL_PTR owner);
360         public static native byte[] CResult_SchnorrSignatureNoneZ_get_ok(long owner);
361         // void CResult_SchnorrSignatureNoneZ_get_err(LDKCResult_SchnorrSignatureNoneZ *NONNULL_PTR owner);
362         public static native void CResult_SchnorrSignatureNoneZ_get_err(long owner);
363         public interface LDKChannelSigner {
364                  byte[] get_per_commitment_point(long idx);
365                  byte[] release_commitment_secret(long idx);
366                  long validate_holder_commitment(long holder_tx, byte[][] preimages);
367                  byte[] channel_keys_id();
368                  void provide_channel_parameters(long channel_parameters);
369         }
370         public static native long LDKChannelSigner_new(LDKChannelSigner impl, long pubkeys);
371         // LDKPublicKey ChannelSigner_get_per_commitment_point LDKChannelSigner *NONNULL_PTR this_arg, uint64_t idx
372         public static native byte[] ChannelSigner_get_per_commitment_point(long this_arg, long idx);
373         // LDKThirtyTwoBytes ChannelSigner_release_commitment_secret LDKChannelSigner *NONNULL_PTR this_arg, uint64_t idx
374         public static native byte[] ChannelSigner_release_commitment_secret(long this_arg, long idx);
375         // LDKCResult_NoneNoneZ ChannelSigner_validate_holder_commitment LDKChannelSigner *NONNULL_PTR this_arg, const struct LDKHolderCommitmentTransaction *NONNULL_PTR holder_tx, struct LDKCVec_ThirtyTwoBytesZ preimages
376         public static native long ChannelSigner_validate_holder_commitment(long this_arg, long holder_tx, byte[][] preimages);
377         // LDKThirtyTwoBytes ChannelSigner_channel_keys_id LDKChannelSigner *NONNULL_PTR this_arg
378         public static native byte[] ChannelSigner_channel_keys_id(long this_arg);
379         // void ChannelSigner_provide_channel_parameters LDKChannelSigner *NONNULL_PTR this_arg, const struct LDKChannelTransactionParameters *NONNULL_PTR channel_parameters
380         public static native void ChannelSigner_provide_channel_parameters(long this_arg, long channel_parameters);
381         // LDKChannelPublicKeys ChannelSigner_get_pubkeys LDKChannelSigner *NONNULL_PTR this_arg
382         public static native long ChannelSigner_get_pubkeys(long this_arg);
383         public interface LDKEcdsaChannelSigner {
384                  long sign_counterparty_commitment(long commitment_tx, byte[][] preimages);
385                  long validate_counterparty_revocation(long idx, byte[] secret);
386                  long sign_holder_commitment_and_htlcs(long commitment_tx);
387                  long sign_justice_revoked_output(byte[] justice_tx, long input, long amount, byte[] per_commitment_key);
388                  long sign_justice_revoked_htlc(byte[] justice_tx, long input, long amount, byte[] per_commitment_key, long htlc);
389                  long sign_holder_htlc_transaction(byte[] htlc_tx, long input, long htlc_descriptor);
390                  long sign_counterparty_htlc_transaction(byte[] htlc_tx, long input, long amount, byte[] per_commitment_point, long htlc);
391                  long sign_closing_transaction(long closing_tx);
392                  long sign_holder_anchor_input(byte[] anchor_tx, long input);
393                  long sign_channel_announcement_with_funding_key(long msg);
394         }
395         public static native long LDKEcdsaChannelSigner_new(LDKEcdsaChannelSigner impl, LDKChannelSigner ChannelSigner, long pubkeys);
396         public static native long LDKEcdsaChannelSigner_get_ChannelSigner(long arg);
397         // LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ EcdsaChannelSigner_sign_counterparty_commitment LDKEcdsaChannelSigner *NONNULL_PTR this_arg, const struct LDKCommitmentTransaction *NONNULL_PTR commitment_tx, struct LDKCVec_ThirtyTwoBytesZ preimages
398         public static native long EcdsaChannelSigner_sign_counterparty_commitment(long this_arg, long commitment_tx, byte[][] preimages);
399         // LDKCResult_NoneNoneZ EcdsaChannelSigner_validate_counterparty_revocation LDKEcdsaChannelSigner *NONNULL_PTR this_arg, uint64_t idx, const uint8_t (*secret)[32]
400         public static native long EcdsaChannelSigner_validate_counterparty_revocation(long this_arg, long idx, byte[] secret);
401         // LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ EcdsaChannelSigner_sign_holder_commitment_and_htlcs LDKEcdsaChannelSigner *NONNULL_PTR this_arg, const struct LDKHolderCommitmentTransaction *NONNULL_PTR commitment_tx
402         public static native long EcdsaChannelSigner_sign_holder_commitment_and_htlcs(long this_arg, long commitment_tx);
403         // LDKCResult_ECDSASignatureNoneZ EcdsaChannelSigner_sign_justice_revoked_output LDKEcdsaChannelSigner *NONNULL_PTR this_arg, struct LDKTransaction justice_tx, uintptr_t input, uint64_t amount, const uint8_t (*per_commitment_key)[32]
404         public static native long EcdsaChannelSigner_sign_justice_revoked_output(long this_arg, byte[] justice_tx, long input, long amount, byte[] per_commitment_key);
405         // LDKCResult_ECDSASignatureNoneZ EcdsaChannelSigner_sign_justice_revoked_htlc LDKEcdsaChannelSigner *NONNULL_PTR this_arg, struct LDKTransaction justice_tx, uintptr_t input, uint64_t amount, const uint8_t (*per_commitment_key)[32], const struct LDKHTLCOutputInCommitment *NONNULL_PTR htlc
406         public static native long EcdsaChannelSigner_sign_justice_revoked_htlc(long this_arg, byte[] justice_tx, long input, long amount, byte[] per_commitment_key, long htlc);
407         // LDKCResult_ECDSASignatureNoneZ EcdsaChannelSigner_sign_holder_htlc_transaction LDKEcdsaChannelSigner *NONNULL_PTR this_arg, struct LDKTransaction htlc_tx, uintptr_t input, const struct LDKHTLCDescriptor *NONNULL_PTR htlc_descriptor
408         public static native long EcdsaChannelSigner_sign_holder_htlc_transaction(long this_arg, byte[] htlc_tx, long input, long htlc_descriptor);
409         // LDKCResult_ECDSASignatureNoneZ EcdsaChannelSigner_sign_counterparty_htlc_transaction LDKEcdsaChannelSigner *NONNULL_PTR this_arg, struct LDKTransaction htlc_tx, uintptr_t input, uint64_t amount, struct LDKPublicKey per_commitment_point, const struct LDKHTLCOutputInCommitment *NONNULL_PTR htlc
410         public static native long EcdsaChannelSigner_sign_counterparty_htlc_transaction(long this_arg, byte[] htlc_tx, long input, long amount, byte[] per_commitment_point, long htlc);
411         // LDKCResult_ECDSASignatureNoneZ EcdsaChannelSigner_sign_closing_transaction LDKEcdsaChannelSigner *NONNULL_PTR this_arg, const struct LDKClosingTransaction *NONNULL_PTR closing_tx
412         public static native long EcdsaChannelSigner_sign_closing_transaction(long this_arg, long closing_tx);
413         // LDKCResult_ECDSASignatureNoneZ EcdsaChannelSigner_sign_holder_anchor_input LDKEcdsaChannelSigner *NONNULL_PTR this_arg, struct LDKTransaction anchor_tx, uintptr_t input
414         public static native long EcdsaChannelSigner_sign_holder_anchor_input(long this_arg, byte[] anchor_tx, long input);
415         // LDKCResult_ECDSASignatureNoneZ EcdsaChannelSigner_sign_channel_announcement_with_funding_key LDKEcdsaChannelSigner *NONNULL_PTR this_arg, const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR msg
416         public static native long EcdsaChannelSigner_sign_channel_announcement_with_funding_key(long this_arg, long msg);
417         public interface LDKWriteableEcdsaChannelSigner {
418                  byte[] write();
419         }
420         public static native long LDKWriteableEcdsaChannelSigner_new(LDKWriteableEcdsaChannelSigner impl, LDKEcdsaChannelSigner EcdsaChannelSigner, LDKChannelSigner ChannelSigner, long pubkeys);
421         public static native long LDKWriteableEcdsaChannelSigner_get_EcdsaChannelSigner(long arg);
422         public static native long LDKWriteableEcdsaChannelSigner_get_ChannelSigner(long arg);
423         // LDKCVec_u8Z WriteableEcdsaChannelSigner_write LDKWriteableEcdsaChannelSigner *NONNULL_PTR this_arg
424         public static native byte[] WriteableEcdsaChannelSigner_write(long this_arg);
425         // struct LDKWriteableEcdsaChannelSigner CResult_WriteableEcdsaChannelSignerDecodeErrorZ_get_ok(LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ *NONNULL_PTR owner);
426         public static native long CResult_WriteableEcdsaChannelSignerDecodeErrorZ_get_ok(long owner);
427         // struct LDKDecodeError CResult_WriteableEcdsaChannelSignerDecodeErrorZ_get_err(LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ *NONNULL_PTR owner);
428         public static native long CResult_WriteableEcdsaChannelSignerDecodeErrorZ_get_err(long owner);
429         // struct LDKCVec_u8Z CResult_CVec_u8ZNoneZ_get_ok(LDKCResult_CVec_u8ZNoneZ *NONNULL_PTR owner);
430         public static native byte[] CResult_CVec_u8ZNoneZ_get_ok(long owner);
431         // void CResult_CVec_u8ZNoneZ_get_err(LDKCResult_CVec_u8ZNoneZ *NONNULL_PTR owner);
432         public static native void CResult_CVec_u8ZNoneZ_get_err(long owner);
433         // struct LDKShutdownScript CResult_ShutdownScriptNoneZ_get_ok(LDKCResult_ShutdownScriptNoneZ *NONNULL_PTR owner);
434         public static native long CResult_ShutdownScriptNoneZ_get_ok(long owner);
435         // void CResult_ShutdownScriptNoneZ_get_err(LDKCResult_ShutdownScriptNoneZ *NONNULL_PTR owner);
436         public static native void CResult_ShutdownScriptNoneZ_get_err(long owner);
437         public static class LDKCOption_u16Z {
438                 private LDKCOption_u16Z() {}
439                 public final static class Some extends LDKCOption_u16Z {
440                         public short some;
441                         Some(short some) { this.some = some; }
442                 }
443                 public final static class None extends LDKCOption_u16Z {
444                         None() { }
445                 }
446                 static native void init();
447         }
448         static { LDKCOption_u16Z.init(); }
449         public static native LDKCOption_u16Z LDKCOption_u16Z_ref_from_ptr(long ptr);
450         public static class LDKCOption_boolZ {
451                 private LDKCOption_boolZ() {}
452                 public final static class Some extends LDKCOption_boolZ {
453                         public boolean some;
454                         Some(boolean some) { this.some = some; }
455                 }
456                 public final static class None extends LDKCOption_boolZ {
457                         None() { }
458                 }
459                 static native void init();
460         }
461         static { LDKCOption_boolZ.init(); }
462         public static native LDKCOption_boolZ LDKCOption_boolZ_ref_from_ptr(long ptr);
463         // struct LDKCVec_CVec_u8ZZ CResult_CVec_CVec_u8ZZNoneZ_get_ok(LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR owner);
464         public static native byte[][] CResult_CVec_CVec_u8ZZNoneZ_get_ok(long owner);
465         // void CResult_CVec_CVec_u8ZZNoneZ_get_err(LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR owner);
466         public static native void CResult_CVec_CVec_u8ZZNoneZ_get_err(long owner);
467         // struct LDKInMemorySigner CResult_InMemorySignerDecodeErrorZ_get_ok(LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR owner);
468         public static native long CResult_InMemorySignerDecodeErrorZ_get_ok(long owner);
469         // struct LDKDecodeError CResult_InMemorySignerDecodeErrorZ_get_err(LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR owner);
470         public static native long CResult_InMemorySignerDecodeErrorZ_get_err(long owner);
471         // struct LDKTransaction CResult_TransactionNoneZ_get_ok(LDKCResult_TransactionNoneZ *NONNULL_PTR owner);
472         public static native byte[] CResult_TransactionNoneZ_get_ok(long owner);
473         // void CResult_TransactionNoneZ_get_err(LDKCResult_TransactionNoneZ *NONNULL_PTR owner);
474         public static native void CResult_TransactionNoneZ_get_err(long owner);
475         public interface LDKScoreLookUp {
476                  long channel_penalty_msat(long short_channel_id, long source, long target, long usage, long score_params);
477         }
478         public static native long LDKScoreLookUp_new(LDKScoreLookUp impl);
479         // uint64_t ScoreLookUp_channel_penalty_msat LDKScoreLookUp *NONNULL_PTR this_arg, uint64_t short_channel_id, const struct LDKNodeId *NONNULL_PTR source, const struct LDKNodeId *NONNULL_PTR target, struct LDKChannelUsage usage, const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR score_params
480         public static native long ScoreLookUp_channel_penalty_msat(long this_arg, long short_channel_id, long source, long target, long usage, long score_params);
481         public interface LDKScoreUpdate {
482                  void payment_path_failed(long path, long short_channel_id);
483                  void payment_path_successful(long path);
484                  void probe_failed(long path, long short_channel_id);
485                  void probe_successful(long path);
486         }
487         public static native long LDKScoreUpdate_new(LDKScoreUpdate impl);
488         // void ScoreUpdate_payment_path_failed LDKScoreUpdate *NONNULL_PTR this_arg, const struct LDKPath *NONNULL_PTR path, uint64_t short_channel_id
489         public static native void ScoreUpdate_payment_path_failed(long this_arg, long path, long short_channel_id);
490         // void ScoreUpdate_payment_path_successful LDKScoreUpdate *NONNULL_PTR this_arg, const struct LDKPath *NONNULL_PTR path
491         public static native void ScoreUpdate_payment_path_successful(long this_arg, long path);
492         // void ScoreUpdate_probe_failed LDKScoreUpdate *NONNULL_PTR this_arg, const struct LDKPath *NONNULL_PTR path, uint64_t short_channel_id
493         public static native void ScoreUpdate_probe_failed(long this_arg, long path, long short_channel_id);
494         // void ScoreUpdate_probe_successful LDKScoreUpdate *NONNULL_PTR this_arg, const struct LDKPath *NONNULL_PTR path
495         public static native void ScoreUpdate_probe_successful(long this_arg, long path);
496         public interface LDKLockableScore {
497                  long read_lock();
498                  long write_lock();
499         }
500         public static native long LDKLockableScore_new(LDKLockableScore impl);
501         // LDKScoreLookUp LockableScore_read_lock LDKLockableScore *NONNULL_PTR this_arg
502         public static native long LockableScore_read_lock(long this_arg);
503         // LDKScoreUpdate LockableScore_write_lock LDKLockableScore *NONNULL_PTR this_arg
504         public static native long LockableScore_write_lock(long this_arg);
505         public interface LDKWriteableScore {
506                  byte[] write();
507         }
508         public static native long LDKWriteableScore_new(LDKWriteableScore impl, LDKLockableScore LockableScore);
509         public static native long LDKWriteableScore_get_LockableScore(long arg);
510         // LDKCVec_u8Z WriteableScore_write LDKWriteableScore *NONNULL_PTR this_arg
511         public static native byte[] WriteableScore_write(long this_arg);
512         public static class LDKCOption_WriteableScoreZ {
513                 private LDKCOption_WriteableScoreZ() {}
514                 public final static class Some extends LDKCOption_WriteableScoreZ {
515                         public long some;
516                         Some(long some) { this.some = some; }
517                 }
518                 public final static class None extends LDKCOption_WriteableScoreZ {
519                         None() { }
520                 }
521                 static native void init();
522         }
523         static { LDKCOption_WriteableScoreZ.init(); }
524         public static native LDKCOption_WriteableScoreZ LDKCOption_WriteableScoreZ_ref_from_ptr(long ptr);
525         // void CResult_NoneIOErrorZ_get_ok(LDKCResult_NoneIOErrorZ *NONNULL_PTR owner);
526         public static native void CResult_NoneIOErrorZ_get_ok(long owner);
527         // enum LDKIOError CResult_NoneIOErrorZ_get_err(LDKCResult_NoneIOErrorZ *NONNULL_PTR owner);
528         public static native IOError CResult_NoneIOErrorZ_get_err(long owner);
529         // struct LDKRoute CResult_RouteLightningErrorZ_get_ok(LDKCResult_RouteLightningErrorZ *NONNULL_PTR owner);
530         public static native long CResult_RouteLightningErrorZ_get_ok(long owner);
531         // struct LDKLightningError CResult_RouteLightningErrorZ_get_err(LDKCResult_RouteLightningErrorZ *NONNULL_PTR owner);
532         public static native long CResult_RouteLightningErrorZ_get_err(long owner);
533         // struct LDKInFlightHtlcs CResult_InFlightHtlcsDecodeErrorZ_get_ok(LDKCResult_InFlightHtlcsDecodeErrorZ *NONNULL_PTR owner);
534         public static native long CResult_InFlightHtlcsDecodeErrorZ_get_ok(long owner);
535         // struct LDKDecodeError CResult_InFlightHtlcsDecodeErrorZ_get_err(LDKCResult_InFlightHtlcsDecodeErrorZ *NONNULL_PTR owner);
536         public static native long CResult_InFlightHtlcsDecodeErrorZ_get_err(long owner);
537         // struct LDKRouteHop CResult_RouteHopDecodeErrorZ_get_ok(LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR owner);
538         public static native long CResult_RouteHopDecodeErrorZ_get_ok(long owner);
539         // struct LDKDecodeError CResult_RouteHopDecodeErrorZ_get_err(LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR owner);
540         public static native long CResult_RouteHopDecodeErrorZ_get_err(long owner);
541         // struct LDKBlindedTail CResult_BlindedTailDecodeErrorZ_get_ok(LDKCResult_BlindedTailDecodeErrorZ *NONNULL_PTR owner);
542         public static native long CResult_BlindedTailDecodeErrorZ_get_ok(long owner);
543         // struct LDKDecodeError CResult_BlindedTailDecodeErrorZ_get_err(LDKCResult_BlindedTailDecodeErrorZ *NONNULL_PTR owner);
544         public static native long CResult_BlindedTailDecodeErrorZ_get_err(long owner);
545         // struct LDKRoute CResult_RouteDecodeErrorZ_get_ok(LDKCResult_RouteDecodeErrorZ *NONNULL_PTR owner);
546         public static native long CResult_RouteDecodeErrorZ_get_ok(long owner);
547         // struct LDKDecodeError CResult_RouteDecodeErrorZ_get_err(LDKCResult_RouteDecodeErrorZ *NONNULL_PTR owner);
548         public static native long CResult_RouteDecodeErrorZ_get_err(long owner);
549         // struct LDKRouteParameters CResult_RouteParametersDecodeErrorZ_get_ok(LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR owner);
550         public static native long CResult_RouteParametersDecodeErrorZ_get_ok(long owner);
551         // struct LDKDecodeError CResult_RouteParametersDecodeErrorZ_get_err(LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR owner);
552         public static native long CResult_RouteParametersDecodeErrorZ_get_err(long owner);
553         // struct LDKPaymentParameters CResult_PaymentParametersDecodeErrorZ_get_ok(LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR owner);
554         public static native long CResult_PaymentParametersDecodeErrorZ_get_ok(long owner);
555         // struct LDKDecodeError CResult_PaymentParametersDecodeErrorZ_get_err(LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR owner);
556         public static native long CResult_PaymentParametersDecodeErrorZ_get_err(long owner);
557         // struct LDKBlindedPayInfo C2Tuple_BlindedPayInfoBlindedPathZ_get_a(LDKC2Tuple_BlindedPayInfoBlindedPathZ *NONNULL_PTR owner);
558         public static native long C2Tuple_BlindedPayInfoBlindedPathZ_get_a(long owner);
559         // struct LDKBlindedPath C2Tuple_BlindedPayInfoBlindedPathZ_get_b(LDKC2Tuple_BlindedPayInfoBlindedPathZ *NONNULL_PTR owner);
560         public static native long C2Tuple_BlindedPayInfoBlindedPathZ_get_b(long owner);
561         // struct LDKRouteHint CResult_RouteHintDecodeErrorZ_get_ok(LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR owner);
562         public static native long CResult_RouteHintDecodeErrorZ_get_ok(long owner);
563         // struct LDKDecodeError CResult_RouteHintDecodeErrorZ_get_err(LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR owner);
564         public static native long CResult_RouteHintDecodeErrorZ_get_err(long owner);
565         // struct LDKRouteHintHop CResult_RouteHintHopDecodeErrorZ_get_ok(LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR owner);
566         public static native long CResult_RouteHintHopDecodeErrorZ_get_ok(long owner);
567         // struct LDKDecodeError CResult_RouteHintHopDecodeErrorZ_get_err(LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR owner);
568         public static native long CResult_RouteHintHopDecodeErrorZ_get_err(long owner);
569         // struct LDKFixedPenaltyScorer CResult_FixedPenaltyScorerDecodeErrorZ_get_ok(LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR owner);
570         public static native long CResult_FixedPenaltyScorerDecodeErrorZ_get_ok(long owner);
571         // struct LDKDecodeError CResult_FixedPenaltyScorerDecodeErrorZ_get_err(LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR owner);
572         public static native long CResult_FixedPenaltyScorerDecodeErrorZ_get_err(long owner);
573         // uint64_t C2Tuple_u64u64Z_get_a(LDKC2Tuple_u64u64Z *NONNULL_PTR owner);
574         public static native long C2Tuple_u64u64Z_get_a(long owner);
575         // uint64_t C2Tuple_u64u64Z_get_b(LDKC2Tuple_u64u64Z *NONNULL_PTR owner);
576         public static native long C2Tuple_u64u64Z_get_b(long owner);
577         public static class LDKCOption_C2Tuple_u64u64ZZ {
578                 private LDKCOption_C2Tuple_u64u64ZZ() {}
579                 public final static class Some extends LDKCOption_C2Tuple_u64u64ZZ {
580                         public long some;
581                         Some(long some) { this.some = some; }
582                 }
583                 public final static class None extends LDKCOption_C2Tuple_u64u64ZZ {
584                         None() { }
585                 }
586                 static native void init();
587         }
588         static { LDKCOption_C2Tuple_u64u64ZZ.init(); }
589         public static native LDKCOption_C2Tuple_u64u64ZZ LDKCOption_C2Tuple_u64u64ZZ_ref_from_ptr(long ptr);
590         // struct LDKThirtyTwoU16s C2Tuple_Z_get_a(LDKC2Tuple_Z *NONNULL_PTR owner);
591         public static native short[] C2Tuple_Z_get_a(long owner);
592         // struct LDKThirtyTwoU16s C2Tuple_Z_get_b(LDKC2Tuple_Z *NONNULL_PTR owner);
593         public static native short[] C2Tuple_Z_get_b(long owner);
594         // struct LDKThirtyTwoU16s C2Tuple__u1632_u1632Z_get_a(LDKC2Tuple__u1632_u1632Z *NONNULL_PTR owner);
595         public static native short[] C2Tuple__u1632_u1632Z_get_a(long owner);
596         // struct LDKThirtyTwoU16s C2Tuple__u1632_u1632Z_get_b(LDKC2Tuple__u1632_u1632Z *NONNULL_PTR owner);
597         public static native short[] C2Tuple__u1632_u1632Z_get_b(long owner);
598         public static class LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ {
599                 private LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ() {}
600                 public final static class Some extends LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ {
601                         public long some;
602                         Some(long some) { this.some = some; }
603                 }
604                 public final static class None extends LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ {
605                         None() { }
606                 }
607                 static native void init();
608         }
609         static { LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ.init(); }
610         public static native LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ_ref_from_ptr(long ptr);
611         public static class LDKCOption_f64Z {
612                 private LDKCOption_f64Z() {}
613                 public final static class Some extends LDKCOption_f64Z {
614                         public double some;
615                         Some(double some) { this.some = some; }
616                 }
617                 public final static class None extends LDKCOption_f64Z {
618                         None() { }
619                 }
620                 static native void init();
621         }
622         static { LDKCOption_f64Z.init(); }
623         public static native LDKCOption_f64Z LDKCOption_f64Z_ref_from_ptr(long ptr);
624         public interface LDKLogger {
625                  void log(long record);
626         }
627         public static native long LDKLogger_new(LDKLogger impl);
628         // struct LDKProbabilisticScorer CResult_ProbabilisticScorerDecodeErrorZ_get_ok(LDKCResult_ProbabilisticScorerDecodeErrorZ *NONNULL_PTR owner);
629         public static native long CResult_ProbabilisticScorerDecodeErrorZ_get_ok(long owner);
630         // struct LDKDecodeError CResult_ProbabilisticScorerDecodeErrorZ_get_err(LDKCResult_ProbabilisticScorerDecodeErrorZ *NONNULL_PTR owner);
631         public static native long CResult_ProbabilisticScorerDecodeErrorZ_get_err(long owner);
632         // uintptr_t C2Tuple_usizeTransactionZ_get_a(LDKC2Tuple_usizeTransactionZ *NONNULL_PTR owner);
633         public static native long C2Tuple_usizeTransactionZ_get_a(long owner);
634         // struct LDKTransaction C2Tuple_usizeTransactionZ_get_b(LDKC2Tuple_usizeTransactionZ *NONNULL_PTR owner);
635         public static native byte[] C2Tuple_usizeTransactionZ_get_b(long owner);
636         // struct LDKThirtyTwoBytes C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_get_a(LDKC2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ *NONNULL_PTR owner);
637         public static native byte[] C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_get_a(long owner);
638         // struct LDKCOption_ThirtyTwoBytesZ C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_get_b(LDKC2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ *NONNULL_PTR owner);
639         public static native long C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_get_b(long owner);
640         // enum LDKChannelMonitorUpdateStatus CResult_ChannelMonitorUpdateStatusNoneZ_get_ok(LDKCResult_ChannelMonitorUpdateStatusNoneZ *NONNULL_PTR owner);
641         public static native ChannelMonitorUpdateStatus CResult_ChannelMonitorUpdateStatusNoneZ_get_ok(long owner);
642         // void CResult_ChannelMonitorUpdateStatusNoneZ_get_err(LDKCResult_ChannelMonitorUpdateStatusNoneZ *NONNULL_PTR owner);
643         public static native void CResult_ChannelMonitorUpdateStatusNoneZ_get_err(long owner);
644         public static class LDKMonitorEvent {
645                 private LDKMonitorEvent() {}
646                 public final static class HTLCEvent extends LDKMonitorEvent {
647                         public long htlc_event;
648                         HTLCEvent(long htlc_event) { this.htlc_event = htlc_event; }
649                 }
650                 public final static class HolderForceClosed extends LDKMonitorEvent {
651                         public long holder_force_closed;
652                         HolderForceClosed(long holder_force_closed) { this.holder_force_closed = holder_force_closed; }
653                 }
654                 public final static class Completed extends LDKMonitorEvent {
655                         public long funding_txo;
656                         public long monitor_update_id;
657                         Completed(long funding_txo, long monitor_update_id) { this.funding_txo = funding_txo; this.monitor_update_id = monitor_update_id; }
658                 }
659                 static native void init();
660         }
661         static { LDKMonitorEvent.init(); }
662         public static native LDKMonitorEvent LDKMonitorEvent_ref_from_ptr(long ptr);
663         // struct LDKOutPoint C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_a(LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR owner);
664         public static native long C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_a(long owner);
665         // struct LDKCVec_MonitorEventZ C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_b(LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR owner);
666         public static native long[] C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_b(long owner);
667         // struct LDKPublicKey C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_c(LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR owner);
668         public static native byte[] C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_c(long owner);
669         // struct LDKInitFeatures CResult_InitFeaturesDecodeErrorZ_get_ok(LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR owner);
670         public static native long CResult_InitFeaturesDecodeErrorZ_get_ok(long owner);
671         // struct LDKDecodeError CResult_InitFeaturesDecodeErrorZ_get_err(LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR owner);
672         public static native long CResult_InitFeaturesDecodeErrorZ_get_err(long owner);
673         // struct LDKChannelFeatures CResult_ChannelFeaturesDecodeErrorZ_get_ok(LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR owner);
674         public static native long CResult_ChannelFeaturesDecodeErrorZ_get_ok(long owner);
675         // struct LDKDecodeError CResult_ChannelFeaturesDecodeErrorZ_get_err(LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR owner);
676         public static native long CResult_ChannelFeaturesDecodeErrorZ_get_err(long owner);
677         // struct LDKNodeFeatures CResult_NodeFeaturesDecodeErrorZ_get_ok(LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR owner);
678         public static native long CResult_NodeFeaturesDecodeErrorZ_get_ok(long owner);
679         // struct LDKDecodeError CResult_NodeFeaturesDecodeErrorZ_get_err(LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR owner);
680         public static native long CResult_NodeFeaturesDecodeErrorZ_get_err(long owner);
681         // struct LDKBolt11InvoiceFeatures CResult_Bolt11InvoiceFeaturesDecodeErrorZ_get_ok(LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ *NONNULL_PTR owner);
682         public static native long CResult_Bolt11InvoiceFeaturesDecodeErrorZ_get_ok(long owner);
683         // struct LDKDecodeError CResult_Bolt11InvoiceFeaturesDecodeErrorZ_get_err(LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ *NONNULL_PTR owner);
684         public static native long CResult_Bolt11InvoiceFeaturesDecodeErrorZ_get_err(long owner);
685         // struct LDKBolt12InvoiceFeatures CResult_Bolt12InvoiceFeaturesDecodeErrorZ_get_ok(LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ *NONNULL_PTR owner);
686         public static native long CResult_Bolt12InvoiceFeaturesDecodeErrorZ_get_ok(long owner);
687         // struct LDKDecodeError CResult_Bolt12InvoiceFeaturesDecodeErrorZ_get_err(LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ *NONNULL_PTR owner);
688         public static native long CResult_Bolt12InvoiceFeaturesDecodeErrorZ_get_err(long owner);
689         // struct LDKBlindedHopFeatures CResult_BlindedHopFeaturesDecodeErrorZ_get_ok(LDKCResult_BlindedHopFeaturesDecodeErrorZ *NONNULL_PTR owner);
690         public static native long CResult_BlindedHopFeaturesDecodeErrorZ_get_ok(long owner);
691         // struct LDKDecodeError CResult_BlindedHopFeaturesDecodeErrorZ_get_err(LDKCResult_BlindedHopFeaturesDecodeErrorZ *NONNULL_PTR owner);
692         public static native long CResult_BlindedHopFeaturesDecodeErrorZ_get_err(long owner);
693         // struct LDKChannelTypeFeatures CResult_ChannelTypeFeaturesDecodeErrorZ_get_ok(LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR owner);
694         public static native long CResult_ChannelTypeFeaturesDecodeErrorZ_get_ok(long owner);
695         // struct LDKDecodeError CResult_ChannelTypeFeaturesDecodeErrorZ_get_err(LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR owner);
696         public static native long CResult_ChannelTypeFeaturesDecodeErrorZ_get_err(long owner);
697         // struct LDKOffer CResult_OfferBolt12ParseErrorZ_get_ok(LDKCResult_OfferBolt12ParseErrorZ *NONNULL_PTR owner);
698         public static native long CResult_OfferBolt12ParseErrorZ_get_ok(long owner);
699         // struct LDKBolt12ParseError CResult_OfferBolt12ParseErrorZ_get_err(LDKCResult_OfferBolt12ParseErrorZ *NONNULL_PTR owner);
700         public static native long CResult_OfferBolt12ParseErrorZ_get_err(long owner);
701         // struct LDKPublicKey CResult_PublicKeySecp256k1ErrorZ_get_ok(LDKCResult_PublicKeySecp256k1ErrorZ *NONNULL_PTR owner);
702         public static native byte[] CResult_PublicKeySecp256k1ErrorZ_get_ok(long owner);
703         // enum LDKSecp256k1Error CResult_PublicKeySecp256k1ErrorZ_get_err(LDKCResult_PublicKeySecp256k1ErrorZ *NONNULL_PTR owner);
704         public static native Secp256k1Error CResult_PublicKeySecp256k1ErrorZ_get_err(long owner);
705         // struct LDKNodeId CResult_NodeIdDecodeErrorZ_get_ok(LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR owner);
706         public static native long CResult_NodeIdDecodeErrorZ_get_ok(long owner);
707         // struct LDKDecodeError CResult_NodeIdDecodeErrorZ_get_err(LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR owner);
708         public static native long CResult_NodeIdDecodeErrorZ_get_err(long owner);
709         public static class LDKNetworkUpdate {
710                 private LDKNetworkUpdate() {}
711                 public final static class ChannelUpdateMessage extends LDKNetworkUpdate {
712                         public long msg;
713                         ChannelUpdateMessage(long msg) { this.msg = msg; }
714                 }
715                 public final static class ChannelFailure extends LDKNetworkUpdate {
716                         public long short_channel_id;
717                         public boolean is_permanent;
718                         ChannelFailure(long short_channel_id, boolean is_permanent) { this.short_channel_id = short_channel_id; this.is_permanent = is_permanent; }
719                 }
720                 public final static class NodeFailure extends LDKNetworkUpdate {
721                         public byte[] node_id;
722                         public boolean is_permanent;
723                         NodeFailure(byte[] node_id, boolean is_permanent) { this.node_id = node_id; this.is_permanent = is_permanent; }
724                 }
725                 static native void init();
726         }
727         static { LDKNetworkUpdate.init(); }
728         public static native LDKNetworkUpdate LDKNetworkUpdate_ref_from_ptr(long ptr);
729         public static class LDKCOption_NetworkUpdateZ {
730                 private LDKCOption_NetworkUpdateZ() {}
731                 public final static class Some extends LDKCOption_NetworkUpdateZ {
732                         public long some;
733                         Some(long some) { this.some = some; }
734                 }
735                 public final static class None extends LDKCOption_NetworkUpdateZ {
736                         None() { }
737                 }
738                 static native void init();
739         }
740         static { LDKCOption_NetworkUpdateZ.init(); }
741         public static native LDKCOption_NetworkUpdateZ LDKCOption_NetworkUpdateZ_ref_from_ptr(long ptr);
742         // struct LDKCOption_NetworkUpdateZ CResult_COption_NetworkUpdateZDecodeErrorZ_get_ok(LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR owner);
743         public static native long CResult_COption_NetworkUpdateZDecodeErrorZ_get_ok(long owner);
744         // struct LDKDecodeError CResult_COption_NetworkUpdateZDecodeErrorZ_get_err(LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR owner);
745         public static native long CResult_COption_NetworkUpdateZDecodeErrorZ_get_err(long owner);
746         // struct LDKTxOut CResult_TxOutUtxoLookupErrorZ_get_ok(LDKCResult_TxOutUtxoLookupErrorZ *NONNULL_PTR owner);
747         public static native long CResult_TxOutUtxoLookupErrorZ_get_ok(long owner);
748         // enum LDKUtxoLookupError CResult_TxOutUtxoLookupErrorZ_get_err(LDKCResult_TxOutUtxoLookupErrorZ *NONNULL_PTR owner);
749         public static native UtxoLookupError CResult_TxOutUtxoLookupErrorZ_get_err(long owner);
750         public static class LDKUtxoResult {
751                 private LDKUtxoResult() {}
752                 public final static class Sync extends LDKUtxoResult {
753                         public long sync;
754                         Sync(long sync) { this.sync = sync; }
755                 }
756                 public final static class Async extends LDKUtxoResult {
757                         public long async;
758                         Async(long async) { this.async = async; }
759                 }
760                 static native void init();
761         }
762         static { LDKUtxoResult.init(); }
763         public static native LDKUtxoResult LDKUtxoResult_ref_from_ptr(long ptr);
764         public interface LDKUtxoLookup {
765                  long get_utxo(byte[] genesis_hash, long short_channel_id);
766         }
767         public static native long LDKUtxoLookup_new(LDKUtxoLookup impl);
768         // LDKUtxoResult UtxoLookup_get_utxo LDKUtxoLookup *NONNULL_PTR this_arg, const uint8_t (*genesis_hash)[32], uint64_t short_channel_id
769         public static native long UtxoLookup_get_utxo(long this_arg, byte[] genesis_hash, long short_channel_id);
770         public static class LDKCOption_UtxoLookupZ {
771                 private LDKCOption_UtxoLookupZ() {}
772                 public final static class Some extends LDKCOption_UtxoLookupZ {
773                         public long some;
774                         Some(long some) { this.some = some; }
775                 }
776                 public final static class None extends LDKCOption_UtxoLookupZ {
777                         None() { }
778                 }
779                 static native void init();
780         }
781         static { LDKCOption_UtxoLookupZ.init(); }
782         public static native LDKCOption_UtxoLookupZ LDKCOption_UtxoLookupZ_ref_from_ptr(long ptr);
783         // void CResult_NoneLightningErrorZ_get_ok(LDKCResult_NoneLightningErrorZ *NONNULL_PTR owner);
784         public static native void CResult_NoneLightningErrorZ_get_ok(long owner);
785         // struct LDKLightningError CResult_NoneLightningErrorZ_get_err(LDKCResult_NoneLightningErrorZ *NONNULL_PTR owner);
786         public static native long CResult_NoneLightningErrorZ_get_err(long owner);
787         // bool CResult_boolLightningErrorZ_get_ok(LDKCResult_boolLightningErrorZ *NONNULL_PTR owner);
788         public static native boolean CResult_boolLightningErrorZ_get_ok(long owner);
789         // struct LDKLightningError CResult_boolLightningErrorZ_get_err(LDKCResult_boolLightningErrorZ *NONNULL_PTR owner);
790         public static native long CResult_boolLightningErrorZ_get_err(long owner);
791         // struct LDKChannelAnnouncement C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_a(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR owner);
792         public static native long C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_a(long owner);
793         // struct LDKChannelUpdate C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_b(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR owner);
794         public static native long C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_b(long owner);
795         // struct LDKChannelUpdate C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_c(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR owner);
796         public static native long C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_c(long owner);
797         public static class LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ {
798                 private LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ() {}
799                 public final static class Some extends LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ {
800                         public long some;
801                         Some(long some) { this.some = some; }
802                 }
803                 public final static class None extends LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ {
804                         None() { }
805                 }
806                 static native void init();
807         }
808         static { LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ.init(); }
809         public static native LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_ref_from_ptr(long ptr);
810         public static class LDKErrorAction {
811                 private LDKErrorAction() {}
812                 public final static class DisconnectPeer extends LDKErrorAction {
813                         public long msg;
814                         DisconnectPeer(long msg) { this.msg = msg; }
815                 }
816                 public final static class DisconnectPeerWithWarning extends LDKErrorAction {
817                         public long msg;
818                         DisconnectPeerWithWarning(long msg) { this.msg = msg; }
819                 }
820                 public final static class IgnoreError extends LDKErrorAction {
821                         IgnoreError() { }
822                 }
823                 public final static class IgnoreAndLog extends LDKErrorAction {
824                         public org.ldk.enums.Level ignore_and_log;
825                         IgnoreAndLog(org.ldk.enums.Level ignore_and_log) { this.ignore_and_log = ignore_and_log; }
826                 }
827                 public final static class IgnoreDuplicateGossip extends LDKErrorAction {
828                         IgnoreDuplicateGossip() { }
829                 }
830                 public final static class SendErrorMessage extends LDKErrorAction {
831                         public long msg;
832                         SendErrorMessage(long msg) { this.msg = msg; }
833                 }
834                 public final static class SendWarningMessage extends LDKErrorAction {
835                         public long msg;
836                         public org.ldk.enums.Level log_level;
837                         SendWarningMessage(long msg, org.ldk.enums.Level log_level) { this.msg = msg; this.log_level = log_level; }
838                 }
839                 static native void init();
840         }
841         static { LDKErrorAction.init(); }
842         public static native LDKErrorAction LDKErrorAction_ref_from_ptr(long ptr);
843         public static class LDKMessageSendEvent {
844                 private LDKMessageSendEvent() {}
845                 public final static class SendAcceptChannel extends LDKMessageSendEvent {
846                         public byte[] node_id;
847                         public long msg;
848                         SendAcceptChannel(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
849                 }
850                 public final static class SendAcceptChannelV2 extends LDKMessageSendEvent {
851                         public byte[] node_id;
852                         public long msg;
853                         SendAcceptChannelV2(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
854                 }
855                 public final static class SendOpenChannel extends LDKMessageSendEvent {
856                         public byte[] node_id;
857                         public long msg;
858                         SendOpenChannel(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
859                 }
860                 public final static class SendOpenChannelV2 extends LDKMessageSendEvent {
861                         public byte[] node_id;
862                         public long msg;
863                         SendOpenChannelV2(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
864                 }
865                 public final static class SendFundingCreated extends LDKMessageSendEvent {
866                         public byte[] node_id;
867                         public long msg;
868                         SendFundingCreated(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
869                 }
870                 public final static class SendFundingSigned extends LDKMessageSendEvent {
871                         public byte[] node_id;
872                         public long msg;
873                         SendFundingSigned(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
874                 }
875                 public final static class SendTxAddInput extends LDKMessageSendEvent {
876                         public byte[] node_id;
877                         public long msg;
878                         SendTxAddInput(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
879                 }
880                 public final static class SendTxAddOutput extends LDKMessageSendEvent {
881                         public byte[] node_id;
882                         public long msg;
883                         SendTxAddOutput(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
884                 }
885                 public final static class SendTxRemoveInput extends LDKMessageSendEvent {
886                         public byte[] node_id;
887                         public long msg;
888                         SendTxRemoveInput(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
889                 }
890                 public final static class SendTxRemoveOutput extends LDKMessageSendEvent {
891                         public byte[] node_id;
892                         public long msg;
893                         SendTxRemoveOutput(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
894                 }
895                 public final static class SendTxComplete extends LDKMessageSendEvent {
896                         public byte[] node_id;
897                         public long msg;
898                         SendTxComplete(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
899                 }
900                 public final static class SendTxSignatures extends LDKMessageSendEvent {
901                         public byte[] node_id;
902                         public long msg;
903                         SendTxSignatures(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
904                 }
905                 public final static class SendTxInitRbf extends LDKMessageSendEvent {
906                         public byte[] node_id;
907                         public long msg;
908                         SendTxInitRbf(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
909                 }
910                 public final static class SendTxAckRbf extends LDKMessageSendEvent {
911                         public byte[] node_id;
912                         public long msg;
913                         SendTxAckRbf(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
914                 }
915                 public final static class SendTxAbort extends LDKMessageSendEvent {
916                         public byte[] node_id;
917                         public long msg;
918                         SendTxAbort(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
919                 }
920                 public final static class SendChannelReady extends LDKMessageSendEvent {
921                         public byte[] node_id;
922                         public long msg;
923                         SendChannelReady(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
924                 }
925                 public final static class SendAnnouncementSignatures extends LDKMessageSendEvent {
926                         public byte[] node_id;
927                         public long msg;
928                         SendAnnouncementSignatures(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
929                 }
930                 public final static class UpdateHTLCs extends LDKMessageSendEvent {
931                         public byte[] node_id;
932                         public long updates;
933                         UpdateHTLCs(byte[] node_id, long updates) { this.node_id = node_id; this.updates = updates; }
934                 }
935                 public final static class SendRevokeAndACK extends LDKMessageSendEvent {
936                         public byte[] node_id;
937                         public long msg;
938                         SendRevokeAndACK(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
939                 }
940                 public final static class SendClosingSigned extends LDKMessageSendEvent {
941                         public byte[] node_id;
942                         public long msg;
943                         SendClosingSigned(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
944                 }
945                 public final static class SendShutdown extends LDKMessageSendEvent {
946                         public byte[] node_id;
947                         public long msg;
948                         SendShutdown(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
949                 }
950                 public final static class SendChannelReestablish extends LDKMessageSendEvent {
951                         public byte[] node_id;
952                         public long msg;
953                         SendChannelReestablish(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
954                 }
955                 public final static class SendChannelAnnouncement extends LDKMessageSendEvent {
956                         public byte[] node_id;
957                         public long msg;
958                         public long update_msg;
959                         SendChannelAnnouncement(byte[] node_id, long msg, long update_msg) { this.node_id = node_id; this.msg = msg; this.update_msg = update_msg; }
960                 }
961                 public final static class BroadcastChannelAnnouncement extends LDKMessageSendEvent {
962                         public long msg;
963                         public long update_msg;
964                         BroadcastChannelAnnouncement(long msg, long update_msg) { this.msg = msg; this.update_msg = update_msg; }
965                 }
966                 public final static class BroadcastChannelUpdate extends LDKMessageSendEvent {
967                         public long msg;
968                         BroadcastChannelUpdate(long msg) { this.msg = msg; }
969                 }
970                 public final static class BroadcastNodeAnnouncement extends LDKMessageSendEvent {
971                         public long msg;
972                         BroadcastNodeAnnouncement(long msg) { this.msg = msg; }
973                 }
974                 public final static class SendChannelUpdate extends LDKMessageSendEvent {
975                         public byte[] node_id;
976                         public long msg;
977                         SendChannelUpdate(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
978                 }
979                 public final static class HandleError extends LDKMessageSendEvent {
980                         public byte[] node_id;
981                         public long action;
982                         HandleError(byte[] node_id, long action) { this.node_id = node_id; this.action = action; }
983                 }
984                 public final static class SendChannelRangeQuery extends LDKMessageSendEvent {
985                         public byte[] node_id;
986                         public long msg;
987                         SendChannelRangeQuery(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
988                 }
989                 public final static class SendShortIdsQuery extends LDKMessageSendEvent {
990                         public byte[] node_id;
991                         public long msg;
992                         SendShortIdsQuery(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
993                 }
994                 public final static class SendReplyChannelRange extends LDKMessageSendEvent {
995                         public byte[] node_id;
996                         public long msg;
997                         SendReplyChannelRange(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
998                 }
999                 public final static class SendGossipTimestampFilter extends LDKMessageSendEvent {
1000                         public byte[] node_id;
1001                         public long msg;
1002                         SendGossipTimestampFilter(byte[] node_id, long msg) { this.node_id = node_id; this.msg = msg; }
1003                 }
1004                 static native void init();
1005         }
1006         static { LDKMessageSendEvent.init(); }
1007         public static native LDKMessageSendEvent LDKMessageSendEvent_ref_from_ptr(long ptr);
1008         // struct LDKChannelUpdateInfo CResult_ChannelUpdateInfoDecodeErrorZ_get_ok(LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR owner);
1009         public static native long CResult_ChannelUpdateInfoDecodeErrorZ_get_ok(long owner);
1010         // struct LDKDecodeError CResult_ChannelUpdateInfoDecodeErrorZ_get_err(LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR owner);
1011         public static native long CResult_ChannelUpdateInfoDecodeErrorZ_get_err(long owner);
1012         // struct LDKChannelInfo CResult_ChannelInfoDecodeErrorZ_get_ok(LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR owner);
1013         public static native long CResult_ChannelInfoDecodeErrorZ_get_ok(long owner);
1014         // struct LDKDecodeError CResult_ChannelInfoDecodeErrorZ_get_err(LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR owner);
1015         public static native long CResult_ChannelInfoDecodeErrorZ_get_err(long owner);
1016         // struct LDKRoutingFees CResult_RoutingFeesDecodeErrorZ_get_ok(LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR owner);
1017         public static native long CResult_RoutingFeesDecodeErrorZ_get_ok(long owner);
1018         // struct LDKDecodeError CResult_RoutingFeesDecodeErrorZ_get_err(LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR owner);
1019         public static native long CResult_RoutingFeesDecodeErrorZ_get_err(long owner);
1020         public static class LDKSocketAddress {
1021                 private LDKSocketAddress() {}
1022                 public final static class TcpIpV4 extends LDKSocketAddress {
1023                         public byte[] addr;
1024                         public short port;
1025                         TcpIpV4(byte[] addr, short port) { this.addr = addr; this.port = port; }
1026                 }
1027                 public final static class TcpIpV6 extends LDKSocketAddress {
1028                         public byte[] addr;
1029                         public short port;
1030                         TcpIpV6(byte[] addr, short port) { this.addr = addr; this.port = port; }
1031                 }
1032                 public final static class OnionV2 extends LDKSocketAddress {
1033                         public byte[] onion_v2;
1034                         OnionV2(byte[] onion_v2) { this.onion_v2 = onion_v2; }
1035                 }
1036                 public final static class OnionV3 extends LDKSocketAddress {
1037                         public byte[] ed25519_pubkey;
1038                         public short checksum;
1039                         public byte version;
1040                         public short port;
1041                         OnionV3(byte[] ed25519_pubkey, short checksum, byte version, short port) { this.ed25519_pubkey = ed25519_pubkey; this.checksum = checksum; this.version = version; this.port = port; }
1042                 }
1043                 public final static class Hostname extends LDKSocketAddress {
1044                         public long hostname;
1045                         public short port;
1046                         Hostname(long hostname, short port) { this.hostname = hostname; this.port = port; }
1047                 }
1048                 static native void init();
1049         }
1050         static { LDKSocketAddress.init(); }
1051         public static native LDKSocketAddress LDKSocketAddress_ref_from_ptr(long ptr);
1052         // struct LDKNodeAnnouncementInfo CResult_NodeAnnouncementInfoDecodeErrorZ_get_ok(LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR owner);
1053         public static native long CResult_NodeAnnouncementInfoDecodeErrorZ_get_ok(long owner);
1054         // struct LDKDecodeError CResult_NodeAnnouncementInfoDecodeErrorZ_get_err(LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR owner);
1055         public static native long CResult_NodeAnnouncementInfoDecodeErrorZ_get_err(long owner);
1056         // struct LDKNodeAlias CResult_NodeAliasDecodeErrorZ_get_ok(LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR owner);
1057         public static native long CResult_NodeAliasDecodeErrorZ_get_ok(long owner);
1058         // struct LDKDecodeError CResult_NodeAliasDecodeErrorZ_get_err(LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR owner);
1059         public static native long CResult_NodeAliasDecodeErrorZ_get_err(long owner);
1060         // struct LDKNodeInfo CResult_NodeInfoDecodeErrorZ_get_ok(LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR owner);
1061         public static native long CResult_NodeInfoDecodeErrorZ_get_ok(long owner);
1062         // struct LDKDecodeError CResult_NodeInfoDecodeErrorZ_get_err(LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR owner);
1063         public static native long CResult_NodeInfoDecodeErrorZ_get_err(long owner);
1064         // struct LDKNetworkGraph CResult_NetworkGraphDecodeErrorZ_get_ok(LDKCResult_NetworkGraphDecodeErrorZ *NONNULL_PTR owner);
1065         public static native long CResult_NetworkGraphDecodeErrorZ_get_ok(long owner);
1066         // struct LDKDecodeError CResult_NetworkGraphDecodeErrorZ_get_err(LDKCResult_NetworkGraphDecodeErrorZ *NONNULL_PTR owner);
1067         public static native long CResult_NetworkGraphDecodeErrorZ_get_err(long owner);
1068         public static class LDKCOption_CVec_SocketAddressZZ {
1069                 private LDKCOption_CVec_SocketAddressZZ() {}
1070                 public final static class Some extends LDKCOption_CVec_SocketAddressZZ {
1071                         public long[] some;
1072                         Some(long[] some) { this.some = some; }
1073                 }
1074                 public final static class None extends LDKCOption_CVec_SocketAddressZZ {
1075                         None() { }
1076                 }
1077                 static native void init();
1078         }
1079         static { LDKCOption_CVec_SocketAddressZZ.init(); }
1080         public static native LDKCOption_CVec_SocketAddressZZ LDKCOption_CVec_SocketAddressZZ_ref_from_ptr(long ptr);
1081         // struct LDKChannelDerivationParameters CResult_ChannelDerivationParametersDecodeErrorZ_get_ok(LDKCResult_ChannelDerivationParametersDecodeErrorZ *NONNULL_PTR owner);
1082         public static native long CResult_ChannelDerivationParametersDecodeErrorZ_get_ok(long owner);
1083         // struct LDKDecodeError CResult_ChannelDerivationParametersDecodeErrorZ_get_err(LDKCResult_ChannelDerivationParametersDecodeErrorZ *NONNULL_PTR owner);
1084         public static native long CResult_ChannelDerivationParametersDecodeErrorZ_get_err(long owner);
1085         // struct LDKHTLCDescriptor CResult_HTLCDescriptorDecodeErrorZ_get_ok(LDKCResult_HTLCDescriptorDecodeErrorZ *NONNULL_PTR owner);
1086         public static native long CResult_HTLCDescriptorDecodeErrorZ_get_ok(long owner);
1087         // struct LDKDecodeError CResult_HTLCDescriptorDecodeErrorZ_get_err(LDKCResult_HTLCDescriptorDecodeErrorZ *NONNULL_PTR owner);
1088         public static native long CResult_HTLCDescriptorDecodeErrorZ_get_err(long owner);
1089         public static class LDKCOption_TxOutZ {
1090                 private LDKCOption_TxOutZ() {}
1091                 public final static class Some extends LDKCOption_TxOutZ {
1092                         public long some;
1093                         Some(long some) { this.some = some; }
1094                 }
1095                 public final static class None extends LDKCOption_TxOutZ {
1096                         None() { }
1097                 }
1098                 static native void init();
1099         }
1100         static { LDKCOption_TxOutZ.init(); }
1101         public static native LDKCOption_TxOutZ LDKCOption_TxOutZ_ref_from_ptr(long ptr);
1102         // struct LDKCoinSelection CResult_CoinSelectionNoneZ_get_ok(LDKCResult_CoinSelectionNoneZ *NONNULL_PTR owner);
1103         public static native long CResult_CoinSelectionNoneZ_get_ok(long owner);
1104         // void CResult_CoinSelectionNoneZ_get_err(LDKCResult_CoinSelectionNoneZ *NONNULL_PTR owner);
1105         public static native void CResult_CoinSelectionNoneZ_get_err(long owner);
1106         // struct LDKCVec_UtxoZ CResult_CVec_UtxoZNoneZ_get_ok(LDKCResult_CVec_UtxoZNoneZ *NONNULL_PTR owner);
1107         public static native long[] CResult_CVec_UtxoZNoneZ_get_ok(long owner);
1108         // void CResult_CVec_UtxoZNoneZ_get_err(LDKCResult_CVec_UtxoZNoneZ *NONNULL_PTR owner);
1109         public static native void CResult_CVec_UtxoZNoneZ_get_err(long owner);
1110         // uint64_t C2Tuple_u64u16Z_get_a(LDKC2Tuple_u64u16Z *NONNULL_PTR owner);
1111         public static native long C2Tuple_u64u16Z_get_a(long owner);
1112         // uint16_t C2Tuple_u64u16Z_get_b(LDKC2Tuple_u64u16Z *NONNULL_PTR owner);
1113         public static native short C2Tuple_u64u16Z_get_b(long owner);
1114         public static class LDKCOption_C2Tuple_u64u16ZZ {
1115                 private LDKCOption_C2Tuple_u64u16ZZ() {}
1116                 public final static class Some extends LDKCOption_C2Tuple_u64u16ZZ {
1117                         public long some;
1118                         Some(long some) { this.some = some; }
1119                 }
1120                 public final static class None extends LDKCOption_C2Tuple_u64u16ZZ {
1121                         None() { }
1122                 }
1123                 static native void init();
1124         }
1125         static { LDKCOption_C2Tuple_u64u16ZZ.init(); }
1126         public static native LDKCOption_C2Tuple_u64u16ZZ LDKCOption_C2Tuple_u64u16ZZ_ref_from_ptr(long ptr);
1127         public static class LDKCOption_ChannelShutdownStateZ {
1128                 private LDKCOption_ChannelShutdownStateZ() {}
1129                 public final static class Some extends LDKCOption_ChannelShutdownStateZ {
1130                         public org.ldk.enums.ChannelShutdownState some;
1131                         Some(org.ldk.enums.ChannelShutdownState some) { this.some = some; }
1132                 }
1133                 public final static class None extends LDKCOption_ChannelShutdownStateZ {
1134                         None() { }
1135                 }
1136                 static native void init();
1137         }
1138         static { LDKCOption_ChannelShutdownStateZ.init(); }
1139         public static native LDKCOption_ChannelShutdownStateZ LDKCOption_ChannelShutdownStateZ_ref_from_ptr(long ptr);
1140         // struct LDKThirtyTwoBytes CResult_ThirtyTwoBytesAPIErrorZ_get_ok(LDKCResult_ThirtyTwoBytesAPIErrorZ *NONNULL_PTR owner);
1141         public static native byte[] CResult_ThirtyTwoBytesAPIErrorZ_get_ok(long owner);
1142         // struct LDKAPIError CResult_ThirtyTwoBytesAPIErrorZ_get_err(LDKCResult_ThirtyTwoBytesAPIErrorZ *NONNULL_PTR owner);
1143         public static native long CResult_ThirtyTwoBytesAPIErrorZ_get_err(long owner);
1144         public static class LDKRecentPaymentDetails {
1145                 private LDKRecentPaymentDetails() {}
1146                 public final static class AwaitingInvoice extends LDKRecentPaymentDetails {
1147                         public byte[] payment_id;
1148                         AwaitingInvoice(byte[] payment_id) { this.payment_id = payment_id; }
1149                 }
1150                 public final static class Pending extends LDKRecentPaymentDetails {
1151                         public byte[] payment_id;
1152                         public byte[] payment_hash;
1153                         public long total_msat;
1154                         Pending(byte[] payment_id, byte[] payment_hash, long total_msat) { this.payment_id = payment_id; this.payment_hash = payment_hash; this.total_msat = total_msat; }
1155                 }
1156                 public final static class Fulfilled extends LDKRecentPaymentDetails {
1157                         public byte[] payment_id;
1158                         public long payment_hash;
1159                         Fulfilled(byte[] payment_id, long payment_hash) { this.payment_id = payment_id; this.payment_hash = payment_hash; }
1160                 }
1161                 public final static class Abandoned extends LDKRecentPaymentDetails {
1162                         public byte[] payment_id;
1163                         public byte[] payment_hash;
1164                         Abandoned(byte[] payment_id, byte[] payment_hash) { this.payment_id = payment_id; this.payment_hash = payment_hash; }
1165                 }
1166                 static native void init();
1167         }
1168         static { LDKRecentPaymentDetails.init(); }
1169         public static native LDKRecentPaymentDetails LDKRecentPaymentDetails_ref_from_ptr(long ptr);
1170         public static class LDKPaymentSendFailure {
1171                 private LDKPaymentSendFailure() {}
1172                 public final static class ParameterError extends LDKPaymentSendFailure {
1173                         public long parameter_error;
1174                         ParameterError(long parameter_error) { this.parameter_error = parameter_error; }
1175                 }
1176                 public final static class PathParameterError extends LDKPaymentSendFailure {
1177                         public long[] path_parameter_error;
1178                         PathParameterError(long[] path_parameter_error) { this.path_parameter_error = path_parameter_error; }
1179                 }
1180                 public final static class AllFailedResendSafe extends LDKPaymentSendFailure {
1181                         public long[] all_failed_resend_safe;
1182                         AllFailedResendSafe(long[] all_failed_resend_safe) { this.all_failed_resend_safe = all_failed_resend_safe; }
1183                 }
1184                 public final static class DuplicatePayment extends LDKPaymentSendFailure {
1185                         DuplicatePayment() { }
1186                 }
1187                 public final static class PartialFailure extends LDKPaymentSendFailure {
1188                         public long[] results;
1189                         public long failed_paths_retry;
1190                         public byte[] payment_id;
1191                         PartialFailure(long[] results, long failed_paths_retry, byte[] payment_id) { this.results = results; this.failed_paths_retry = failed_paths_retry; this.payment_id = payment_id; }
1192                 }
1193                 static native void init();
1194         }
1195         static { LDKPaymentSendFailure.init(); }
1196         public static native LDKPaymentSendFailure LDKPaymentSendFailure_ref_from_ptr(long ptr);
1197         // void CResult_NonePaymentSendFailureZ_get_ok(LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR owner);
1198         public static native void CResult_NonePaymentSendFailureZ_get_ok(long owner);
1199         // struct LDKPaymentSendFailure CResult_NonePaymentSendFailureZ_get_err(LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR owner);
1200         public static native long CResult_NonePaymentSendFailureZ_get_err(long owner);
1201         // void CResult_NoneRetryableSendFailureZ_get_ok(LDKCResult_NoneRetryableSendFailureZ *NONNULL_PTR owner);
1202         public static native void CResult_NoneRetryableSendFailureZ_get_ok(long owner);
1203         // enum LDKRetryableSendFailure CResult_NoneRetryableSendFailureZ_get_err(LDKCResult_NoneRetryableSendFailureZ *NONNULL_PTR owner);
1204         public static native RetryableSendFailure CResult_NoneRetryableSendFailureZ_get_err(long owner);
1205         // struct LDKThirtyTwoBytes CResult_ThirtyTwoBytesPaymentSendFailureZ_get_ok(LDKCResult_ThirtyTwoBytesPaymentSendFailureZ *NONNULL_PTR owner);
1206         public static native byte[] CResult_ThirtyTwoBytesPaymentSendFailureZ_get_ok(long owner);
1207         // struct LDKPaymentSendFailure CResult_ThirtyTwoBytesPaymentSendFailureZ_get_err(LDKCResult_ThirtyTwoBytesPaymentSendFailureZ *NONNULL_PTR owner);
1208         public static native long CResult_ThirtyTwoBytesPaymentSendFailureZ_get_err(long owner);
1209         // struct LDKThirtyTwoBytes CResult_ThirtyTwoBytesRetryableSendFailureZ_get_ok(LDKCResult_ThirtyTwoBytesRetryableSendFailureZ *NONNULL_PTR owner);
1210         public static native byte[] CResult_ThirtyTwoBytesRetryableSendFailureZ_get_ok(long owner);
1211         // enum LDKRetryableSendFailure CResult_ThirtyTwoBytesRetryableSendFailureZ_get_err(LDKCResult_ThirtyTwoBytesRetryableSendFailureZ *NONNULL_PTR owner);
1212         public static native RetryableSendFailure CResult_ThirtyTwoBytesRetryableSendFailureZ_get_err(long owner);
1213         // struct LDKThirtyTwoBytes C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_get_a(LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ *NONNULL_PTR owner);
1214         public static native byte[] C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_get_a(long owner);
1215         // struct LDKThirtyTwoBytes C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_get_b(LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ *NONNULL_PTR owner);
1216         public static native byte[] C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_get_b(long owner);
1217         // struct LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_get_ok(LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ *NONNULL_PTR owner);
1218         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_get_ok(long owner);
1219         // struct LDKPaymentSendFailure CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_get_err(LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ *NONNULL_PTR owner);
1220         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_get_err(long owner);
1221         public static class LDKProbeSendFailure {
1222                 private LDKProbeSendFailure() {}
1223                 public final static class RouteNotFound extends LDKProbeSendFailure {
1224                         RouteNotFound() { }
1225                 }
1226                 public final static class SendingFailed extends LDKProbeSendFailure {
1227                         public long sending_failed;
1228                         SendingFailed(long sending_failed) { this.sending_failed = sending_failed; }
1229                 }
1230                 static native void init();
1231         }
1232         static { LDKProbeSendFailure.init(); }
1233         public static native LDKProbeSendFailure LDKProbeSendFailure_ref_from_ptr(long ptr);
1234         // struct LDKCVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZ CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_get_ok(LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ *NONNULL_PTR owner);
1235         public static native long[] CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_get_ok(long owner);
1236         // struct LDKProbeSendFailure CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_get_err(LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ *NONNULL_PTR owner);
1237         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_get_err(long owner);
1238         // struct LDKThirtyTwoBytes C2Tuple_ThirtyTwoBytesPublicKeyZ_get_a(LDKC2Tuple_ThirtyTwoBytesPublicKeyZ *NONNULL_PTR owner);
1239         public static native byte[] C2Tuple_ThirtyTwoBytesPublicKeyZ_get_a(long owner);
1240         // struct LDKPublicKey C2Tuple_ThirtyTwoBytesPublicKeyZ_get_b(LDKC2Tuple_ThirtyTwoBytesPublicKeyZ *NONNULL_PTR owner);
1241         public static native byte[] C2Tuple_ThirtyTwoBytesPublicKeyZ_get_b(long owner);
1242         // struct LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_get_ok(LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ *NONNULL_PTR owner);
1243         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_get_ok(long owner);
1244         // void CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_get_err(LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ *NONNULL_PTR owner);
1245         public static native void CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_get_err(long owner);
1246         // struct LDKCounterpartyForwardingInfo CResult_CounterpartyForwardingInfoDecodeErrorZ_get_ok(LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR owner);
1247         public static native long CResult_CounterpartyForwardingInfoDecodeErrorZ_get_ok(long owner);
1248         // struct LDKDecodeError CResult_CounterpartyForwardingInfoDecodeErrorZ_get_err(LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR owner);
1249         public static native long CResult_CounterpartyForwardingInfoDecodeErrorZ_get_err(long owner);
1250         // struct LDKChannelCounterparty CResult_ChannelCounterpartyDecodeErrorZ_get_ok(LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR owner);
1251         public static native long CResult_ChannelCounterpartyDecodeErrorZ_get_ok(long owner);
1252         // struct LDKDecodeError CResult_ChannelCounterpartyDecodeErrorZ_get_err(LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR owner);
1253         public static native long CResult_ChannelCounterpartyDecodeErrorZ_get_err(long owner);
1254         // struct LDKChannelDetails CResult_ChannelDetailsDecodeErrorZ_get_ok(LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR owner);
1255         public static native long CResult_ChannelDetailsDecodeErrorZ_get_ok(long owner);
1256         // struct LDKDecodeError CResult_ChannelDetailsDecodeErrorZ_get_err(LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR owner);
1257         public static native long CResult_ChannelDetailsDecodeErrorZ_get_err(long owner);
1258         // struct LDKPhantomRouteHints CResult_PhantomRouteHintsDecodeErrorZ_get_ok(LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR owner);
1259         public static native long CResult_PhantomRouteHintsDecodeErrorZ_get_ok(long owner);
1260         // struct LDKDecodeError CResult_PhantomRouteHintsDecodeErrorZ_get_err(LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR owner);
1261         public static native long CResult_PhantomRouteHintsDecodeErrorZ_get_err(long owner);
1262         // enum LDKChannelShutdownState CResult_ChannelShutdownStateDecodeErrorZ_get_ok(LDKCResult_ChannelShutdownStateDecodeErrorZ *NONNULL_PTR owner);
1263         public static native ChannelShutdownState CResult_ChannelShutdownStateDecodeErrorZ_get_ok(long owner);
1264         // struct LDKDecodeError CResult_ChannelShutdownStateDecodeErrorZ_get_err(LDKCResult_ChannelShutdownStateDecodeErrorZ *NONNULL_PTR owner);
1265         public static native long CResult_ChannelShutdownStateDecodeErrorZ_get_err(long owner);
1266         public interface LDKWatch {
1267                  long watch_channel(long funding_txo, long monitor);
1268                  ChannelMonitorUpdateStatus update_channel(long funding_txo, long update);
1269                  long[] release_pending_monitor_events();
1270         }
1271         public static native long LDKWatch_new(LDKWatch impl);
1272         // LDKCResult_ChannelMonitorUpdateStatusNoneZ Watch_watch_channel LDKWatch *NONNULL_PTR this_arg, struct LDKOutPoint funding_txo, struct LDKChannelMonitor monitor
1273         public static native long Watch_watch_channel(long this_arg, long funding_txo, long monitor);
1274         // LDKChannelMonitorUpdateStatus Watch_update_channel LDKWatch *NONNULL_PTR this_arg, struct LDKOutPoint funding_txo, const struct LDKChannelMonitorUpdate *NONNULL_PTR update
1275         public static native ChannelMonitorUpdateStatus Watch_update_channel(long this_arg, long funding_txo, long update);
1276         // LDKCVec_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZZ Watch_release_pending_monitor_events LDKWatch *NONNULL_PTR this_arg
1277         public static native long[] Watch_release_pending_monitor_events(long this_arg);
1278         public interface LDKBroadcasterInterface {
1279                  void broadcast_transactions(byte[][] txs);
1280         }
1281         public static native long LDKBroadcasterInterface_new(LDKBroadcasterInterface impl);
1282         // void BroadcasterInterface_broadcast_transactions LDKBroadcasterInterface *NONNULL_PTR this_arg, struct LDKCVec_TransactionZ txs
1283         public static native void BroadcasterInterface_broadcast_transactions(long this_arg, byte[][] txs);
1284         public interface LDKEntropySource {
1285                  byte[] get_secure_random_bytes();
1286         }
1287         public static native long LDKEntropySource_new(LDKEntropySource impl);
1288         // LDKThirtyTwoBytes EntropySource_get_secure_random_bytes LDKEntropySource *NONNULL_PTR this_arg
1289         public static native byte[] EntropySource_get_secure_random_bytes(long this_arg);
1290         public static class LDKUnsignedGossipMessage {
1291                 private LDKUnsignedGossipMessage() {}
1292                 public final static class ChannelAnnouncement extends LDKUnsignedGossipMessage {
1293                         public long channel_announcement;
1294                         ChannelAnnouncement(long channel_announcement) { this.channel_announcement = channel_announcement; }
1295                 }
1296                 public final static class ChannelUpdate extends LDKUnsignedGossipMessage {
1297                         public long channel_update;
1298                         ChannelUpdate(long channel_update) { this.channel_update = channel_update; }
1299                 }
1300                 public final static class NodeAnnouncement extends LDKUnsignedGossipMessage {
1301                         public long node_announcement;
1302                         NodeAnnouncement(long node_announcement) { this.node_announcement = node_announcement; }
1303                 }
1304                 static native void init();
1305         }
1306         static { LDKUnsignedGossipMessage.init(); }
1307         public static native LDKUnsignedGossipMessage LDKUnsignedGossipMessage_ref_from_ptr(long ptr);
1308         public interface LDKNodeSigner {
1309                  byte[] get_inbound_payment_key_material();
1310                  long get_node_id(Recipient recipient);
1311                  long ecdh(Recipient recipient, byte[] other_key, long tweak);
1312                  long sign_invoice(byte[] hrp_bytes, byte[] invoice_data, Recipient recipient);
1313                  long sign_bolt12_invoice_request(long invoice_request);
1314                  long sign_bolt12_invoice(long invoice);
1315                  long sign_gossip_message(long msg);
1316         }
1317         public static native long LDKNodeSigner_new(LDKNodeSigner impl);
1318         // LDKThirtyTwoBytes NodeSigner_get_inbound_payment_key_material LDKNodeSigner *NONNULL_PTR this_arg
1319         public static native byte[] NodeSigner_get_inbound_payment_key_material(long this_arg);
1320         // LDKCResult_PublicKeyNoneZ NodeSigner_get_node_id LDKNodeSigner *NONNULL_PTR this_arg, enum LDKRecipient recipient
1321         public static native long NodeSigner_get_node_id(long this_arg, Recipient recipient);
1322         // LDKCResult_ThirtyTwoBytesNoneZ NodeSigner_ecdh LDKNodeSigner *NONNULL_PTR this_arg, enum LDKRecipient recipient, struct LDKPublicKey other_key, struct LDKCOption_BigEndianScalarZ tweak
1323         public static native long NodeSigner_ecdh(long this_arg, Recipient recipient, byte[] other_key, long tweak);
1324         // LDKCResult_RecoverableSignatureNoneZ NodeSigner_sign_invoice LDKNodeSigner *NONNULL_PTR this_arg, struct LDKu8slice hrp_bytes, struct LDKCVec_U5Z invoice_data, enum LDKRecipient recipient
1325         public static native long NodeSigner_sign_invoice(long this_arg, byte[] hrp_bytes, byte[] invoice_data, Recipient recipient);
1326         // LDKCResult_SchnorrSignatureNoneZ NodeSigner_sign_bolt12_invoice_request LDKNodeSigner *NONNULL_PTR this_arg, const struct LDKUnsignedInvoiceRequest *NONNULL_PTR invoice_request
1327         public static native long NodeSigner_sign_bolt12_invoice_request(long this_arg, long invoice_request);
1328         // LDKCResult_SchnorrSignatureNoneZ NodeSigner_sign_bolt12_invoice LDKNodeSigner *NONNULL_PTR this_arg, const struct LDKUnsignedBolt12Invoice *NONNULL_PTR invoice
1329         public static native long NodeSigner_sign_bolt12_invoice(long this_arg, long invoice);
1330         // LDKCResult_ECDSASignatureNoneZ NodeSigner_sign_gossip_message LDKNodeSigner *NONNULL_PTR this_arg, struct LDKUnsignedGossipMessage msg
1331         public static native long NodeSigner_sign_gossip_message(long this_arg, long msg);
1332         public interface LDKSignerProvider {
1333                  byte[] generate_channel_keys_id(boolean inbound, long channel_value_satoshis, byte[] user_channel_id);
1334                  long derive_channel_signer(long channel_value_satoshis, byte[] channel_keys_id);
1335                  long read_chan_signer(byte[] reader);
1336                  long get_destination_script();
1337                  long get_shutdown_scriptpubkey();
1338         }
1339         public static native long LDKSignerProvider_new(LDKSignerProvider impl);
1340         // LDKThirtyTwoBytes SignerProvider_generate_channel_keys_id LDKSignerProvider *NONNULL_PTR this_arg, bool inbound, uint64_t channel_value_satoshis, struct LDKU128 user_channel_id
1341         public static native byte[] SignerProvider_generate_channel_keys_id(long this_arg, boolean inbound, long channel_value_satoshis, byte[] user_channel_id);
1342         // LDKWriteableEcdsaChannelSigner SignerProvider_derive_channel_signer LDKSignerProvider *NONNULL_PTR this_arg, uint64_t channel_value_satoshis, struct LDKThirtyTwoBytes channel_keys_id
1343         public static native long SignerProvider_derive_channel_signer(long this_arg, long channel_value_satoshis, byte[] channel_keys_id);
1344         // LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ SignerProvider_read_chan_signer LDKSignerProvider *NONNULL_PTR this_arg, struct LDKu8slice reader
1345         public static native long SignerProvider_read_chan_signer(long this_arg, byte[] reader);
1346         // LDKCResult_CVec_u8ZNoneZ SignerProvider_get_destination_script LDKSignerProvider *NONNULL_PTR this_arg
1347         public static native long SignerProvider_get_destination_script(long this_arg);
1348         // LDKCResult_ShutdownScriptNoneZ SignerProvider_get_shutdown_scriptpubkey LDKSignerProvider *NONNULL_PTR this_arg
1349         public static native long SignerProvider_get_shutdown_scriptpubkey(long this_arg);
1350         public interface LDKFeeEstimator {
1351                  int get_est_sat_per_1000_weight(ConfirmationTarget confirmation_target);
1352         }
1353         public static native long LDKFeeEstimator_new(LDKFeeEstimator impl);
1354         // uint32_t FeeEstimator_get_est_sat_per_1000_weight LDKFeeEstimator *NONNULL_PTR this_arg, enum LDKConfirmationTarget confirmation_target
1355         public static native int FeeEstimator_get_est_sat_per_1000_weight(long this_arg, ConfirmationTarget confirmation_target);
1356         public interface LDKRouter {
1357                  long find_route(byte[] payer, long route_params, long[] first_hops, long inflight_htlcs);
1358                  long find_route_with_id(byte[] payer, long route_params, long[] first_hops, long inflight_htlcs, byte[] _payment_hash, byte[] _payment_id);
1359         }
1360         public static native long LDKRouter_new(LDKRouter impl);
1361         // LDKCResult_RouteLightningErrorZ Router_find_route LDKRouter *NONNULL_PTR this_arg, struct LDKPublicKey payer, const struct LDKRouteParameters *NONNULL_PTR route_params, struct LDKCVec_ChannelDetailsZ *first_hops, struct LDKInFlightHtlcs inflight_htlcs
1362         public static native long Router_find_route(long this_arg, byte[] payer, long route_params, long[] first_hops, long inflight_htlcs);
1363         // LDKCResult_RouteLightningErrorZ Router_find_route_with_id LDKRouter *NONNULL_PTR this_arg, struct LDKPublicKey payer, const struct LDKRouteParameters *NONNULL_PTR route_params, struct LDKCVec_ChannelDetailsZ *first_hops, struct LDKInFlightHtlcs inflight_htlcs, struct LDKThirtyTwoBytes _payment_hash, struct LDKThirtyTwoBytes _payment_id
1364         public static native long Router_find_route_with_id(long this_arg, byte[] payer, long route_params, long[] first_hops, long inflight_htlcs, byte[] _payment_hash, byte[] _payment_id);
1365         // struct LDKThirtyTwoBytes C2Tuple_ThirtyTwoBytesChannelManagerZ_get_a(LDKC2Tuple_ThirtyTwoBytesChannelManagerZ *NONNULL_PTR owner);
1366         public static native byte[] C2Tuple_ThirtyTwoBytesChannelManagerZ_get_a(long owner);
1367         // struct LDKChannelManager C2Tuple_ThirtyTwoBytesChannelManagerZ_get_b(LDKC2Tuple_ThirtyTwoBytesChannelManagerZ *NONNULL_PTR owner);
1368         public static native long C2Tuple_ThirtyTwoBytesChannelManagerZ_get_b(long owner);
1369         // struct LDKC2Tuple_ThirtyTwoBytesChannelManagerZ *CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_get_ok(LDKCResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ *NONNULL_PTR owner);
1370         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_get_ok(long owner);
1371         // struct LDKDecodeError CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_get_err(LDKCResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ *NONNULL_PTR owner);
1372         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_get_err(long owner);
1373         public static class LDKMaxDustHTLCExposure {
1374                 private LDKMaxDustHTLCExposure() {}
1375                 public final static class FixedLimitMsat extends LDKMaxDustHTLCExposure {
1376                         public long fixed_limit_msat;
1377                         FixedLimitMsat(long fixed_limit_msat) { this.fixed_limit_msat = fixed_limit_msat; }
1378                 }
1379                 public final static class FeeRateMultiplier extends LDKMaxDustHTLCExposure {
1380                         public long fee_rate_multiplier;
1381                         FeeRateMultiplier(long fee_rate_multiplier) { this.fee_rate_multiplier = fee_rate_multiplier; }
1382                 }
1383                 static native void init();
1384         }
1385         static { LDKMaxDustHTLCExposure.init(); }
1386         public static native LDKMaxDustHTLCExposure LDKMaxDustHTLCExposure_ref_from_ptr(long ptr);
1387         // struct LDKMaxDustHTLCExposure CResult_MaxDustHTLCExposureDecodeErrorZ_get_ok(LDKCResult_MaxDustHTLCExposureDecodeErrorZ *NONNULL_PTR owner);
1388         public static native long CResult_MaxDustHTLCExposureDecodeErrorZ_get_ok(long owner);
1389         // struct LDKDecodeError CResult_MaxDustHTLCExposureDecodeErrorZ_get_err(LDKCResult_MaxDustHTLCExposureDecodeErrorZ *NONNULL_PTR owner);
1390         public static native long CResult_MaxDustHTLCExposureDecodeErrorZ_get_err(long owner);
1391         // struct LDKChannelConfig CResult_ChannelConfigDecodeErrorZ_get_ok(LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR owner);
1392         public static native long CResult_ChannelConfigDecodeErrorZ_get_ok(long owner);
1393         // struct LDKDecodeError CResult_ChannelConfigDecodeErrorZ_get_err(LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR owner);
1394         public static native long CResult_ChannelConfigDecodeErrorZ_get_err(long owner);
1395         public static class LDKCOption_MaxDustHTLCExposureZ {
1396                 private LDKCOption_MaxDustHTLCExposureZ() {}
1397                 public final static class Some extends LDKCOption_MaxDustHTLCExposureZ {
1398                         public long some;
1399                         Some(long some) { this.some = some; }
1400                 }
1401                 public final static class None extends LDKCOption_MaxDustHTLCExposureZ {
1402                         None() { }
1403                 }
1404                 static native void init();
1405         }
1406         static { LDKCOption_MaxDustHTLCExposureZ.init(); }
1407         public static native LDKCOption_MaxDustHTLCExposureZ LDKCOption_MaxDustHTLCExposureZ_ref_from_ptr(long ptr);
1408         public static class LDKCOption_APIErrorZ {
1409                 private LDKCOption_APIErrorZ() {}
1410                 public final static class Some extends LDKCOption_APIErrorZ {
1411                         public long some;
1412                         Some(long some) { this.some = some; }
1413                 }
1414                 public final static class None extends LDKCOption_APIErrorZ {
1415                         None() { }
1416                 }
1417                 static native void init();
1418         }
1419         static { LDKCOption_APIErrorZ.init(); }
1420         public static native LDKCOption_APIErrorZ LDKCOption_APIErrorZ_ref_from_ptr(long ptr);
1421         // struct LDKCOption_APIErrorZ CResult_COption_APIErrorZDecodeErrorZ_get_ok(LDKCResult_COption_APIErrorZDecodeErrorZ *NONNULL_PTR owner);
1422         public static native long CResult_COption_APIErrorZDecodeErrorZ_get_ok(long owner);
1423         // struct LDKDecodeError CResult_COption_APIErrorZDecodeErrorZ_get_err(LDKCResult_COption_APIErrorZDecodeErrorZ *NONNULL_PTR owner);
1424         public static native long CResult_COption_APIErrorZDecodeErrorZ_get_err(long owner);
1425         // struct LDKChannelMonitorUpdate CResult_ChannelMonitorUpdateDecodeErrorZ_get_ok(LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR owner);
1426         public static native long CResult_ChannelMonitorUpdateDecodeErrorZ_get_ok(long owner);
1427         // struct LDKDecodeError CResult_ChannelMonitorUpdateDecodeErrorZ_get_err(LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR owner);
1428         public static native long CResult_ChannelMonitorUpdateDecodeErrorZ_get_err(long owner);
1429         public static class LDKCOption_MonitorEventZ {
1430                 private LDKCOption_MonitorEventZ() {}
1431                 public final static class Some extends LDKCOption_MonitorEventZ {
1432                         public long some;
1433                         Some(long some) { this.some = some; }
1434                 }
1435                 public final static class None extends LDKCOption_MonitorEventZ {
1436                         None() { }
1437                 }
1438                 static native void init();
1439         }
1440         static { LDKCOption_MonitorEventZ.init(); }
1441         public static native LDKCOption_MonitorEventZ LDKCOption_MonitorEventZ_ref_from_ptr(long ptr);
1442         // struct LDKCOption_MonitorEventZ CResult_COption_MonitorEventZDecodeErrorZ_get_ok(LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR owner);
1443         public static native long CResult_COption_MonitorEventZDecodeErrorZ_get_ok(long owner);
1444         // struct LDKDecodeError CResult_COption_MonitorEventZDecodeErrorZ_get_err(LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR owner);
1445         public static native long CResult_COption_MonitorEventZDecodeErrorZ_get_err(long owner);
1446         // struct LDKHTLCUpdate CResult_HTLCUpdateDecodeErrorZ_get_ok(LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR owner);
1447         public static native long CResult_HTLCUpdateDecodeErrorZ_get_ok(long owner);
1448         // struct LDKDecodeError CResult_HTLCUpdateDecodeErrorZ_get_err(LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR owner);
1449         public static native long CResult_HTLCUpdateDecodeErrorZ_get_err(long owner);
1450         // struct LDKOutPoint C2Tuple_OutPointCVec_u8ZZ_get_a(LDKC2Tuple_OutPointCVec_u8ZZ *NONNULL_PTR owner);
1451         public static native long C2Tuple_OutPointCVec_u8ZZ_get_a(long owner);
1452         // struct LDKCVec_u8Z C2Tuple_OutPointCVec_u8ZZ_get_b(LDKC2Tuple_OutPointCVec_u8ZZ *NONNULL_PTR owner);
1453         public static native byte[] C2Tuple_OutPointCVec_u8ZZ_get_b(long owner);
1454         // uint32_t C2Tuple_u32CVec_u8ZZ_get_a(LDKC2Tuple_u32CVec_u8ZZ *NONNULL_PTR owner);
1455         public static native int C2Tuple_u32CVec_u8ZZ_get_a(long owner);
1456         // struct LDKCVec_u8Z C2Tuple_u32CVec_u8ZZ_get_b(LDKC2Tuple_u32CVec_u8ZZ *NONNULL_PTR owner);
1457         public static native byte[] C2Tuple_u32CVec_u8ZZ_get_b(long owner);
1458         // struct LDKThirtyTwoBytes C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_get_a(LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ *NONNULL_PTR owner);
1459         public static native byte[] C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_get_a(long owner);
1460         // struct LDKCVec_C2Tuple_u32CVec_u8ZZZ C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_get_b(LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ *NONNULL_PTR owner);
1461         public static native long[] C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_get_b(long owner);
1462         // uint32_t C2Tuple_u32TxOutZ_get_a(LDKC2Tuple_u32TxOutZ *NONNULL_PTR owner);
1463         public static native int C2Tuple_u32TxOutZ_get_a(long owner);
1464         // struct LDKTxOut C2Tuple_u32TxOutZ_get_b(LDKC2Tuple_u32TxOutZ *NONNULL_PTR owner);
1465         public static native long C2Tuple_u32TxOutZ_get_b(long owner);
1466         // struct LDKThirtyTwoBytes C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_get_a(LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ *NONNULL_PTR owner);
1467         public static native byte[] C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_get_a(long owner);
1468         // struct LDKCVec_C2Tuple_u32TxOutZZ C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_get_b(LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ *NONNULL_PTR owner);
1469         public static native long[] C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_get_b(long owner);
1470         public static class LDKBalance {
1471                 private LDKBalance() {}
1472                 public final static class ClaimableOnChannelClose extends LDKBalance {
1473                         public long amount_satoshis;
1474                         ClaimableOnChannelClose(long amount_satoshis) { this.amount_satoshis = amount_satoshis; }
1475                 }
1476                 public final static class ClaimableAwaitingConfirmations extends LDKBalance {
1477                         public long amount_satoshis;
1478                         public int confirmation_height;
1479                         ClaimableAwaitingConfirmations(long amount_satoshis, int confirmation_height) { this.amount_satoshis = amount_satoshis; this.confirmation_height = confirmation_height; }
1480                 }
1481                 public final static class ContentiousClaimable extends LDKBalance {
1482                         public long amount_satoshis;
1483                         public int timeout_height;
1484                         public byte[] payment_hash;
1485                         public byte[] payment_preimage;
1486                         ContentiousClaimable(long amount_satoshis, int timeout_height, byte[] payment_hash, byte[] payment_preimage) { this.amount_satoshis = amount_satoshis; this.timeout_height = timeout_height; this.payment_hash = payment_hash; this.payment_preimage = payment_preimage; }
1487                 }
1488                 public final static class MaybeTimeoutClaimableHTLC extends LDKBalance {
1489                         public long amount_satoshis;
1490                         public int claimable_height;
1491                         public byte[] payment_hash;
1492                         MaybeTimeoutClaimableHTLC(long amount_satoshis, int claimable_height, byte[] payment_hash) { this.amount_satoshis = amount_satoshis; this.claimable_height = claimable_height; this.payment_hash = payment_hash; }
1493                 }
1494                 public final static class MaybePreimageClaimableHTLC extends LDKBalance {
1495                         public long amount_satoshis;
1496                         public int expiry_height;
1497                         public byte[] payment_hash;
1498                         MaybePreimageClaimableHTLC(long amount_satoshis, int expiry_height, byte[] payment_hash) { this.amount_satoshis = amount_satoshis; this.expiry_height = expiry_height; this.payment_hash = payment_hash; }
1499                 }
1500                 public final static class CounterpartyRevokedOutputClaimable extends LDKBalance {
1501                         public long amount_satoshis;
1502                         CounterpartyRevokedOutputClaimable(long amount_satoshis) { this.amount_satoshis = amount_satoshis; }
1503                 }
1504                 static native void init();
1505         }
1506         static { LDKBalance.init(); }
1507         public static native LDKBalance LDKBalance_ref_from_ptr(long ptr);
1508         // struct LDKThirtyTwoBytes C2Tuple_ThirtyTwoBytesChannelMonitorZ_get_a(LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ *NONNULL_PTR owner);
1509         public static native byte[] C2Tuple_ThirtyTwoBytesChannelMonitorZ_get_a(long owner);
1510         // struct LDKChannelMonitor C2Tuple_ThirtyTwoBytesChannelMonitorZ_get_b(LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ *NONNULL_PTR owner);
1511         public static native long C2Tuple_ThirtyTwoBytesChannelMonitorZ_get_b(long owner);
1512         // struct LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_get_ok(LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ *NONNULL_PTR owner);
1513         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_get_ok(long owner);
1514         // struct LDKDecodeError CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_get_err(LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ *NONNULL_PTR owner);
1515         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_get_err(long owner);
1516         public interface LDKType {
1517                  short type_id();
1518                  String debug_str();
1519                  byte[] write();
1520         }
1521         public static native long LDKType_new(LDKType impl);
1522         // uint16_t Type_type_id LDKType *NONNULL_PTR this_arg
1523         public static native short Type_type_id(long this_arg);
1524         // LDKStr Type_debug_str LDKType *NONNULL_PTR this_arg
1525         public static native String Type_debug_str(long this_arg);
1526         // LDKCVec_u8Z Type_write LDKType *NONNULL_PTR this_arg
1527         public static native byte[] Type_write(long this_arg);
1528         // struct LDKPublicKey C2Tuple_PublicKeyTypeZ_get_a(LDKC2Tuple_PublicKeyTypeZ *NONNULL_PTR owner);
1529         public static native byte[] C2Tuple_PublicKeyTypeZ_get_a(long owner);
1530         // struct LDKType C2Tuple_PublicKeyTypeZ_get_b(LDKC2Tuple_PublicKeyTypeZ *NONNULL_PTR owner);
1531         public static native long C2Tuple_PublicKeyTypeZ_get_b(long owner);
1532         public static class LDKOffersMessage {
1533                 private LDKOffersMessage() {}
1534                 public final static class InvoiceRequest extends LDKOffersMessage {
1535                         public long invoice_request;
1536                         InvoiceRequest(long invoice_request) { this.invoice_request = invoice_request; }
1537                 }
1538                 public final static class Invoice extends LDKOffersMessage {
1539                         public long invoice;
1540                         Invoice(long invoice) { this.invoice = invoice; }
1541                 }
1542                 public final static class InvoiceError extends LDKOffersMessage {
1543                         public long invoice_error;
1544                         InvoiceError(long invoice_error) { this.invoice_error = invoice_error; }
1545                 }
1546                 static native void init();
1547         }
1548         static { LDKOffersMessage.init(); }
1549         public static native LDKOffersMessage LDKOffersMessage_ref_from_ptr(long ptr);
1550         public static class LDKCOption_OffersMessageZ {
1551                 private LDKCOption_OffersMessageZ() {}
1552                 public final static class Some extends LDKCOption_OffersMessageZ {
1553                         public long some;
1554                         Some(long some) { this.some = some; }
1555                 }
1556                 public final static class None extends LDKCOption_OffersMessageZ {
1557                         None() { }
1558                 }
1559                 static native void init();
1560         }
1561         static { LDKCOption_OffersMessageZ.init(); }
1562         public static native LDKCOption_OffersMessageZ LDKCOption_OffersMessageZ_ref_from_ptr(long ptr);
1563         public interface LDKCustomOnionMessageContents {
1564                  long tlv_type();
1565                  byte[] write();
1566         }
1567         public static native long LDKCustomOnionMessageContents_new(LDKCustomOnionMessageContents impl);
1568         // uint64_t CustomOnionMessageContents_tlv_type LDKCustomOnionMessageContents *NONNULL_PTR this_arg
1569         public static native long CustomOnionMessageContents_tlv_type(long this_arg);
1570         // LDKCVec_u8Z CustomOnionMessageContents_write LDKCustomOnionMessageContents *NONNULL_PTR this_arg
1571         public static native byte[] CustomOnionMessageContents_write(long this_arg);
1572         public static class LDKCOption_CustomOnionMessageContentsZ {
1573                 private LDKCOption_CustomOnionMessageContentsZ() {}
1574                 public final static class Some extends LDKCOption_CustomOnionMessageContentsZ {
1575                         public long some;
1576                         Some(long some) { this.some = some; }
1577                 }
1578                 public final static class None extends LDKCOption_CustomOnionMessageContentsZ {
1579                         None() { }
1580                 }
1581                 static native void init();
1582         }
1583         static { LDKCOption_CustomOnionMessageContentsZ.init(); }
1584         public static native LDKCOption_CustomOnionMessageContentsZ LDKCOption_CustomOnionMessageContentsZ_ref_from_ptr(long ptr);
1585         // struct LDKCOption_CustomOnionMessageContentsZ CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_get_ok(LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ *NONNULL_PTR owner);
1586         public static native long CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_get_ok(long owner);
1587         // struct LDKDecodeError CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_get_err(LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ *NONNULL_PTR owner);
1588         public static native long CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_get_err(long owner);
1589         public static class LDKCOption_TypeZ {
1590                 private LDKCOption_TypeZ() {}
1591                 public final static class Some extends LDKCOption_TypeZ {
1592                         public long some;
1593                         Some(long some) { this.some = some; }
1594                 }
1595                 public final static class None extends LDKCOption_TypeZ {
1596                         None() { }
1597                 }
1598                 static native void init();
1599         }
1600         static { LDKCOption_TypeZ.init(); }
1601         public static native LDKCOption_TypeZ LDKCOption_TypeZ_ref_from_ptr(long ptr);
1602         // struct LDKCOption_TypeZ CResult_COption_TypeZDecodeErrorZ_get_ok(LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR owner);
1603         public static native long CResult_COption_TypeZDecodeErrorZ_get_ok(long owner);
1604         // struct LDKDecodeError CResult_COption_TypeZDecodeErrorZ_get_err(LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR owner);
1605         public static native long CResult_COption_TypeZDecodeErrorZ_get_err(long owner);
1606         public static class LDKCOption_SocketAddressZ {
1607                 private LDKCOption_SocketAddressZ() {}
1608                 public final static class Some extends LDKCOption_SocketAddressZ {
1609                         public long some;
1610                         Some(long some) { this.some = some; }
1611                 }
1612                 public final static class None extends LDKCOption_SocketAddressZ {
1613                         None() { }
1614                 }
1615                 static native void init();
1616         }
1617         static { LDKCOption_SocketAddressZ.init(); }
1618         public static native LDKCOption_SocketAddressZ LDKCOption_SocketAddressZ_ref_from_ptr(long ptr);
1619         // struct LDKPublicKey C2Tuple_PublicKeyCOption_SocketAddressZZ_get_a(LDKC2Tuple_PublicKeyCOption_SocketAddressZZ *NONNULL_PTR owner);
1620         public static native byte[] C2Tuple_PublicKeyCOption_SocketAddressZZ_get_a(long owner);
1621         // struct LDKCOption_SocketAddressZ C2Tuple_PublicKeyCOption_SocketAddressZZ_get_b(LDKC2Tuple_PublicKeyCOption_SocketAddressZZ *NONNULL_PTR owner);
1622         public static native long C2Tuple_PublicKeyCOption_SocketAddressZZ_get_b(long owner);
1623         // struct LDKCVec_u8Z CResult_CVec_u8ZPeerHandleErrorZ_get_ok(LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR owner);
1624         public static native byte[] CResult_CVec_u8ZPeerHandleErrorZ_get_ok(long owner);
1625         // struct LDKPeerHandleError CResult_CVec_u8ZPeerHandleErrorZ_get_err(LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR owner);
1626         public static native long CResult_CVec_u8ZPeerHandleErrorZ_get_err(long owner);
1627         // void CResult_NonePeerHandleErrorZ_get_ok(LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR owner);
1628         public static native void CResult_NonePeerHandleErrorZ_get_ok(long owner);
1629         // struct LDKPeerHandleError CResult_NonePeerHandleErrorZ_get_err(LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR owner);
1630         public static native long CResult_NonePeerHandleErrorZ_get_err(long owner);
1631         // bool CResult_boolPeerHandleErrorZ_get_ok(LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR owner);
1632         public static native boolean CResult_boolPeerHandleErrorZ_get_ok(long owner);
1633         // struct LDKPeerHandleError CResult_boolPeerHandleErrorZ_get_err(LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR owner);
1634         public static native long CResult_boolPeerHandleErrorZ_get_err(long owner);
1635         public static class LDKGraphSyncError {
1636                 private LDKGraphSyncError() {}
1637                 public final static class DecodeError extends LDKGraphSyncError {
1638                         public long decode_error;
1639                         DecodeError(long decode_error) { this.decode_error = decode_error; }
1640                 }
1641                 public final static class LightningError extends LDKGraphSyncError {
1642                         public long lightning_error;
1643                         LightningError(long lightning_error) { this.lightning_error = lightning_error; }
1644                 }
1645                 static native void init();
1646         }
1647         static { LDKGraphSyncError.init(); }
1648         public static native LDKGraphSyncError LDKGraphSyncError_ref_from_ptr(long ptr);
1649         // uint32_t CResult_u32GraphSyncErrorZ_get_ok(LDKCResult_u32GraphSyncErrorZ *NONNULL_PTR owner);
1650         public static native int CResult_u32GraphSyncErrorZ_get_ok(long owner);
1651         // struct LDKGraphSyncError CResult_u32GraphSyncErrorZ_get_err(LDKCResult_u32GraphSyncErrorZ *NONNULL_PTR owner);
1652         public static native long CResult_u32GraphSyncErrorZ_get_err(long owner);
1653         // struct LDKCVec_u8Z CResult_CVec_u8ZIOErrorZ_get_ok(LDKCResult_CVec_u8ZIOErrorZ *NONNULL_PTR owner);
1654         public static native byte[] CResult_CVec_u8ZIOErrorZ_get_ok(long owner);
1655         // enum LDKIOError CResult_CVec_u8ZIOErrorZ_get_err(LDKCResult_CVec_u8ZIOErrorZ *NONNULL_PTR owner);
1656         public static native IOError CResult_CVec_u8ZIOErrorZ_get_err(long owner);
1657         // struct LDKCVec_StrZ CResult_CVec_StrZIOErrorZ_get_ok(LDKCResult_CVec_StrZIOErrorZ *NONNULL_PTR owner);
1658         public static native String[] CResult_CVec_StrZIOErrorZ_get_ok(long owner);
1659         // enum LDKIOError CResult_CVec_StrZIOErrorZ_get_err(LDKCResult_CVec_StrZIOErrorZ *NONNULL_PTR owner);
1660         public static native IOError CResult_CVec_StrZIOErrorZ_get_err(long owner);
1661         // struct LDKCVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZ CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_get_ok(LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ *NONNULL_PTR owner);
1662         public static native long[] CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_get_ok(long owner);
1663         // enum LDKIOError CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_get_err(LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ *NONNULL_PTR owner);
1664         public static native IOError CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_get_err(long owner);
1665         // struct LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_get_ok(LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ *NONNULL_PTR owner);
1666         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_get_ok(long owner);
1667         // enum LDKIOError CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_get_err(LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ *NONNULL_PTR owner);
1668         public static native IOError CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_get_err(long owner);
1669         public static class LDKCOption_SecretKeyZ {
1670                 private LDKCOption_SecretKeyZ() {}
1671                 public final static class Some extends LDKCOption_SecretKeyZ {
1672                         public byte[] some;
1673                         Some(byte[] some) { this.some = some; }
1674                 }
1675                 public final static class None extends LDKCOption_SecretKeyZ {
1676                         None() { }
1677                 }
1678                 static native void init();
1679         }
1680         static { LDKCOption_SecretKeyZ.init(); }
1681         public static native LDKCOption_SecretKeyZ LDKCOption_SecretKeyZ_ref_from_ptr(long ptr);
1682         // struct LDKVerifiedInvoiceRequest CResult_VerifiedInvoiceRequestNoneZ_get_ok(LDKCResult_VerifiedInvoiceRequestNoneZ *NONNULL_PTR owner);
1683         public static native long CResult_VerifiedInvoiceRequestNoneZ_get_ok(long owner);
1684         // void CResult_VerifiedInvoiceRequestNoneZ_get_err(LDKCResult_VerifiedInvoiceRequestNoneZ *NONNULL_PTR owner);
1685         public static native void CResult_VerifiedInvoiceRequestNoneZ_get_err(long owner);
1686         public static class LDKCOption_i64Z {
1687                 private LDKCOption_i64Z() {}
1688                 public final static class Some extends LDKCOption_i64Z {
1689                         public long some;
1690                         Some(long some) { this.some = some; }
1691                 }
1692                 public final static class None extends LDKCOption_i64Z {
1693                         None() { }
1694                 }
1695                 static native void init();
1696         }
1697         static { LDKCOption_i64Z.init(); }
1698         public static native LDKCOption_i64Z LDKCOption_i64Z_ref_from_ptr(long ptr);
1699         // struct LDKSocketAddress CResult_SocketAddressDecodeErrorZ_get_ok(LDKCResult_SocketAddressDecodeErrorZ *NONNULL_PTR owner);
1700         public static native long CResult_SocketAddressDecodeErrorZ_get_ok(long owner);
1701         // struct LDKDecodeError CResult_SocketAddressDecodeErrorZ_get_err(LDKCResult_SocketAddressDecodeErrorZ *NONNULL_PTR owner);
1702         public static native long CResult_SocketAddressDecodeErrorZ_get_err(long owner);
1703         // struct LDKSocketAddress CResult_SocketAddressSocketAddressParseErrorZ_get_ok(LDKCResult_SocketAddressSocketAddressParseErrorZ *NONNULL_PTR owner);
1704         public static native long CResult_SocketAddressSocketAddressParseErrorZ_get_ok(long owner);
1705         // enum LDKSocketAddressParseError CResult_SocketAddressSocketAddressParseErrorZ_get_err(LDKCResult_SocketAddressSocketAddressParseErrorZ *NONNULL_PTR owner);
1706         public static native SocketAddressParseError CResult_SocketAddressSocketAddressParseErrorZ_get_err(long owner);
1707         // struct LDKAcceptChannel CResult_AcceptChannelDecodeErrorZ_get_ok(LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR owner);
1708         public static native long CResult_AcceptChannelDecodeErrorZ_get_ok(long owner);
1709         // struct LDKDecodeError CResult_AcceptChannelDecodeErrorZ_get_err(LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR owner);
1710         public static native long CResult_AcceptChannelDecodeErrorZ_get_err(long owner);
1711         // struct LDKAcceptChannelV2 CResult_AcceptChannelV2DecodeErrorZ_get_ok(LDKCResult_AcceptChannelV2DecodeErrorZ *NONNULL_PTR owner);
1712         public static native long CResult_AcceptChannelV2DecodeErrorZ_get_ok(long owner);
1713         // struct LDKDecodeError CResult_AcceptChannelV2DecodeErrorZ_get_err(LDKCResult_AcceptChannelV2DecodeErrorZ *NONNULL_PTR owner);
1714         public static native long CResult_AcceptChannelV2DecodeErrorZ_get_err(long owner);
1715         // struct LDKTxAddInput CResult_TxAddInputDecodeErrorZ_get_ok(LDKCResult_TxAddInputDecodeErrorZ *NONNULL_PTR owner);
1716         public static native long CResult_TxAddInputDecodeErrorZ_get_ok(long owner);
1717         // struct LDKDecodeError CResult_TxAddInputDecodeErrorZ_get_err(LDKCResult_TxAddInputDecodeErrorZ *NONNULL_PTR owner);
1718         public static native long CResult_TxAddInputDecodeErrorZ_get_err(long owner);
1719         // struct LDKTxAddOutput CResult_TxAddOutputDecodeErrorZ_get_ok(LDKCResult_TxAddOutputDecodeErrorZ *NONNULL_PTR owner);
1720         public static native long CResult_TxAddOutputDecodeErrorZ_get_ok(long owner);
1721         // struct LDKDecodeError CResult_TxAddOutputDecodeErrorZ_get_err(LDKCResult_TxAddOutputDecodeErrorZ *NONNULL_PTR owner);
1722         public static native long CResult_TxAddOutputDecodeErrorZ_get_err(long owner);
1723         // struct LDKTxRemoveInput CResult_TxRemoveInputDecodeErrorZ_get_ok(LDKCResult_TxRemoveInputDecodeErrorZ *NONNULL_PTR owner);
1724         public static native long CResult_TxRemoveInputDecodeErrorZ_get_ok(long owner);
1725         // struct LDKDecodeError CResult_TxRemoveInputDecodeErrorZ_get_err(LDKCResult_TxRemoveInputDecodeErrorZ *NONNULL_PTR owner);
1726         public static native long CResult_TxRemoveInputDecodeErrorZ_get_err(long owner);
1727         // struct LDKTxRemoveOutput CResult_TxRemoveOutputDecodeErrorZ_get_ok(LDKCResult_TxRemoveOutputDecodeErrorZ *NONNULL_PTR owner);
1728         public static native long CResult_TxRemoveOutputDecodeErrorZ_get_ok(long owner);
1729         // struct LDKDecodeError CResult_TxRemoveOutputDecodeErrorZ_get_err(LDKCResult_TxRemoveOutputDecodeErrorZ *NONNULL_PTR owner);
1730         public static native long CResult_TxRemoveOutputDecodeErrorZ_get_err(long owner);
1731         // struct LDKTxComplete CResult_TxCompleteDecodeErrorZ_get_ok(LDKCResult_TxCompleteDecodeErrorZ *NONNULL_PTR owner);
1732         public static native long CResult_TxCompleteDecodeErrorZ_get_ok(long owner);
1733         // struct LDKDecodeError CResult_TxCompleteDecodeErrorZ_get_err(LDKCResult_TxCompleteDecodeErrorZ *NONNULL_PTR owner);
1734         public static native long CResult_TxCompleteDecodeErrorZ_get_err(long owner);
1735         // struct LDKTxSignatures CResult_TxSignaturesDecodeErrorZ_get_ok(LDKCResult_TxSignaturesDecodeErrorZ *NONNULL_PTR owner);
1736         public static native long CResult_TxSignaturesDecodeErrorZ_get_ok(long owner);
1737         // struct LDKDecodeError CResult_TxSignaturesDecodeErrorZ_get_err(LDKCResult_TxSignaturesDecodeErrorZ *NONNULL_PTR owner);
1738         public static native long CResult_TxSignaturesDecodeErrorZ_get_err(long owner);
1739         // struct LDKTxInitRbf CResult_TxInitRbfDecodeErrorZ_get_ok(LDKCResult_TxInitRbfDecodeErrorZ *NONNULL_PTR owner);
1740         public static native long CResult_TxInitRbfDecodeErrorZ_get_ok(long owner);
1741         // struct LDKDecodeError CResult_TxInitRbfDecodeErrorZ_get_err(LDKCResult_TxInitRbfDecodeErrorZ *NONNULL_PTR owner);
1742         public static native long CResult_TxInitRbfDecodeErrorZ_get_err(long owner);
1743         // struct LDKTxAckRbf CResult_TxAckRbfDecodeErrorZ_get_ok(LDKCResult_TxAckRbfDecodeErrorZ *NONNULL_PTR owner);
1744         public static native long CResult_TxAckRbfDecodeErrorZ_get_ok(long owner);
1745         // struct LDKDecodeError CResult_TxAckRbfDecodeErrorZ_get_err(LDKCResult_TxAckRbfDecodeErrorZ *NONNULL_PTR owner);
1746         public static native long CResult_TxAckRbfDecodeErrorZ_get_err(long owner);
1747         // struct LDKTxAbort CResult_TxAbortDecodeErrorZ_get_ok(LDKCResult_TxAbortDecodeErrorZ *NONNULL_PTR owner);
1748         public static native long CResult_TxAbortDecodeErrorZ_get_ok(long owner);
1749         // struct LDKDecodeError CResult_TxAbortDecodeErrorZ_get_err(LDKCResult_TxAbortDecodeErrorZ *NONNULL_PTR owner);
1750         public static native long CResult_TxAbortDecodeErrorZ_get_err(long owner);
1751         // struct LDKAnnouncementSignatures CResult_AnnouncementSignaturesDecodeErrorZ_get_ok(LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR owner);
1752         public static native long CResult_AnnouncementSignaturesDecodeErrorZ_get_ok(long owner);
1753         // struct LDKDecodeError CResult_AnnouncementSignaturesDecodeErrorZ_get_err(LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR owner);
1754         public static native long CResult_AnnouncementSignaturesDecodeErrorZ_get_err(long owner);
1755         // struct LDKChannelReestablish CResult_ChannelReestablishDecodeErrorZ_get_ok(LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR owner);
1756         public static native long CResult_ChannelReestablishDecodeErrorZ_get_ok(long owner);
1757         // struct LDKDecodeError CResult_ChannelReestablishDecodeErrorZ_get_err(LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR owner);
1758         public static native long CResult_ChannelReestablishDecodeErrorZ_get_err(long owner);
1759         // struct LDKClosingSigned CResult_ClosingSignedDecodeErrorZ_get_ok(LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR owner);
1760         public static native long CResult_ClosingSignedDecodeErrorZ_get_ok(long owner);
1761         // struct LDKDecodeError CResult_ClosingSignedDecodeErrorZ_get_err(LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR owner);
1762         public static native long CResult_ClosingSignedDecodeErrorZ_get_err(long owner);
1763         // struct LDKClosingSignedFeeRange CResult_ClosingSignedFeeRangeDecodeErrorZ_get_ok(LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR owner);
1764         public static native long CResult_ClosingSignedFeeRangeDecodeErrorZ_get_ok(long owner);
1765         // struct LDKDecodeError CResult_ClosingSignedFeeRangeDecodeErrorZ_get_err(LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR owner);
1766         public static native long CResult_ClosingSignedFeeRangeDecodeErrorZ_get_err(long owner);
1767         // struct LDKCommitmentSigned CResult_CommitmentSignedDecodeErrorZ_get_ok(LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR owner);
1768         public static native long CResult_CommitmentSignedDecodeErrorZ_get_ok(long owner);
1769         // struct LDKDecodeError CResult_CommitmentSignedDecodeErrorZ_get_err(LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR owner);
1770         public static native long CResult_CommitmentSignedDecodeErrorZ_get_err(long owner);
1771         // struct LDKFundingCreated CResult_FundingCreatedDecodeErrorZ_get_ok(LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR owner);
1772         public static native long CResult_FundingCreatedDecodeErrorZ_get_ok(long owner);
1773         // struct LDKDecodeError CResult_FundingCreatedDecodeErrorZ_get_err(LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR owner);
1774         public static native long CResult_FundingCreatedDecodeErrorZ_get_err(long owner);
1775         // struct LDKFundingSigned CResult_FundingSignedDecodeErrorZ_get_ok(LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR owner);
1776         public static native long CResult_FundingSignedDecodeErrorZ_get_ok(long owner);
1777         // struct LDKDecodeError CResult_FundingSignedDecodeErrorZ_get_err(LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR owner);
1778         public static native long CResult_FundingSignedDecodeErrorZ_get_err(long owner);
1779         // struct LDKChannelReady CResult_ChannelReadyDecodeErrorZ_get_ok(LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR owner);
1780         public static native long CResult_ChannelReadyDecodeErrorZ_get_ok(long owner);
1781         // struct LDKDecodeError CResult_ChannelReadyDecodeErrorZ_get_err(LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR owner);
1782         public static native long CResult_ChannelReadyDecodeErrorZ_get_err(long owner);
1783         // struct LDKInit CResult_InitDecodeErrorZ_get_ok(LDKCResult_InitDecodeErrorZ *NONNULL_PTR owner);
1784         public static native long CResult_InitDecodeErrorZ_get_ok(long owner);
1785         // struct LDKDecodeError CResult_InitDecodeErrorZ_get_err(LDKCResult_InitDecodeErrorZ *NONNULL_PTR owner);
1786         public static native long CResult_InitDecodeErrorZ_get_err(long owner);
1787         // struct LDKOpenChannel CResult_OpenChannelDecodeErrorZ_get_ok(LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR owner);
1788         public static native long CResult_OpenChannelDecodeErrorZ_get_ok(long owner);
1789         // struct LDKDecodeError CResult_OpenChannelDecodeErrorZ_get_err(LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR owner);
1790         public static native long CResult_OpenChannelDecodeErrorZ_get_err(long owner);
1791         // struct LDKOpenChannelV2 CResult_OpenChannelV2DecodeErrorZ_get_ok(LDKCResult_OpenChannelV2DecodeErrorZ *NONNULL_PTR owner);
1792         public static native long CResult_OpenChannelV2DecodeErrorZ_get_ok(long owner);
1793         // struct LDKDecodeError CResult_OpenChannelV2DecodeErrorZ_get_err(LDKCResult_OpenChannelV2DecodeErrorZ *NONNULL_PTR owner);
1794         public static native long CResult_OpenChannelV2DecodeErrorZ_get_err(long owner);
1795         // struct LDKRevokeAndACK CResult_RevokeAndACKDecodeErrorZ_get_ok(LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR owner);
1796         public static native long CResult_RevokeAndACKDecodeErrorZ_get_ok(long owner);
1797         // struct LDKDecodeError CResult_RevokeAndACKDecodeErrorZ_get_err(LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR owner);
1798         public static native long CResult_RevokeAndACKDecodeErrorZ_get_err(long owner);
1799         // struct LDKShutdown CResult_ShutdownDecodeErrorZ_get_ok(LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR owner);
1800         public static native long CResult_ShutdownDecodeErrorZ_get_ok(long owner);
1801         // struct LDKDecodeError CResult_ShutdownDecodeErrorZ_get_err(LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR owner);
1802         public static native long CResult_ShutdownDecodeErrorZ_get_err(long owner);
1803         // struct LDKUpdateFailHTLC CResult_UpdateFailHTLCDecodeErrorZ_get_ok(LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR owner);
1804         public static native long CResult_UpdateFailHTLCDecodeErrorZ_get_ok(long owner);
1805         // struct LDKDecodeError CResult_UpdateFailHTLCDecodeErrorZ_get_err(LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR owner);
1806         public static native long CResult_UpdateFailHTLCDecodeErrorZ_get_err(long owner);
1807         // struct LDKUpdateFailMalformedHTLC CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_ok(LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR owner);
1808         public static native long CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_ok(long owner);
1809         // struct LDKDecodeError CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_err(LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR owner);
1810         public static native long CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_err(long owner);
1811         // struct LDKUpdateFee CResult_UpdateFeeDecodeErrorZ_get_ok(LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR owner);
1812         public static native long CResult_UpdateFeeDecodeErrorZ_get_ok(long owner);
1813         // struct LDKDecodeError CResult_UpdateFeeDecodeErrorZ_get_err(LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR owner);
1814         public static native long CResult_UpdateFeeDecodeErrorZ_get_err(long owner);
1815         // struct LDKUpdateFulfillHTLC CResult_UpdateFulfillHTLCDecodeErrorZ_get_ok(LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR owner);
1816         public static native long CResult_UpdateFulfillHTLCDecodeErrorZ_get_ok(long owner);
1817         // struct LDKDecodeError CResult_UpdateFulfillHTLCDecodeErrorZ_get_err(LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR owner);
1818         public static native long CResult_UpdateFulfillHTLCDecodeErrorZ_get_err(long owner);
1819         // struct LDKUpdateAddHTLC CResult_UpdateAddHTLCDecodeErrorZ_get_ok(LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR owner);
1820         public static native long CResult_UpdateAddHTLCDecodeErrorZ_get_ok(long owner);
1821         // struct LDKDecodeError CResult_UpdateAddHTLCDecodeErrorZ_get_err(LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR owner);
1822         public static native long CResult_UpdateAddHTLCDecodeErrorZ_get_err(long owner);
1823         // struct LDKOnionMessage CResult_OnionMessageDecodeErrorZ_get_ok(LDKCResult_OnionMessageDecodeErrorZ *NONNULL_PTR owner);
1824         public static native long CResult_OnionMessageDecodeErrorZ_get_ok(long owner);
1825         // struct LDKDecodeError CResult_OnionMessageDecodeErrorZ_get_err(LDKCResult_OnionMessageDecodeErrorZ *NONNULL_PTR owner);
1826         public static native long CResult_OnionMessageDecodeErrorZ_get_err(long owner);
1827         // struct LDKPing CResult_PingDecodeErrorZ_get_ok(LDKCResult_PingDecodeErrorZ *NONNULL_PTR owner);
1828         public static native long CResult_PingDecodeErrorZ_get_ok(long owner);
1829         // struct LDKDecodeError CResult_PingDecodeErrorZ_get_err(LDKCResult_PingDecodeErrorZ *NONNULL_PTR owner);
1830         public static native long CResult_PingDecodeErrorZ_get_err(long owner);
1831         // struct LDKPong CResult_PongDecodeErrorZ_get_ok(LDKCResult_PongDecodeErrorZ *NONNULL_PTR owner);
1832         public static native long CResult_PongDecodeErrorZ_get_ok(long owner);
1833         // struct LDKDecodeError CResult_PongDecodeErrorZ_get_err(LDKCResult_PongDecodeErrorZ *NONNULL_PTR owner);
1834         public static native long CResult_PongDecodeErrorZ_get_err(long owner);
1835         // struct LDKUnsignedChannelAnnouncement CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_ok(LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR owner);
1836         public static native long CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_ok(long owner);
1837         // struct LDKDecodeError CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_err(LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR owner);
1838         public static native long CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_err(long owner);
1839         // struct LDKChannelAnnouncement CResult_ChannelAnnouncementDecodeErrorZ_get_ok(LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR owner);
1840         public static native long CResult_ChannelAnnouncementDecodeErrorZ_get_ok(long owner);
1841         // struct LDKDecodeError CResult_ChannelAnnouncementDecodeErrorZ_get_err(LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR owner);
1842         public static native long CResult_ChannelAnnouncementDecodeErrorZ_get_err(long owner);
1843         // struct LDKUnsignedChannelUpdate CResult_UnsignedChannelUpdateDecodeErrorZ_get_ok(LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR owner);
1844         public static native long CResult_UnsignedChannelUpdateDecodeErrorZ_get_ok(long owner);
1845         // struct LDKDecodeError CResult_UnsignedChannelUpdateDecodeErrorZ_get_err(LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR owner);
1846         public static native long CResult_UnsignedChannelUpdateDecodeErrorZ_get_err(long owner);
1847         // struct LDKChannelUpdate CResult_ChannelUpdateDecodeErrorZ_get_ok(LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR owner);
1848         public static native long CResult_ChannelUpdateDecodeErrorZ_get_ok(long owner);
1849         // struct LDKDecodeError CResult_ChannelUpdateDecodeErrorZ_get_err(LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR owner);
1850         public static native long CResult_ChannelUpdateDecodeErrorZ_get_err(long owner);
1851         // struct LDKErrorMessage CResult_ErrorMessageDecodeErrorZ_get_ok(LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR owner);
1852         public static native long CResult_ErrorMessageDecodeErrorZ_get_ok(long owner);
1853         // struct LDKDecodeError CResult_ErrorMessageDecodeErrorZ_get_err(LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR owner);
1854         public static native long CResult_ErrorMessageDecodeErrorZ_get_err(long owner);
1855         // struct LDKWarningMessage CResult_WarningMessageDecodeErrorZ_get_ok(LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR owner);
1856         public static native long CResult_WarningMessageDecodeErrorZ_get_ok(long owner);
1857         // struct LDKDecodeError CResult_WarningMessageDecodeErrorZ_get_err(LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR owner);
1858         public static native long CResult_WarningMessageDecodeErrorZ_get_err(long owner);
1859         // struct LDKUnsignedNodeAnnouncement CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_ok(LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR owner);
1860         public static native long CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_ok(long owner);
1861         // struct LDKDecodeError CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_err(LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR owner);
1862         public static native long CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_err(long owner);
1863         // struct LDKNodeAnnouncement CResult_NodeAnnouncementDecodeErrorZ_get_ok(LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR owner);
1864         public static native long CResult_NodeAnnouncementDecodeErrorZ_get_ok(long owner);
1865         // struct LDKDecodeError CResult_NodeAnnouncementDecodeErrorZ_get_err(LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR owner);
1866         public static native long CResult_NodeAnnouncementDecodeErrorZ_get_err(long owner);
1867         // struct LDKQueryShortChannelIds CResult_QueryShortChannelIdsDecodeErrorZ_get_ok(LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR owner);
1868         public static native long CResult_QueryShortChannelIdsDecodeErrorZ_get_ok(long owner);
1869         // struct LDKDecodeError CResult_QueryShortChannelIdsDecodeErrorZ_get_err(LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR owner);
1870         public static native long CResult_QueryShortChannelIdsDecodeErrorZ_get_err(long owner);
1871         // struct LDKReplyShortChannelIdsEnd CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_ok(LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR owner);
1872         public static native long CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_ok(long owner);
1873         // struct LDKDecodeError CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_err(LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR owner);
1874         public static native long CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_err(long owner);
1875         // struct LDKQueryChannelRange CResult_QueryChannelRangeDecodeErrorZ_get_ok(LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR owner);
1876         public static native long CResult_QueryChannelRangeDecodeErrorZ_get_ok(long owner);
1877         // struct LDKDecodeError CResult_QueryChannelRangeDecodeErrorZ_get_err(LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR owner);
1878         public static native long CResult_QueryChannelRangeDecodeErrorZ_get_err(long owner);
1879         // struct LDKReplyChannelRange CResult_ReplyChannelRangeDecodeErrorZ_get_ok(LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR owner);
1880         public static native long CResult_ReplyChannelRangeDecodeErrorZ_get_ok(long owner);
1881         // struct LDKDecodeError CResult_ReplyChannelRangeDecodeErrorZ_get_err(LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR owner);
1882         public static native long CResult_ReplyChannelRangeDecodeErrorZ_get_err(long owner);
1883         // struct LDKGossipTimestampFilter CResult_GossipTimestampFilterDecodeErrorZ_get_ok(LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR owner);
1884         public static native long CResult_GossipTimestampFilterDecodeErrorZ_get_ok(long owner);
1885         // struct LDKDecodeError CResult_GossipTimestampFilterDecodeErrorZ_get_err(LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR owner);
1886         public static native long CResult_GossipTimestampFilterDecodeErrorZ_get_err(long owner);
1887         public static class LDKSignOrCreationError {
1888                 private LDKSignOrCreationError() {}
1889                 public final static class SignError extends LDKSignOrCreationError {
1890                         SignError() { }
1891                 }
1892                 public final static class CreationError extends LDKSignOrCreationError {
1893                         public org.ldk.enums.CreationError creation_error;
1894                         CreationError(org.ldk.enums.CreationError creation_error) { this.creation_error = creation_error; }
1895                 }
1896                 static native void init();
1897         }
1898         static { LDKSignOrCreationError.init(); }
1899         public static native LDKSignOrCreationError LDKSignOrCreationError_ref_from_ptr(long ptr);
1900         // struct LDKBolt11Invoice CResult_Bolt11InvoiceSignOrCreationErrorZ_get_ok(LDKCResult_Bolt11InvoiceSignOrCreationErrorZ *NONNULL_PTR owner);
1901         public static native long CResult_Bolt11InvoiceSignOrCreationErrorZ_get_ok(long owner);
1902         // struct LDKSignOrCreationError CResult_Bolt11InvoiceSignOrCreationErrorZ_get_err(LDKCResult_Bolt11InvoiceSignOrCreationErrorZ *NONNULL_PTR owner);
1903         public static native long CResult_Bolt11InvoiceSignOrCreationErrorZ_get_err(long owner);
1904         // struct LDKOffersMessage CResult_OffersMessageDecodeErrorZ_get_ok(LDKCResult_OffersMessageDecodeErrorZ *NONNULL_PTR owner);
1905         public static native long CResult_OffersMessageDecodeErrorZ_get_ok(long owner);
1906         // struct LDKDecodeError CResult_OffersMessageDecodeErrorZ_get_err(LDKCResult_OffersMessageDecodeErrorZ *NONNULL_PTR owner);
1907         public static native long CResult_OffersMessageDecodeErrorZ_get_err(long owner);
1908         public static class LDKCOption_HTLCClaimZ {
1909                 private LDKCOption_HTLCClaimZ() {}
1910                 public final static class Some extends LDKCOption_HTLCClaimZ {
1911                         public org.ldk.enums.HTLCClaim some;
1912                         Some(org.ldk.enums.HTLCClaim some) { this.some = some; }
1913                 }
1914                 public final static class None extends LDKCOption_HTLCClaimZ {
1915                         None() { }
1916                 }
1917                 static native void init();
1918         }
1919         static { LDKCOption_HTLCClaimZ.init(); }
1920         public static native LDKCOption_HTLCClaimZ LDKCOption_HTLCClaimZ_ref_from_ptr(long ptr);
1921         // struct LDKCounterpartyCommitmentSecrets CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_ok(LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR owner);
1922         public static native long CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_ok(long owner);
1923         // struct LDKDecodeError CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_err(LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR owner);
1924         public static native long CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_err(long owner);
1925         // struct LDKTxCreationKeys CResult_TxCreationKeysDecodeErrorZ_get_ok(LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR owner);
1926         public static native long CResult_TxCreationKeysDecodeErrorZ_get_ok(long owner);
1927         // struct LDKDecodeError CResult_TxCreationKeysDecodeErrorZ_get_err(LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR owner);
1928         public static native long CResult_TxCreationKeysDecodeErrorZ_get_err(long owner);
1929         // struct LDKChannelPublicKeys CResult_ChannelPublicKeysDecodeErrorZ_get_ok(LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR owner);
1930         public static native long CResult_ChannelPublicKeysDecodeErrorZ_get_ok(long owner);
1931         // struct LDKDecodeError CResult_ChannelPublicKeysDecodeErrorZ_get_err(LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR owner);
1932         public static native long CResult_ChannelPublicKeysDecodeErrorZ_get_err(long owner);
1933         // struct LDKHTLCOutputInCommitment CResult_HTLCOutputInCommitmentDecodeErrorZ_get_ok(LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR owner);
1934         public static native long CResult_HTLCOutputInCommitmentDecodeErrorZ_get_ok(long owner);
1935         // struct LDKDecodeError CResult_HTLCOutputInCommitmentDecodeErrorZ_get_err(LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR owner);
1936         public static native long CResult_HTLCOutputInCommitmentDecodeErrorZ_get_err(long owner);
1937         // struct LDKCounterpartyChannelTransactionParameters CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_ok(LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR owner);
1938         public static native long CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_ok(long owner);
1939         // struct LDKDecodeError CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_err(LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR owner);
1940         public static native long CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_err(long owner);
1941         // struct LDKChannelTransactionParameters CResult_ChannelTransactionParametersDecodeErrorZ_get_ok(LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR owner);
1942         public static native long CResult_ChannelTransactionParametersDecodeErrorZ_get_ok(long owner);
1943         // struct LDKDecodeError CResult_ChannelTransactionParametersDecodeErrorZ_get_err(LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR owner);
1944         public static native long CResult_ChannelTransactionParametersDecodeErrorZ_get_err(long owner);
1945         // struct LDKHolderCommitmentTransaction CResult_HolderCommitmentTransactionDecodeErrorZ_get_ok(LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
1946         public static native long CResult_HolderCommitmentTransactionDecodeErrorZ_get_ok(long owner);
1947         // struct LDKDecodeError CResult_HolderCommitmentTransactionDecodeErrorZ_get_err(LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
1948         public static native long CResult_HolderCommitmentTransactionDecodeErrorZ_get_err(long owner);
1949         // struct LDKBuiltCommitmentTransaction CResult_BuiltCommitmentTransactionDecodeErrorZ_get_ok(LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
1950         public static native long CResult_BuiltCommitmentTransactionDecodeErrorZ_get_ok(long owner);
1951         // struct LDKDecodeError CResult_BuiltCommitmentTransactionDecodeErrorZ_get_err(LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
1952         public static native long CResult_BuiltCommitmentTransactionDecodeErrorZ_get_err(long owner);
1953         // struct LDKTrustedClosingTransaction CResult_TrustedClosingTransactionNoneZ_get_ok(LDKCResult_TrustedClosingTransactionNoneZ *NONNULL_PTR owner);
1954         public static native long CResult_TrustedClosingTransactionNoneZ_get_ok(long owner);
1955         // void CResult_TrustedClosingTransactionNoneZ_get_err(LDKCResult_TrustedClosingTransactionNoneZ *NONNULL_PTR owner);
1956         public static native void CResult_TrustedClosingTransactionNoneZ_get_err(long owner);
1957         // struct LDKCommitmentTransaction CResult_CommitmentTransactionDecodeErrorZ_get_ok(LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
1958         public static native long CResult_CommitmentTransactionDecodeErrorZ_get_ok(long owner);
1959         // struct LDKDecodeError CResult_CommitmentTransactionDecodeErrorZ_get_err(LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
1960         public static native long CResult_CommitmentTransactionDecodeErrorZ_get_err(long owner);
1961         // struct LDKTrustedCommitmentTransaction CResult_TrustedCommitmentTransactionNoneZ_get_ok(LDKCResult_TrustedCommitmentTransactionNoneZ *NONNULL_PTR owner);
1962         public static native long CResult_TrustedCommitmentTransactionNoneZ_get_ok(long owner);
1963         // void CResult_TrustedCommitmentTransactionNoneZ_get_err(LDKCResult_TrustedCommitmentTransactionNoneZ *NONNULL_PTR owner);
1964         public static native void CResult_TrustedCommitmentTransactionNoneZ_get_err(long owner);
1965         // struct LDKCVec_ECDSASignatureZ CResult_CVec_ECDSASignatureZNoneZ_get_ok(LDKCResult_CVec_ECDSASignatureZNoneZ *NONNULL_PTR owner);
1966         public static native byte[][] CResult_CVec_ECDSASignatureZNoneZ_get_ok(long owner);
1967         // void CResult_CVec_ECDSASignatureZNoneZ_get_err(LDKCResult_CVec_ECDSASignatureZNoneZ *NONNULL_PTR owner);
1968         public static native void CResult_CVec_ECDSASignatureZNoneZ_get_err(long owner);
1969         public static class LDKCOption_usizeZ {
1970                 private LDKCOption_usizeZ() {}
1971                 public final static class Some extends LDKCOption_usizeZ {
1972                         public long some;
1973                         Some(long some) { this.some = some; }
1974                 }
1975                 public final static class None extends LDKCOption_usizeZ {
1976                         None() { }
1977                 }
1978                 static native void init();
1979         }
1980         static { LDKCOption_usizeZ.init(); }
1981         public static native LDKCOption_usizeZ LDKCOption_usizeZ_ref_from_ptr(long ptr);
1982         // struct LDKShutdownScript CResult_ShutdownScriptDecodeErrorZ_get_ok(LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR owner);
1983         public static native long CResult_ShutdownScriptDecodeErrorZ_get_ok(long owner);
1984         // struct LDKDecodeError CResult_ShutdownScriptDecodeErrorZ_get_err(LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR owner);
1985         public static native long CResult_ShutdownScriptDecodeErrorZ_get_err(long owner);
1986         // struct LDKShutdownScript CResult_ShutdownScriptInvalidShutdownScriptZ_get_ok(LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR owner);
1987         public static native long CResult_ShutdownScriptInvalidShutdownScriptZ_get_ok(long owner);
1988         // struct LDKInvalidShutdownScript CResult_ShutdownScriptInvalidShutdownScriptZ_get_err(LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR owner);
1989         public static native long CResult_ShutdownScriptInvalidShutdownScriptZ_get_err(long owner);
1990         public static class LDKPaymentPurpose {
1991                 private LDKPaymentPurpose() {}
1992                 public final static class InvoicePayment extends LDKPaymentPurpose {
1993                         public long payment_preimage;
1994                         public byte[] payment_secret;
1995                         InvoicePayment(long payment_preimage, byte[] payment_secret) { this.payment_preimage = payment_preimage; this.payment_secret = payment_secret; }
1996                 }
1997                 public final static class SpontaneousPayment extends LDKPaymentPurpose {
1998                         public byte[] spontaneous_payment;
1999                         SpontaneousPayment(byte[] spontaneous_payment) { this.spontaneous_payment = spontaneous_payment; }
2000                 }
2001                 static native void init();
2002         }
2003         static { LDKPaymentPurpose.init(); }
2004         public static native LDKPaymentPurpose LDKPaymentPurpose_ref_from_ptr(long ptr);
2005         // struct LDKPaymentPurpose CResult_PaymentPurposeDecodeErrorZ_get_ok(LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR owner);
2006         public static native long CResult_PaymentPurposeDecodeErrorZ_get_ok(long owner);
2007         // struct LDKDecodeError CResult_PaymentPurposeDecodeErrorZ_get_err(LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR owner);
2008         public static native long CResult_PaymentPurposeDecodeErrorZ_get_err(long owner);
2009         // struct LDKClaimedHTLC CResult_ClaimedHTLCDecodeErrorZ_get_ok(LDKCResult_ClaimedHTLCDecodeErrorZ *NONNULL_PTR owner);
2010         public static native long CResult_ClaimedHTLCDecodeErrorZ_get_ok(long owner);
2011         // struct LDKDecodeError CResult_ClaimedHTLCDecodeErrorZ_get_err(LDKCResult_ClaimedHTLCDecodeErrorZ *NONNULL_PTR owner);
2012         public static native long CResult_ClaimedHTLCDecodeErrorZ_get_err(long owner);
2013         public static class LDKPathFailure {
2014                 private LDKPathFailure() {}
2015                 public final static class InitialSend extends LDKPathFailure {
2016                         public long err;
2017                         InitialSend(long err) { this.err = err; }
2018                 }
2019                 public final static class OnPath extends LDKPathFailure {
2020                         public long network_update;
2021                         OnPath(long network_update) { this.network_update = network_update; }
2022                 }
2023                 static native void init();
2024         }
2025         static { LDKPathFailure.init(); }
2026         public static native LDKPathFailure LDKPathFailure_ref_from_ptr(long ptr);
2027         public static class LDKCOption_PathFailureZ {
2028                 private LDKCOption_PathFailureZ() {}
2029                 public final static class Some extends LDKCOption_PathFailureZ {
2030                         public long some;
2031                         Some(long some) { this.some = some; }
2032                 }
2033                 public final static class None extends LDKCOption_PathFailureZ {
2034                         None() { }
2035                 }
2036                 static native void init();
2037         }
2038         static { LDKCOption_PathFailureZ.init(); }
2039         public static native LDKCOption_PathFailureZ LDKCOption_PathFailureZ_ref_from_ptr(long ptr);
2040         // struct LDKCOption_PathFailureZ CResult_COption_PathFailureZDecodeErrorZ_get_ok(LDKCResult_COption_PathFailureZDecodeErrorZ *NONNULL_PTR owner);
2041         public static native long CResult_COption_PathFailureZDecodeErrorZ_get_ok(long owner);
2042         // struct LDKDecodeError CResult_COption_PathFailureZDecodeErrorZ_get_err(LDKCResult_COption_PathFailureZDecodeErrorZ *NONNULL_PTR owner);
2043         public static native long CResult_COption_PathFailureZDecodeErrorZ_get_err(long owner);
2044         public static class LDKClosureReason {
2045                 private LDKClosureReason() {}
2046                 public final static class CounterpartyForceClosed extends LDKClosureReason {
2047                         public long peer_msg;
2048                         CounterpartyForceClosed(long peer_msg) { this.peer_msg = peer_msg; }
2049                 }
2050                 public final static class HolderForceClosed extends LDKClosureReason {
2051                         HolderForceClosed() { }
2052                 }
2053                 public final static class CooperativeClosure extends LDKClosureReason {
2054                         CooperativeClosure() { }
2055                 }
2056                 public final static class CommitmentTxConfirmed extends LDKClosureReason {
2057                         CommitmentTxConfirmed() { }
2058                 }
2059                 public final static class FundingTimedOut extends LDKClosureReason {
2060                         FundingTimedOut() { }
2061                 }
2062                 public final static class ProcessingError extends LDKClosureReason {
2063                         public java.lang.String err;
2064                         ProcessingError(java.lang.String err) { this.err = err; }
2065                 }
2066                 public final static class DisconnectedPeer extends LDKClosureReason {
2067                         DisconnectedPeer() { }
2068                 }
2069                 public final static class OutdatedChannelManager extends LDKClosureReason {
2070                         OutdatedChannelManager() { }
2071                 }
2072                 public final static class CounterpartyCoopClosedUnfundedChannel extends LDKClosureReason {
2073                         CounterpartyCoopClosedUnfundedChannel() { }
2074                 }
2075                 public final static class FundingBatchClosure extends LDKClosureReason {
2076                         FundingBatchClosure() { }
2077                 }
2078                 static native void init();
2079         }
2080         static { LDKClosureReason.init(); }
2081         public static native LDKClosureReason LDKClosureReason_ref_from_ptr(long ptr);
2082         public static class LDKCOption_ClosureReasonZ {
2083                 private LDKCOption_ClosureReasonZ() {}
2084                 public final static class Some extends LDKCOption_ClosureReasonZ {
2085                         public long some;
2086                         Some(long some) { this.some = some; }
2087                 }
2088                 public final static class None extends LDKCOption_ClosureReasonZ {
2089                         None() { }
2090                 }
2091                 static native void init();
2092         }
2093         static { LDKCOption_ClosureReasonZ.init(); }
2094         public static native LDKCOption_ClosureReasonZ LDKCOption_ClosureReasonZ_ref_from_ptr(long ptr);
2095         // struct LDKCOption_ClosureReasonZ CResult_COption_ClosureReasonZDecodeErrorZ_get_ok(LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR owner);
2096         public static native long CResult_COption_ClosureReasonZDecodeErrorZ_get_ok(long owner);
2097         // struct LDKDecodeError CResult_COption_ClosureReasonZDecodeErrorZ_get_err(LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR owner);
2098         public static native long CResult_COption_ClosureReasonZDecodeErrorZ_get_err(long owner);
2099         public static class LDKHTLCDestination {
2100                 private LDKHTLCDestination() {}
2101                 public final static class NextHopChannel extends LDKHTLCDestination {
2102                         public byte[] node_id;
2103                         public byte[] channel_id;
2104                         NextHopChannel(byte[] node_id, byte[] channel_id) { this.node_id = node_id; this.channel_id = channel_id; }
2105                 }
2106                 public final static class UnknownNextHop extends LDKHTLCDestination {
2107                         public long requested_forward_scid;
2108                         UnknownNextHop(long requested_forward_scid) { this.requested_forward_scid = requested_forward_scid; }
2109                 }
2110                 public final static class InvalidForward extends LDKHTLCDestination {
2111                         public long requested_forward_scid;
2112                         InvalidForward(long requested_forward_scid) { this.requested_forward_scid = requested_forward_scid; }
2113                 }
2114                 public final static class FailedPayment extends LDKHTLCDestination {
2115                         public byte[] payment_hash;
2116                         FailedPayment(byte[] payment_hash) { this.payment_hash = payment_hash; }
2117                 }
2118                 static native void init();
2119         }
2120         static { LDKHTLCDestination.init(); }
2121         public static native LDKHTLCDestination LDKHTLCDestination_ref_from_ptr(long ptr);
2122         public static class LDKCOption_HTLCDestinationZ {
2123                 private LDKCOption_HTLCDestinationZ() {}
2124                 public final static class Some extends LDKCOption_HTLCDestinationZ {
2125                         public long some;
2126                         Some(long some) { this.some = some; }
2127                 }
2128                 public final static class None extends LDKCOption_HTLCDestinationZ {
2129                         None() { }
2130                 }
2131                 static native void init();
2132         }
2133         static { LDKCOption_HTLCDestinationZ.init(); }
2134         public static native LDKCOption_HTLCDestinationZ LDKCOption_HTLCDestinationZ_ref_from_ptr(long ptr);
2135         // struct LDKCOption_HTLCDestinationZ CResult_COption_HTLCDestinationZDecodeErrorZ_get_ok(LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR owner);
2136         public static native long CResult_COption_HTLCDestinationZDecodeErrorZ_get_ok(long owner);
2137         // struct LDKDecodeError CResult_COption_HTLCDestinationZDecodeErrorZ_get_err(LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR owner);
2138         public static native long CResult_COption_HTLCDestinationZDecodeErrorZ_get_err(long owner);
2139         // enum LDKPaymentFailureReason CResult_PaymentFailureReasonDecodeErrorZ_get_ok(LDKCResult_PaymentFailureReasonDecodeErrorZ *NONNULL_PTR owner);
2140         public static native PaymentFailureReason CResult_PaymentFailureReasonDecodeErrorZ_get_ok(long owner);
2141         // struct LDKDecodeError CResult_PaymentFailureReasonDecodeErrorZ_get_err(LDKCResult_PaymentFailureReasonDecodeErrorZ *NONNULL_PTR owner);
2142         public static native long CResult_PaymentFailureReasonDecodeErrorZ_get_err(long owner);
2143         public static class LDKCOption_U128Z {
2144                 private LDKCOption_U128Z() {}
2145                 public final static class Some extends LDKCOption_U128Z {
2146                         public byte[] some;
2147                         Some(byte[] some) { this.some = some; }
2148                 }
2149                 public final static class None extends LDKCOption_U128Z {
2150                         None() { }
2151                 }
2152                 static native void init();
2153         }
2154         static { LDKCOption_U128Z.init(); }
2155         public static native LDKCOption_U128Z LDKCOption_U128Z_ref_from_ptr(long ptr);
2156         public static class LDKCOption_PaymentFailureReasonZ {
2157                 private LDKCOption_PaymentFailureReasonZ() {}
2158                 public final static class Some extends LDKCOption_PaymentFailureReasonZ {
2159                         public org.ldk.enums.PaymentFailureReason some;
2160                         Some(org.ldk.enums.PaymentFailureReason some) { this.some = some; }
2161                 }
2162                 public final static class None extends LDKCOption_PaymentFailureReasonZ {
2163                         None() { }
2164                 }
2165                 static native void init();
2166         }
2167         static { LDKCOption_PaymentFailureReasonZ.init(); }
2168         public static native LDKCOption_PaymentFailureReasonZ LDKCOption_PaymentFailureReasonZ_ref_from_ptr(long ptr);
2169         public static class LDKBumpTransactionEvent {
2170                 private LDKBumpTransactionEvent() {}
2171                 public final static class ChannelClose extends LDKBumpTransactionEvent {
2172                         public byte[] claim_id;
2173                         public int package_target_feerate_sat_per_1000_weight;
2174                         public byte[] commitment_tx;
2175                         public long commitment_tx_fee_satoshis;
2176                         public long anchor_descriptor;
2177                         public long[] pending_htlcs;
2178                         ChannelClose(byte[] claim_id, int package_target_feerate_sat_per_1000_weight, byte[] commitment_tx, long commitment_tx_fee_satoshis, long anchor_descriptor, long[] pending_htlcs) { this.claim_id = claim_id; this.package_target_feerate_sat_per_1000_weight = package_target_feerate_sat_per_1000_weight; this.commitment_tx = commitment_tx; this.commitment_tx_fee_satoshis = commitment_tx_fee_satoshis; this.anchor_descriptor = anchor_descriptor; this.pending_htlcs = pending_htlcs; }
2179                 }
2180                 public final static class HTLCResolution extends LDKBumpTransactionEvent {
2181                         public byte[] claim_id;
2182                         public int target_feerate_sat_per_1000_weight;
2183                         public long[] htlc_descriptors;
2184                         public int tx_lock_time;
2185                         HTLCResolution(byte[] claim_id, int target_feerate_sat_per_1000_weight, long[] htlc_descriptors, int tx_lock_time) { this.claim_id = claim_id; this.target_feerate_sat_per_1000_weight = target_feerate_sat_per_1000_weight; this.htlc_descriptors = htlc_descriptors; this.tx_lock_time = tx_lock_time; }
2186                 }
2187                 static native void init();
2188         }
2189         static { LDKBumpTransactionEvent.init(); }
2190         public static native LDKBumpTransactionEvent LDKBumpTransactionEvent_ref_from_ptr(long ptr);
2191         public static class LDKEvent {
2192                 private LDKEvent() {}
2193                 public final static class FundingGenerationReady extends LDKEvent {
2194                         public byte[] temporary_channel_id;
2195                         public byte[] counterparty_node_id;
2196                         public long channel_value_satoshis;
2197                         public byte[] output_script;
2198                         public byte[] user_channel_id;
2199                         FundingGenerationReady(byte[] temporary_channel_id, byte[] counterparty_node_id, long channel_value_satoshis, byte[] output_script, byte[] user_channel_id) { this.temporary_channel_id = temporary_channel_id; this.counterparty_node_id = counterparty_node_id; this.channel_value_satoshis = channel_value_satoshis; this.output_script = output_script; this.user_channel_id = user_channel_id; }
2200                 }
2201                 public final static class PaymentClaimable extends LDKEvent {
2202                         public byte[] receiver_node_id;
2203                         public byte[] payment_hash;
2204                         public long onion_fields;
2205                         public long amount_msat;
2206                         public long counterparty_skimmed_fee_msat;
2207                         public long purpose;
2208                         public long via_channel_id;
2209                         public long via_user_channel_id;
2210                         public long claim_deadline;
2211                         PaymentClaimable(byte[] receiver_node_id, byte[] payment_hash, long onion_fields, long amount_msat, long counterparty_skimmed_fee_msat, long purpose, long via_channel_id, long via_user_channel_id, long claim_deadline) { this.receiver_node_id = receiver_node_id; this.payment_hash = payment_hash; this.onion_fields = onion_fields; this.amount_msat = amount_msat; this.counterparty_skimmed_fee_msat = counterparty_skimmed_fee_msat; this.purpose = purpose; this.via_channel_id = via_channel_id; this.via_user_channel_id = via_user_channel_id; this.claim_deadline = claim_deadline; }
2212                 }
2213                 public final static class PaymentClaimed extends LDKEvent {
2214                         public byte[] receiver_node_id;
2215                         public byte[] payment_hash;
2216                         public long amount_msat;
2217                         public long purpose;
2218                         public long[] htlcs;
2219                         public long sender_intended_total_msat;
2220                         PaymentClaimed(byte[] receiver_node_id, byte[] payment_hash, long amount_msat, long purpose, long[] htlcs, long sender_intended_total_msat) { this.receiver_node_id = receiver_node_id; this.payment_hash = payment_hash; this.amount_msat = amount_msat; this.purpose = purpose; this.htlcs = htlcs; this.sender_intended_total_msat = sender_intended_total_msat; }
2221                 }
2222                 public final static class PaymentSent extends LDKEvent {
2223                         public long payment_id;
2224                         public byte[] payment_preimage;
2225                         public byte[] payment_hash;
2226                         public long fee_paid_msat;
2227                         PaymentSent(long payment_id, byte[] payment_preimage, byte[] payment_hash, long fee_paid_msat) { this.payment_id = payment_id; this.payment_preimage = payment_preimage; this.payment_hash = payment_hash; this.fee_paid_msat = fee_paid_msat; }
2228                 }
2229                 public final static class PaymentFailed extends LDKEvent {
2230                         public byte[] payment_id;
2231                         public byte[] payment_hash;
2232                         public long reason;
2233                         PaymentFailed(byte[] payment_id, byte[] payment_hash, long reason) { this.payment_id = payment_id; this.payment_hash = payment_hash; this.reason = reason; }
2234                 }
2235                 public final static class PaymentPathSuccessful extends LDKEvent {
2236                         public byte[] payment_id;
2237                         public long payment_hash;
2238                         public long path;
2239                         PaymentPathSuccessful(byte[] payment_id, long payment_hash, long path) { this.payment_id = payment_id; this.payment_hash = payment_hash; this.path = path; }
2240                 }
2241                 public final static class PaymentPathFailed extends LDKEvent {
2242                         public long payment_id;
2243                         public byte[] payment_hash;
2244                         public boolean payment_failed_permanently;
2245                         public long failure;
2246                         public long path;
2247                         public long short_channel_id;
2248                         PaymentPathFailed(long payment_id, byte[] payment_hash, boolean payment_failed_permanently, long failure, long path, long short_channel_id) { this.payment_id = payment_id; this.payment_hash = payment_hash; this.payment_failed_permanently = payment_failed_permanently; this.failure = failure; this.path = path; this.short_channel_id = short_channel_id; }
2249                 }
2250                 public final static class ProbeSuccessful extends LDKEvent {
2251                         public byte[] payment_id;
2252                         public byte[] payment_hash;
2253                         public long path;
2254                         ProbeSuccessful(byte[] payment_id, byte[] payment_hash, long path) { this.payment_id = payment_id; this.payment_hash = payment_hash; this.path = path; }
2255                 }
2256                 public final static class ProbeFailed extends LDKEvent {
2257                         public byte[] payment_id;
2258                         public byte[] payment_hash;
2259                         public long path;
2260                         public long short_channel_id;
2261                         ProbeFailed(byte[] payment_id, byte[] payment_hash, long path, long short_channel_id) { this.payment_id = payment_id; this.payment_hash = payment_hash; this.path = path; this.short_channel_id = short_channel_id; }
2262                 }
2263                 public final static class PendingHTLCsForwardable extends LDKEvent {
2264                         public long time_forwardable;
2265                         PendingHTLCsForwardable(long time_forwardable) { this.time_forwardable = time_forwardable; }
2266                 }
2267                 public final static class HTLCIntercepted extends LDKEvent {
2268                         public byte[] intercept_id;
2269                         public long requested_next_hop_scid;
2270                         public byte[] payment_hash;
2271                         public long inbound_amount_msat;
2272                         public long expected_outbound_amount_msat;
2273                         HTLCIntercepted(byte[] intercept_id, long requested_next_hop_scid, byte[] payment_hash, long inbound_amount_msat, long expected_outbound_amount_msat) { this.intercept_id = intercept_id; this.requested_next_hop_scid = requested_next_hop_scid; this.payment_hash = payment_hash; this.inbound_amount_msat = inbound_amount_msat; this.expected_outbound_amount_msat = expected_outbound_amount_msat; }
2274                 }
2275                 public final static class SpendableOutputs extends LDKEvent {
2276                         public long[] outputs;
2277                         public long channel_id;
2278                         SpendableOutputs(long[] outputs, long channel_id) { this.outputs = outputs; this.channel_id = channel_id; }
2279                 }
2280                 public final static class PaymentForwarded extends LDKEvent {
2281                         public long prev_channel_id;
2282                         public long next_channel_id;
2283                         public long fee_earned_msat;
2284                         public boolean claim_from_onchain_tx;
2285                         public long outbound_amount_forwarded_msat;
2286                         PaymentForwarded(long prev_channel_id, long next_channel_id, long fee_earned_msat, boolean claim_from_onchain_tx, long outbound_amount_forwarded_msat) { this.prev_channel_id = prev_channel_id; this.next_channel_id = next_channel_id; this.fee_earned_msat = fee_earned_msat; this.claim_from_onchain_tx = claim_from_onchain_tx; this.outbound_amount_forwarded_msat = outbound_amount_forwarded_msat; }
2287                 }
2288                 public final static class ChannelPending extends LDKEvent {
2289                         public byte[] channel_id;
2290                         public byte[] user_channel_id;
2291                         public long former_temporary_channel_id;
2292                         public byte[] counterparty_node_id;
2293                         public long funding_txo;
2294                         ChannelPending(byte[] channel_id, byte[] user_channel_id, long former_temporary_channel_id, byte[] counterparty_node_id, long funding_txo) { this.channel_id = channel_id; this.user_channel_id = user_channel_id; this.former_temporary_channel_id = former_temporary_channel_id; this.counterparty_node_id = counterparty_node_id; this.funding_txo = funding_txo; }
2295                 }
2296                 public final static class ChannelReady extends LDKEvent {
2297                         public byte[] channel_id;
2298                         public byte[] user_channel_id;
2299                         public byte[] counterparty_node_id;
2300                         public long channel_type;
2301                         ChannelReady(byte[] channel_id, byte[] user_channel_id, byte[] counterparty_node_id, long channel_type) { this.channel_id = channel_id; this.user_channel_id = user_channel_id; this.counterparty_node_id = counterparty_node_id; this.channel_type = channel_type; }
2302                 }
2303                 public final static class ChannelClosed extends LDKEvent {
2304                         public byte[] channel_id;
2305                         public byte[] user_channel_id;
2306                         public long reason;
2307                         public byte[] counterparty_node_id;
2308                         public long channel_capacity_sats;
2309                         ChannelClosed(byte[] channel_id, byte[] user_channel_id, long reason, byte[] counterparty_node_id, long channel_capacity_sats) { this.channel_id = channel_id; this.user_channel_id = user_channel_id; this.reason = reason; this.counterparty_node_id = counterparty_node_id; this.channel_capacity_sats = channel_capacity_sats; }
2310                 }
2311                 public final static class DiscardFunding extends LDKEvent {
2312                         public byte[] channel_id;
2313                         public byte[] transaction;
2314                         DiscardFunding(byte[] channel_id, byte[] transaction) { this.channel_id = channel_id; this.transaction = transaction; }
2315                 }
2316                 public final static class OpenChannelRequest extends LDKEvent {
2317                         public byte[] temporary_channel_id;
2318                         public byte[] counterparty_node_id;
2319                         public long funding_satoshis;
2320                         public long push_msat;
2321                         public long channel_type;
2322                         OpenChannelRequest(byte[] temporary_channel_id, byte[] counterparty_node_id, long funding_satoshis, long push_msat, long channel_type) { this.temporary_channel_id = temporary_channel_id; this.counterparty_node_id = counterparty_node_id; this.funding_satoshis = funding_satoshis; this.push_msat = push_msat; this.channel_type = channel_type; }
2323                 }
2324                 public final static class HTLCHandlingFailed extends LDKEvent {
2325                         public byte[] prev_channel_id;
2326                         public long failed_next_destination;
2327                         HTLCHandlingFailed(byte[] prev_channel_id, long failed_next_destination) { this.prev_channel_id = prev_channel_id; this.failed_next_destination = failed_next_destination; }
2328                 }
2329                 public final static class BumpTransaction extends LDKEvent {
2330                         public long bump_transaction;
2331                         BumpTransaction(long bump_transaction) { this.bump_transaction = bump_transaction; }
2332                 }
2333                 static native void init();
2334         }
2335         static { LDKEvent.init(); }
2336         public static native LDKEvent LDKEvent_ref_from_ptr(long ptr);
2337         public static class LDKCOption_EventZ {
2338                 private LDKCOption_EventZ() {}
2339                 public final static class Some extends LDKCOption_EventZ {
2340                         public long some;
2341                         Some(long some) { this.some = some; }
2342                 }
2343                 public final static class None extends LDKCOption_EventZ {
2344                         None() { }
2345                 }
2346                 static native void init();
2347         }
2348         static { LDKCOption_EventZ.init(); }
2349         public static native LDKCOption_EventZ LDKCOption_EventZ_ref_from_ptr(long ptr);
2350         // struct LDKCOption_EventZ CResult_COption_EventZDecodeErrorZ_get_ok(LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR owner);
2351         public static native long CResult_COption_EventZDecodeErrorZ_get_ok(long owner);
2352         // struct LDKDecodeError CResult_COption_EventZDecodeErrorZ_get_err(LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR owner);
2353         public static native long CResult_COption_EventZDecodeErrorZ_get_err(long owner);
2354         public static class LDKBolt11ParseError {
2355                 private LDKBolt11ParseError() {}
2356                 public final static class Bech32Error extends LDKBolt11ParseError {
2357                         public long bech32_error;
2358                         Bech32Error(long bech32_error) { this.bech32_error = bech32_error; }
2359                 }
2360                 public final static class ParseAmountError extends LDKBolt11ParseError {
2361                         public int parse_amount_error;
2362                         ParseAmountError(int parse_amount_error) { this.parse_amount_error = parse_amount_error; }
2363                 }
2364                 public final static class MalformedSignature extends LDKBolt11ParseError {
2365                         public org.ldk.enums.Secp256k1Error malformed_signature;
2366                         MalformedSignature(org.ldk.enums.Secp256k1Error malformed_signature) { this.malformed_signature = malformed_signature; }
2367                 }
2368                 public final static class BadPrefix extends LDKBolt11ParseError {
2369                         BadPrefix() { }
2370                 }
2371                 public final static class UnknownCurrency extends LDKBolt11ParseError {
2372                         UnknownCurrency() { }
2373                 }
2374                 public final static class UnknownSiPrefix extends LDKBolt11ParseError {
2375                         UnknownSiPrefix() { }
2376                 }
2377                 public final static class MalformedHRP extends LDKBolt11ParseError {
2378                         MalformedHRP() { }
2379                 }
2380                 public final static class TooShortDataPart extends LDKBolt11ParseError {
2381                         TooShortDataPart() { }
2382                 }
2383                 public final static class UnexpectedEndOfTaggedFields extends LDKBolt11ParseError {
2384                         UnexpectedEndOfTaggedFields() { }
2385                 }
2386                 public final static class DescriptionDecodeError extends LDKBolt11ParseError {
2387                         public int description_decode_error;
2388                         DescriptionDecodeError(int description_decode_error) { this.description_decode_error = description_decode_error; }
2389                 }
2390                 public final static class PaddingError extends LDKBolt11ParseError {
2391                         PaddingError() { }
2392                 }
2393                 public final static class IntegerOverflowError extends LDKBolt11ParseError {
2394                         IntegerOverflowError() { }
2395                 }
2396                 public final static class InvalidSegWitProgramLength extends LDKBolt11ParseError {
2397                         InvalidSegWitProgramLength() { }
2398                 }
2399                 public final static class InvalidPubKeyHashLength extends LDKBolt11ParseError {
2400                         InvalidPubKeyHashLength() { }
2401                 }
2402                 public final static class InvalidScriptHashLength extends LDKBolt11ParseError {
2403                         InvalidScriptHashLength() { }
2404                 }
2405                 public final static class InvalidRecoveryId extends LDKBolt11ParseError {
2406                         InvalidRecoveryId() { }
2407                 }
2408                 public final static class InvalidSliceLength extends LDKBolt11ParseError {
2409                         public java.lang.String invalid_slice_length;
2410                         InvalidSliceLength(java.lang.String invalid_slice_length) { this.invalid_slice_length = invalid_slice_length; }
2411                 }
2412                 public final static class Skip extends LDKBolt11ParseError {
2413                         Skip() { }
2414                 }
2415                 static native void init();
2416         }
2417         static { LDKBolt11ParseError.init(); }
2418         public static native LDKBolt11ParseError LDKBolt11ParseError_ref_from_ptr(long ptr);
2419         // enum LDKSiPrefix CResult_SiPrefixBolt11ParseErrorZ_get_ok(LDKCResult_SiPrefixBolt11ParseErrorZ *NONNULL_PTR owner);
2420         public static native SiPrefix CResult_SiPrefixBolt11ParseErrorZ_get_ok(long owner);
2421         // struct LDKBolt11ParseError CResult_SiPrefixBolt11ParseErrorZ_get_err(LDKCResult_SiPrefixBolt11ParseErrorZ *NONNULL_PTR owner);
2422         public static native long CResult_SiPrefixBolt11ParseErrorZ_get_err(long owner);
2423         public static class LDKParseOrSemanticError {
2424                 private LDKParseOrSemanticError() {}
2425                 public final static class ParseError extends LDKParseOrSemanticError {
2426                         public long parse_error;
2427                         ParseError(long parse_error) { this.parse_error = parse_error; }
2428                 }
2429                 public final static class SemanticError extends LDKParseOrSemanticError {
2430                         public org.ldk.enums.Bolt11SemanticError semantic_error;
2431                         SemanticError(org.ldk.enums.Bolt11SemanticError semantic_error) { this.semantic_error = semantic_error; }
2432                 }
2433                 static native void init();
2434         }
2435         static { LDKParseOrSemanticError.init(); }
2436         public static native LDKParseOrSemanticError LDKParseOrSemanticError_ref_from_ptr(long ptr);
2437         // struct LDKBolt11Invoice CResult_Bolt11InvoiceParseOrSemanticErrorZ_get_ok(LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ *NONNULL_PTR owner);
2438         public static native long CResult_Bolt11InvoiceParseOrSemanticErrorZ_get_ok(long owner);
2439         // struct LDKParseOrSemanticError CResult_Bolt11InvoiceParseOrSemanticErrorZ_get_err(LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ *NONNULL_PTR owner);
2440         public static native long CResult_Bolt11InvoiceParseOrSemanticErrorZ_get_err(long owner);
2441         // struct LDKSignedRawBolt11Invoice CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_get_ok(LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ *NONNULL_PTR owner);
2442         public static native long CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_get_ok(long owner);
2443         // struct LDKBolt11ParseError CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_get_err(LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ *NONNULL_PTR owner);
2444         public static native long CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_get_err(long owner);
2445         // struct LDKRawBolt11Invoice C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_get_a(LDKC3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ *NONNULL_PTR owner);
2446         public static native long C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_get_a(long owner);
2447         // struct LDKThirtyTwoBytes C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_get_b(LDKC3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ *NONNULL_PTR owner);
2448         public static native byte[] C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_get_b(long owner);
2449         // struct LDKBolt11InvoiceSignature C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_get_c(LDKC3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ *NONNULL_PTR owner);
2450         public static native long C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_get_c(long owner);
2451         // struct LDKPayeePubKey CResult_PayeePubKeySecp256k1ErrorZ_get_ok(LDKCResult_PayeePubKeySecp256k1ErrorZ *NONNULL_PTR owner);
2452         public static native long CResult_PayeePubKeySecp256k1ErrorZ_get_ok(long owner);
2453         // enum LDKSecp256k1Error CResult_PayeePubKeySecp256k1ErrorZ_get_err(LDKCResult_PayeePubKeySecp256k1ErrorZ *NONNULL_PTR owner);
2454         public static native Secp256k1Error CResult_PayeePubKeySecp256k1ErrorZ_get_err(long owner);
2455         // struct LDKPositiveTimestamp CResult_PositiveTimestampCreationErrorZ_get_ok(LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR owner);
2456         public static native long CResult_PositiveTimestampCreationErrorZ_get_ok(long owner);
2457         // enum LDKCreationError CResult_PositiveTimestampCreationErrorZ_get_err(LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR owner);
2458         public static native CreationError CResult_PositiveTimestampCreationErrorZ_get_err(long owner);
2459         // void CResult_NoneBolt11SemanticErrorZ_get_ok(LDKCResult_NoneBolt11SemanticErrorZ *NONNULL_PTR owner);
2460         public static native void CResult_NoneBolt11SemanticErrorZ_get_ok(long owner);
2461         // enum LDKBolt11SemanticError CResult_NoneBolt11SemanticErrorZ_get_err(LDKCResult_NoneBolt11SemanticErrorZ *NONNULL_PTR owner);
2462         public static native Bolt11SemanticError CResult_NoneBolt11SemanticErrorZ_get_err(long owner);
2463         // struct LDKBolt11Invoice CResult_Bolt11InvoiceBolt11SemanticErrorZ_get_ok(LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ *NONNULL_PTR owner);
2464         public static native long CResult_Bolt11InvoiceBolt11SemanticErrorZ_get_ok(long owner);
2465         // enum LDKBolt11SemanticError CResult_Bolt11InvoiceBolt11SemanticErrorZ_get_err(LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ *NONNULL_PTR owner);
2466         public static native Bolt11SemanticError CResult_Bolt11InvoiceBolt11SemanticErrorZ_get_err(long owner);
2467         // struct LDKDescription CResult_DescriptionCreationErrorZ_get_ok(LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR owner);
2468         public static native long CResult_DescriptionCreationErrorZ_get_ok(long owner);
2469         // enum LDKCreationError CResult_DescriptionCreationErrorZ_get_err(LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR owner);
2470         public static native CreationError CResult_DescriptionCreationErrorZ_get_err(long owner);
2471         // struct LDKPrivateRoute CResult_PrivateRouteCreationErrorZ_get_ok(LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR owner);
2472         public static native long CResult_PrivateRouteCreationErrorZ_get_ok(long owner);
2473         // enum LDKCreationError CResult_PrivateRouteCreationErrorZ_get_err(LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR owner);
2474         public static native CreationError CResult_PrivateRouteCreationErrorZ_get_err(long owner);
2475         // struct LDKOutPoint CResult_OutPointDecodeErrorZ_get_ok(LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR owner);
2476         public static native long CResult_OutPointDecodeErrorZ_get_ok(long owner);
2477         // struct LDKDecodeError CResult_OutPointDecodeErrorZ_get_err(LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR owner);
2478         public static native long CResult_OutPointDecodeErrorZ_get_err(long owner);
2479         // struct LDKBigSize CResult_BigSizeDecodeErrorZ_get_ok(LDKCResult_BigSizeDecodeErrorZ *NONNULL_PTR owner);
2480         public static native long CResult_BigSizeDecodeErrorZ_get_ok(long owner);
2481         // struct LDKDecodeError CResult_BigSizeDecodeErrorZ_get_err(LDKCResult_BigSizeDecodeErrorZ *NONNULL_PTR owner);
2482         public static native long CResult_BigSizeDecodeErrorZ_get_err(long owner);
2483         // struct LDKHostname CResult_HostnameDecodeErrorZ_get_ok(LDKCResult_HostnameDecodeErrorZ *NONNULL_PTR owner);
2484         public static native long CResult_HostnameDecodeErrorZ_get_ok(long owner);
2485         // struct LDKDecodeError CResult_HostnameDecodeErrorZ_get_err(LDKCResult_HostnameDecodeErrorZ *NONNULL_PTR owner);
2486         public static native long CResult_HostnameDecodeErrorZ_get_err(long owner);
2487         // struct LDKTransactionU16LenLimited CResult_TransactionU16LenLimitedNoneZ_get_ok(LDKCResult_TransactionU16LenLimitedNoneZ *NONNULL_PTR owner);
2488         public static native long CResult_TransactionU16LenLimitedNoneZ_get_ok(long owner);
2489         // void CResult_TransactionU16LenLimitedNoneZ_get_err(LDKCResult_TransactionU16LenLimitedNoneZ *NONNULL_PTR owner);
2490         public static native void CResult_TransactionU16LenLimitedNoneZ_get_err(long owner);
2491         // struct LDKTransactionU16LenLimited CResult_TransactionU16LenLimitedDecodeErrorZ_get_ok(LDKCResult_TransactionU16LenLimitedDecodeErrorZ *NONNULL_PTR owner);
2492         public static native long CResult_TransactionU16LenLimitedDecodeErrorZ_get_ok(long owner);
2493         // struct LDKDecodeError CResult_TransactionU16LenLimitedDecodeErrorZ_get_err(LDKCResult_TransactionU16LenLimitedDecodeErrorZ *NONNULL_PTR owner);
2494         public static native long CResult_TransactionU16LenLimitedDecodeErrorZ_get_err(long owner);
2495         // struct LDKUntrustedString CResult_UntrustedStringDecodeErrorZ_get_ok(LDKCResult_UntrustedStringDecodeErrorZ *NONNULL_PTR owner);
2496         public static native long CResult_UntrustedStringDecodeErrorZ_get_ok(long owner);
2497         // struct LDKDecodeError CResult_UntrustedStringDecodeErrorZ_get_err(LDKCResult_UntrustedStringDecodeErrorZ *NONNULL_PTR owner);
2498         public static native long CResult_UntrustedStringDecodeErrorZ_get_err(long owner);
2499         // struct LDKReceiveTlvs CResult_ReceiveTlvsDecodeErrorZ_get_ok(LDKCResult_ReceiveTlvsDecodeErrorZ *NONNULL_PTR owner);
2500         public static native long CResult_ReceiveTlvsDecodeErrorZ_get_ok(long owner);
2501         // struct LDKDecodeError CResult_ReceiveTlvsDecodeErrorZ_get_err(LDKCResult_ReceiveTlvsDecodeErrorZ *NONNULL_PTR owner);
2502         public static native long CResult_ReceiveTlvsDecodeErrorZ_get_err(long owner);
2503         // struct LDKPaymentRelay CResult_PaymentRelayDecodeErrorZ_get_ok(LDKCResult_PaymentRelayDecodeErrorZ *NONNULL_PTR owner);
2504         public static native long CResult_PaymentRelayDecodeErrorZ_get_ok(long owner);
2505         // struct LDKDecodeError CResult_PaymentRelayDecodeErrorZ_get_err(LDKCResult_PaymentRelayDecodeErrorZ *NONNULL_PTR owner);
2506         public static native long CResult_PaymentRelayDecodeErrorZ_get_err(long owner);
2507         // struct LDKPaymentConstraints CResult_PaymentConstraintsDecodeErrorZ_get_ok(LDKCResult_PaymentConstraintsDecodeErrorZ *NONNULL_PTR owner);
2508         public static native long CResult_PaymentConstraintsDecodeErrorZ_get_ok(long owner);
2509         // struct LDKDecodeError CResult_PaymentConstraintsDecodeErrorZ_get_err(LDKCResult_PaymentConstraintsDecodeErrorZ *NONNULL_PTR owner);
2510         public static native long CResult_PaymentConstraintsDecodeErrorZ_get_err(long owner);
2511         public static class LDKPaymentError {
2512                 private LDKPaymentError() {}
2513                 public final static class Invoice extends LDKPaymentError {
2514                         public java.lang.String invoice;
2515                         Invoice(java.lang.String invoice) { this.invoice = invoice; }
2516                 }
2517                 public final static class Sending extends LDKPaymentError {
2518                         public org.ldk.enums.RetryableSendFailure sending;
2519                         Sending(org.ldk.enums.RetryableSendFailure sending) { this.sending = sending; }
2520                 }
2521                 static native void init();
2522         }
2523         static { LDKPaymentError.init(); }
2524         public static native LDKPaymentError LDKPaymentError_ref_from_ptr(long ptr);
2525         // struct LDKThirtyTwoBytes CResult_ThirtyTwoBytesPaymentErrorZ_get_ok(LDKCResult_ThirtyTwoBytesPaymentErrorZ *NONNULL_PTR owner);
2526         public static native byte[] CResult_ThirtyTwoBytesPaymentErrorZ_get_ok(long owner);
2527         // struct LDKPaymentError CResult_ThirtyTwoBytesPaymentErrorZ_get_err(LDKCResult_ThirtyTwoBytesPaymentErrorZ *NONNULL_PTR owner);
2528         public static native long CResult_ThirtyTwoBytesPaymentErrorZ_get_err(long owner);
2529         // void CResult_NonePaymentErrorZ_get_ok(LDKCResult_NonePaymentErrorZ *NONNULL_PTR owner);
2530         public static native void CResult_NonePaymentErrorZ_get_ok(long owner);
2531         // struct LDKPaymentError CResult_NonePaymentErrorZ_get_err(LDKCResult_NonePaymentErrorZ *NONNULL_PTR owner);
2532         public static native long CResult_NonePaymentErrorZ_get_err(long owner);
2533         public static class LDKProbingError {
2534                 private LDKProbingError() {}
2535                 public final static class Invoice extends LDKProbingError {
2536                         public java.lang.String invoice;
2537                         Invoice(java.lang.String invoice) { this.invoice = invoice; }
2538                 }
2539                 public final static class Sending extends LDKProbingError {
2540                         public long sending;
2541                         Sending(long sending) { this.sending = sending; }
2542                 }
2543                 static native void init();
2544         }
2545         static { LDKProbingError.init(); }
2546         public static native LDKProbingError LDKProbingError_ref_from_ptr(long ptr);
2547         // struct LDKCVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZ CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_get_ok(LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ *NONNULL_PTR owner);
2548         public static native long[] CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_get_ok(long owner);
2549         // struct LDKProbingError CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_get_err(LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ *NONNULL_PTR owner);
2550         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_get_err(long owner);
2551         // struct LDKStr CResult_StrSecp256k1ErrorZ_get_ok(LDKCResult_StrSecp256k1ErrorZ *NONNULL_PTR owner);
2552         public static native String CResult_StrSecp256k1ErrorZ_get_ok(long owner);
2553         // enum LDKSecp256k1Error CResult_StrSecp256k1ErrorZ_get_err(LDKCResult_StrSecp256k1ErrorZ *NONNULL_PTR owner);
2554         public static native Secp256k1Error CResult_StrSecp256k1ErrorZ_get_err(long owner);
2555         // struct LDKOnionMessagePath CResult_OnionMessagePathNoneZ_get_ok(LDKCResult_OnionMessagePathNoneZ *NONNULL_PTR owner);
2556         public static native long CResult_OnionMessagePathNoneZ_get_ok(long owner);
2557         // void CResult_OnionMessagePathNoneZ_get_err(LDKCResult_OnionMessagePathNoneZ *NONNULL_PTR owner);
2558         public static native void CResult_OnionMessagePathNoneZ_get_err(long owner);
2559         // struct LDKPublicKey C2Tuple_PublicKeyOnionMessageZ_get_a(LDKC2Tuple_PublicKeyOnionMessageZ *NONNULL_PTR owner);
2560         public static native byte[] C2Tuple_PublicKeyOnionMessageZ_get_a(long owner);
2561         // struct LDKOnionMessage C2Tuple_PublicKeyOnionMessageZ_get_b(LDKC2Tuple_PublicKeyOnionMessageZ *NONNULL_PTR owner);
2562         public static native long C2Tuple_PublicKeyOnionMessageZ_get_b(long owner);
2563         public static class LDKSendError {
2564                 private LDKSendError() {}
2565                 public final static class Secp256k1 extends LDKSendError {
2566                         public org.ldk.enums.Secp256k1Error secp256k1;
2567                         Secp256k1(org.ldk.enums.Secp256k1Error secp256k1) { this.secp256k1 = secp256k1; }
2568                 }
2569                 public final static class TooBigPacket extends LDKSendError {
2570                         TooBigPacket() { }
2571                 }
2572                 public final static class TooFewBlindedHops extends LDKSendError {
2573                         TooFewBlindedHops() { }
2574                 }
2575                 public final static class InvalidFirstHop extends LDKSendError {
2576                         InvalidFirstHop() { }
2577                 }
2578                 public final static class InvalidMessage extends LDKSendError {
2579                         InvalidMessage() { }
2580                 }
2581                 public final static class BufferFull extends LDKSendError {
2582                         BufferFull() { }
2583                 }
2584                 public final static class GetNodeIdFailed extends LDKSendError {
2585                         GetNodeIdFailed() { }
2586                 }
2587                 public final static class BlindedPathAdvanceFailed extends LDKSendError {
2588                         BlindedPathAdvanceFailed() { }
2589                 }
2590                 static native void init();
2591         }
2592         static { LDKSendError.init(); }
2593         public static native LDKSendError LDKSendError_ref_from_ptr(long ptr);
2594         // struct LDKC2Tuple_PublicKeyOnionMessageZ CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_get_ok(LDKCResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ *NONNULL_PTR owner);
2595         public static native long CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_get_ok(long owner);
2596         // struct LDKSendError CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_get_err(LDKCResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ *NONNULL_PTR owner);
2597         public static native long CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_get_err(long owner);
2598         // void CResult_NoneSendErrorZ_get_ok(LDKCResult_NoneSendErrorZ *NONNULL_PTR owner);
2599         public static native void CResult_NoneSendErrorZ_get_ok(long owner);
2600         // struct LDKSendError CResult_NoneSendErrorZ_get_err(LDKCResult_NoneSendErrorZ *NONNULL_PTR owner);
2601         public static native long CResult_NoneSendErrorZ_get_err(long owner);
2602         // struct LDKBlindedPath CResult_BlindedPathNoneZ_get_ok(LDKCResult_BlindedPathNoneZ *NONNULL_PTR owner);
2603         public static native long CResult_BlindedPathNoneZ_get_ok(long owner);
2604         // void CResult_BlindedPathNoneZ_get_err(LDKCResult_BlindedPathNoneZ *NONNULL_PTR owner);
2605         public static native void CResult_BlindedPathNoneZ_get_err(long owner);
2606         // struct LDKC2Tuple_BlindedPayInfoBlindedPathZ CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_get_ok(LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ *NONNULL_PTR owner);
2607         public static native long CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_get_ok(long owner);
2608         // void CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_get_err(LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ *NONNULL_PTR owner);
2609         public static native void CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_get_err(long owner);
2610         // struct LDKBlindedPath CResult_BlindedPathDecodeErrorZ_get_ok(LDKCResult_BlindedPathDecodeErrorZ *NONNULL_PTR owner);
2611         public static native long CResult_BlindedPathDecodeErrorZ_get_ok(long owner);
2612         // struct LDKDecodeError CResult_BlindedPathDecodeErrorZ_get_err(LDKCResult_BlindedPathDecodeErrorZ *NONNULL_PTR owner);
2613         public static native long CResult_BlindedPathDecodeErrorZ_get_err(long owner);
2614         // struct LDKBlindedHop CResult_BlindedHopDecodeErrorZ_get_ok(LDKCResult_BlindedHopDecodeErrorZ *NONNULL_PTR owner);
2615         public static native long CResult_BlindedHopDecodeErrorZ_get_ok(long owner);
2616         // struct LDKDecodeError CResult_BlindedHopDecodeErrorZ_get_err(LDKCResult_BlindedHopDecodeErrorZ *NONNULL_PTR owner);
2617         public static native long CResult_BlindedHopDecodeErrorZ_get_err(long owner);
2618         // struct LDKInvoiceError CResult_InvoiceErrorDecodeErrorZ_get_ok(LDKCResult_InvoiceErrorDecodeErrorZ *NONNULL_PTR owner);
2619         public static native long CResult_InvoiceErrorDecodeErrorZ_get_ok(long owner);
2620         // struct LDKDecodeError CResult_InvoiceErrorDecodeErrorZ_get_err(LDKCResult_InvoiceErrorDecodeErrorZ *NONNULL_PTR owner);
2621         public static native long CResult_InvoiceErrorDecodeErrorZ_get_err(long owner);
2622         public interface LDKFilter {
2623                  void register_tx(byte[] txid, byte[] script_pubkey);
2624                  void register_output(long output);
2625         }
2626         public static native long LDKFilter_new(LDKFilter impl);
2627         // void Filter_register_tx LDKFilter *NONNULL_PTR this_arg, const uint8_t (*txid)[32], struct LDKu8slice script_pubkey
2628         public static native void Filter_register_tx(long this_arg, byte[] txid, byte[] script_pubkey);
2629         // void Filter_register_output LDKFilter *NONNULL_PTR this_arg, struct LDKWatchedOutput output
2630         public static native void Filter_register_output(long this_arg, long output);
2631         public static class LDKCOption_FilterZ {
2632                 private LDKCOption_FilterZ() {}
2633                 public final static class Some extends LDKCOption_FilterZ {
2634                         public long some;
2635                         Some(long some) { this.some = some; }
2636                 }
2637                 public final static class None extends LDKCOption_FilterZ {
2638                         None() { }
2639                 }
2640                 static native void init();
2641         }
2642         static { LDKCOption_FilterZ.init(); }
2643         public static native LDKCOption_FilterZ LDKCOption_FilterZ_ref_from_ptr(long ptr);
2644         // struct LDKLockedChannelMonitor CResult_LockedChannelMonitorNoneZ_get_ok(LDKCResult_LockedChannelMonitorNoneZ *NONNULL_PTR owner);
2645         public static native long CResult_LockedChannelMonitorNoneZ_get_ok(long owner);
2646         // void CResult_LockedChannelMonitorNoneZ_get_err(LDKCResult_LockedChannelMonitorNoneZ *NONNULL_PTR owner);
2647         public static native void CResult_LockedChannelMonitorNoneZ_get_err(long owner);
2648         // struct LDKOutPoint C2Tuple_OutPointCVec_MonitorUpdateIdZZ_get_a(LDKC2Tuple_OutPointCVec_MonitorUpdateIdZZ *NONNULL_PTR owner);
2649         public static native long C2Tuple_OutPointCVec_MonitorUpdateIdZZ_get_a(long owner);
2650         // struct LDKCVec_MonitorUpdateIdZ C2Tuple_OutPointCVec_MonitorUpdateIdZZ_get_b(LDKC2Tuple_OutPointCVec_MonitorUpdateIdZZ *NONNULL_PTR owner);
2651         public static native long[] C2Tuple_OutPointCVec_MonitorUpdateIdZZ_get_b(long owner);
2652         public interface LDKKVStore {
2653                  long read(String primary_namespace, String secondary_namespace, String key);
2654                  long write(String primary_namespace, String secondary_namespace, String key, byte[] buf);
2655                  long remove(String primary_namespace, String secondary_namespace, String key, boolean lazy);
2656                  long list(String primary_namespace, String secondary_namespace);
2657         }
2658         public static native long LDKKVStore_new(LDKKVStore impl);
2659         // LDKCResult_CVec_u8ZIOErrorZ KVStore_read LDKKVStore *NONNULL_PTR this_arg, struct LDKStr primary_namespace, struct LDKStr secondary_namespace, struct LDKStr key
2660         public static native long KVStore_read(long this_arg, String primary_namespace, String secondary_namespace, String key);
2661         // LDKCResult_NoneIOErrorZ KVStore_write LDKKVStore *NONNULL_PTR this_arg, struct LDKStr primary_namespace, struct LDKStr secondary_namespace, struct LDKStr key, struct LDKu8slice buf
2662         public static native long KVStore_write(long this_arg, String primary_namespace, String secondary_namespace, String key, byte[] buf);
2663         // LDKCResult_NoneIOErrorZ KVStore_remove LDKKVStore *NONNULL_PTR this_arg, struct LDKStr primary_namespace, struct LDKStr secondary_namespace, struct LDKStr key, bool lazy
2664         public static native long KVStore_remove(long this_arg, String primary_namespace, String secondary_namespace, String key, boolean lazy);
2665         // LDKCResult_CVec_StrZIOErrorZ KVStore_list LDKKVStore *NONNULL_PTR this_arg, struct LDKStr primary_namespace, struct LDKStr secondary_namespace
2666         public static native long KVStore_list(long this_arg, String primary_namespace, String secondary_namespace);
2667         public interface LDKPersister {
2668                  long persist_manager(long channel_manager);
2669                  long persist_graph(long network_graph);
2670                  long persist_scorer(long scorer);
2671         }
2672         public static native long LDKPersister_new(LDKPersister impl);
2673         // LDKCResult_NoneIOErrorZ Persister_persist_manager LDKPersister *NONNULL_PTR this_arg, const struct LDKChannelManager *NONNULL_PTR channel_manager
2674         public static native long Persister_persist_manager(long this_arg, long channel_manager);
2675         // LDKCResult_NoneIOErrorZ Persister_persist_graph LDKPersister *NONNULL_PTR this_arg, const struct LDKNetworkGraph *NONNULL_PTR network_graph
2676         public static native long Persister_persist_graph(long this_arg, long network_graph);
2677         // LDKCResult_NoneIOErrorZ Persister_persist_scorer LDKPersister *NONNULL_PTR this_arg, const struct LDKWriteableScore *NONNULL_PTR scorer
2678         public static native long Persister_persist_scorer(long this_arg, long scorer);
2679         public interface LDKPersist {
2680                  ChannelMonitorUpdateStatus persist_new_channel(long channel_id, long data, long update_id);
2681                  ChannelMonitorUpdateStatus update_persisted_channel(long channel_id, long update, long data, long update_id);
2682         }
2683         public static native long LDKPersist_new(LDKPersist impl);
2684         // LDKChannelMonitorUpdateStatus Persist_persist_new_channel LDKPersist *NONNULL_PTR this_arg, struct LDKOutPoint channel_id, const struct LDKChannelMonitor *NONNULL_PTR data, struct LDKMonitorUpdateId update_id
2685         public static native ChannelMonitorUpdateStatus Persist_persist_new_channel(long this_arg, long channel_id, long data, long update_id);
2686         // LDKChannelMonitorUpdateStatus Persist_update_persisted_channel LDKPersist *NONNULL_PTR this_arg, struct LDKOutPoint channel_id, struct LDKChannelMonitorUpdate update, const struct LDKChannelMonitor *NONNULL_PTR data, struct LDKMonitorUpdateId update_id
2687         public static native ChannelMonitorUpdateStatus Persist_update_persisted_channel(long this_arg, long channel_id, long update, long data, long update_id);
2688         public interface LDKFutureCallback {
2689                  void call();
2690         }
2691         public static native long LDKFutureCallback_new(LDKFutureCallback impl);
2692         // void FutureCallback_call LDKFutureCallback *NONNULL_PTR this_arg
2693         public static native void FutureCallback_call(long this_arg);
2694         public interface LDKListen {
2695                  void filtered_block_connected(byte[] header, long[] txdata, int height);
2696                  void block_connected(byte[] block, int height);
2697                  void block_disconnected(byte[] header, int height);
2698         }
2699         public static native long LDKListen_new(LDKListen impl);
2700         // void Listen_filtered_block_connected LDKListen *NONNULL_PTR this_arg, const uint8_t (*header)[80], struct LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height
2701         public static native void Listen_filtered_block_connected(long this_arg, byte[] header, long[] txdata, int height);
2702         // void Listen_block_connected LDKListen *NONNULL_PTR this_arg, struct LDKu8slice block, uint32_t height
2703         public static native void Listen_block_connected(long this_arg, byte[] block, int height);
2704         // void Listen_block_disconnected LDKListen *NONNULL_PTR this_arg, const uint8_t (*header)[80], uint32_t height
2705         public static native void Listen_block_disconnected(long this_arg, byte[] header, int height);
2706         public interface LDKConfirm {
2707                  void transactions_confirmed(byte[] header, long[] txdata, int height);
2708                  void transaction_unconfirmed(byte[] txid);
2709                  void best_block_updated(byte[] header, int height);
2710                  long[] get_relevant_txids();
2711         }
2712         public static native long LDKConfirm_new(LDKConfirm impl);
2713         // void Confirm_transactions_confirmed LDKConfirm *NONNULL_PTR this_arg, const uint8_t (*header)[80], struct LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height
2714         public static native void Confirm_transactions_confirmed(long this_arg, byte[] header, long[] txdata, int height);
2715         // void Confirm_transaction_unconfirmed LDKConfirm *NONNULL_PTR this_arg, const uint8_t (*txid)[32]
2716         public static native void Confirm_transaction_unconfirmed(long this_arg, byte[] txid);
2717         // void Confirm_best_block_updated LDKConfirm *NONNULL_PTR this_arg, const uint8_t (*header)[80], uint32_t height
2718         public static native void Confirm_best_block_updated(long this_arg, byte[] header, int height);
2719         // LDKCVec_C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZZ Confirm_get_relevant_txids LDKConfirm *NONNULL_PTR this_arg
2720         public static native long[] Confirm_get_relevant_txids(long this_arg);
2721         public interface LDKEventHandler {
2722                  void handle_event(long event);
2723         }
2724         public static native long LDKEventHandler_new(LDKEventHandler impl);
2725         // void EventHandler_handle_event LDKEventHandler *NONNULL_PTR this_arg, struct LDKEvent event
2726         public static native void EventHandler_handle_event(long this_arg, long event);
2727         public interface LDKEventsProvider {
2728                  void process_pending_events(long handler);
2729         }
2730         public static native long LDKEventsProvider_new(LDKEventsProvider impl);
2731         // void EventsProvider_process_pending_events LDKEventsProvider *NONNULL_PTR this_arg, struct LDKEventHandler handler
2732         public static native void EventsProvider_process_pending_events(long this_arg, long handler);
2733         public static class LDKFailureCode {
2734                 private LDKFailureCode() {}
2735                 public final static class TemporaryNodeFailure extends LDKFailureCode {
2736                         TemporaryNodeFailure() { }
2737                 }
2738                 public final static class RequiredNodeFeatureMissing extends LDKFailureCode {
2739                         RequiredNodeFeatureMissing() { }
2740                 }
2741                 public final static class IncorrectOrUnknownPaymentDetails extends LDKFailureCode {
2742                         IncorrectOrUnknownPaymentDetails() { }
2743                 }
2744                 public final static class InvalidOnionPayload extends LDKFailureCode {
2745                         public long invalid_onion_payload;
2746                         InvalidOnionPayload(long invalid_onion_payload) { this.invalid_onion_payload = invalid_onion_payload; }
2747                 }
2748                 static native void init();
2749         }
2750         static { LDKFailureCode.init(); }
2751         public static native LDKFailureCode LDKFailureCode_ref_from_ptr(long ptr);
2752         public interface LDKMessageSendEventsProvider {
2753                  long[] get_and_clear_pending_msg_events();
2754         }
2755         public static native long LDKMessageSendEventsProvider_new(LDKMessageSendEventsProvider impl);
2756         // LDKCVec_MessageSendEventZ MessageSendEventsProvider_get_and_clear_pending_msg_events LDKMessageSendEventsProvider *NONNULL_PTR this_arg
2757         public static native long[] MessageSendEventsProvider_get_and_clear_pending_msg_events(long this_arg);
2758         public interface LDKChannelMessageHandler {
2759                  void handle_open_channel(byte[] their_node_id, long msg);
2760                  void handle_open_channel_v2(byte[] their_node_id, long msg);
2761                  void handle_accept_channel(byte[] their_node_id, long msg);
2762                  void handle_accept_channel_v2(byte[] their_node_id, long msg);
2763                  void handle_funding_created(byte[] their_node_id, long msg);
2764                  void handle_funding_signed(byte[] their_node_id, long msg);
2765                  void handle_channel_ready(byte[] their_node_id, long msg);
2766                  void handle_shutdown(byte[] their_node_id, long msg);
2767                  void handle_closing_signed(byte[] their_node_id, long msg);
2768                  void handle_tx_add_input(byte[] their_node_id, long msg);
2769                  void handle_tx_add_output(byte[] their_node_id, long msg);
2770                  void handle_tx_remove_input(byte[] their_node_id, long msg);
2771                  void handle_tx_remove_output(byte[] their_node_id, long msg);
2772                  void handle_tx_complete(byte[] their_node_id, long msg);
2773                  void handle_tx_signatures(byte[] their_node_id, long msg);
2774                  void handle_tx_init_rbf(byte[] their_node_id, long msg);
2775                  void handle_tx_ack_rbf(byte[] their_node_id, long msg);
2776                  void handle_tx_abort(byte[] their_node_id, long msg);
2777                  void handle_update_add_htlc(byte[] their_node_id, long msg);
2778                  void handle_update_fulfill_htlc(byte[] their_node_id, long msg);
2779                  void handle_update_fail_htlc(byte[] their_node_id, long msg);
2780                  void handle_update_fail_malformed_htlc(byte[] their_node_id, long msg);
2781                  void handle_commitment_signed(byte[] their_node_id, long msg);
2782                  void handle_revoke_and_ack(byte[] their_node_id, long msg);
2783                  void handle_update_fee(byte[] their_node_id, long msg);
2784                  void handle_announcement_signatures(byte[] their_node_id, long msg);
2785                  void peer_disconnected(byte[] their_node_id);
2786                  long peer_connected(byte[] their_node_id, long msg, boolean inbound);
2787                  void handle_channel_reestablish(byte[] their_node_id, long msg);
2788                  void handle_channel_update(byte[] their_node_id, long msg);
2789                  void handle_error(byte[] their_node_id, long msg);
2790                  long provided_node_features();
2791                  long provided_init_features(byte[] their_node_id);
2792                  long get_genesis_hashes();
2793         }
2794         public static native long LDKChannelMessageHandler_new(LDKChannelMessageHandler impl, LDKMessageSendEventsProvider MessageSendEventsProvider);
2795         public static native long LDKChannelMessageHandler_get_MessageSendEventsProvider(long arg);
2796         // void ChannelMessageHandler_handle_open_channel LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKOpenChannel *NONNULL_PTR msg
2797         public static native void ChannelMessageHandler_handle_open_channel(long this_arg, byte[] their_node_id, long msg);
2798         // void ChannelMessageHandler_handle_open_channel_v2 LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKOpenChannelV2 *NONNULL_PTR msg
2799         public static native void ChannelMessageHandler_handle_open_channel_v2(long this_arg, byte[] their_node_id, long msg);
2800         // void ChannelMessageHandler_handle_accept_channel LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKAcceptChannel *NONNULL_PTR msg
2801         public static native void ChannelMessageHandler_handle_accept_channel(long this_arg, byte[] their_node_id, long msg);
2802         // void ChannelMessageHandler_handle_accept_channel_v2 LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKAcceptChannelV2 *NONNULL_PTR msg
2803         public static native void ChannelMessageHandler_handle_accept_channel_v2(long this_arg, byte[] their_node_id, long msg);
2804         // void ChannelMessageHandler_handle_funding_created LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKFundingCreated *NONNULL_PTR msg
2805         public static native void ChannelMessageHandler_handle_funding_created(long this_arg, byte[] their_node_id, long msg);
2806         // void ChannelMessageHandler_handle_funding_signed LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKFundingSigned *NONNULL_PTR msg
2807         public static native void ChannelMessageHandler_handle_funding_signed(long this_arg, byte[] their_node_id, long msg);
2808         // void ChannelMessageHandler_handle_channel_ready LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKChannelReady *NONNULL_PTR msg
2809         public static native void ChannelMessageHandler_handle_channel_ready(long this_arg, byte[] their_node_id, long msg);
2810         // void ChannelMessageHandler_handle_shutdown LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKShutdown *NONNULL_PTR msg
2811         public static native void ChannelMessageHandler_handle_shutdown(long this_arg, byte[] their_node_id, long msg);
2812         // void ChannelMessageHandler_handle_closing_signed LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKClosingSigned *NONNULL_PTR msg
2813         public static native void ChannelMessageHandler_handle_closing_signed(long this_arg, byte[] their_node_id, long msg);
2814         // void ChannelMessageHandler_handle_tx_add_input LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKTxAddInput *NONNULL_PTR msg
2815         public static native void ChannelMessageHandler_handle_tx_add_input(long this_arg, byte[] their_node_id, long msg);
2816         // void ChannelMessageHandler_handle_tx_add_output LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKTxAddOutput *NONNULL_PTR msg
2817         public static native void ChannelMessageHandler_handle_tx_add_output(long this_arg, byte[] their_node_id, long msg);
2818         // void ChannelMessageHandler_handle_tx_remove_input LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKTxRemoveInput *NONNULL_PTR msg
2819         public static native void ChannelMessageHandler_handle_tx_remove_input(long this_arg, byte[] their_node_id, long msg);
2820         // void ChannelMessageHandler_handle_tx_remove_output LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKTxRemoveOutput *NONNULL_PTR msg
2821         public static native void ChannelMessageHandler_handle_tx_remove_output(long this_arg, byte[] their_node_id, long msg);
2822         // void ChannelMessageHandler_handle_tx_complete LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKTxComplete *NONNULL_PTR msg
2823         public static native void ChannelMessageHandler_handle_tx_complete(long this_arg, byte[] their_node_id, long msg);
2824         // void ChannelMessageHandler_handle_tx_signatures LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKTxSignatures *NONNULL_PTR msg
2825         public static native void ChannelMessageHandler_handle_tx_signatures(long this_arg, byte[] their_node_id, long msg);
2826         // void ChannelMessageHandler_handle_tx_init_rbf LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKTxInitRbf *NONNULL_PTR msg
2827         public static native void ChannelMessageHandler_handle_tx_init_rbf(long this_arg, byte[] their_node_id, long msg);
2828         // void ChannelMessageHandler_handle_tx_ack_rbf LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKTxAckRbf *NONNULL_PTR msg
2829         public static native void ChannelMessageHandler_handle_tx_ack_rbf(long this_arg, byte[] their_node_id, long msg);
2830         // void ChannelMessageHandler_handle_tx_abort LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKTxAbort *NONNULL_PTR msg
2831         public static native void ChannelMessageHandler_handle_tx_abort(long this_arg, byte[] their_node_id, long msg);
2832         // void ChannelMessageHandler_handle_update_add_htlc LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateAddHTLC *NONNULL_PTR msg
2833         public static native void ChannelMessageHandler_handle_update_add_htlc(long this_arg, byte[] their_node_id, long msg);
2834         // void ChannelMessageHandler_handle_update_fulfill_htlc LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFulfillHTLC *NONNULL_PTR msg
2835         public static native void ChannelMessageHandler_handle_update_fulfill_htlc(long this_arg, byte[] their_node_id, long msg);
2836         // void ChannelMessageHandler_handle_update_fail_htlc LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFailHTLC *NONNULL_PTR msg
2837         public static native void ChannelMessageHandler_handle_update_fail_htlc(long this_arg, byte[] their_node_id, long msg);
2838         // void ChannelMessageHandler_handle_update_fail_malformed_htlc LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR msg
2839         public static native void ChannelMessageHandler_handle_update_fail_malformed_htlc(long this_arg, byte[] their_node_id, long msg);
2840         // void ChannelMessageHandler_handle_commitment_signed LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKCommitmentSigned *NONNULL_PTR msg
2841         public static native void ChannelMessageHandler_handle_commitment_signed(long this_arg, byte[] their_node_id, long msg);
2842         // void ChannelMessageHandler_handle_revoke_and_ack LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKRevokeAndACK *NONNULL_PTR msg
2843         public static native void ChannelMessageHandler_handle_revoke_and_ack(long this_arg, byte[] their_node_id, long msg);
2844         // void ChannelMessageHandler_handle_update_fee LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFee *NONNULL_PTR msg
2845         public static native void ChannelMessageHandler_handle_update_fee(long this_arg, byte[] their_node_id, long msg);
2846         // void ChannelMessageHandler_handle_announcement_signatures LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKAnnouncementSignatures *NONNULL_PTR msg
2847         public static native void ChannelMessageHandler_handle_announcement_signatures(long this_arg, byte[] their_node_id, long msg);
2848         // void ChannelMessageHandler_peer_disconnected LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id
2849         public static native void ChannelMessageHandler_peer_disconnected(long this_arg, byte[] their_node_id);
2850         // LDKCResult_NoneNoneZ ChannelMessageHandler_peer_connected LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKInit *NONNULL_PTR msg, bool inbound
2851         public static native long ChannelMessageHandler_peer_connected(long this_arg, byte[] their_node_id, long msg, boolean inbound);
2852         // void ChannelMessageHandler_handle_channel_reestablish LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKChannelReestablish *NONNULL_PTR msg
2853         public static native void ChannelMessageHandler_handle_channel_reestablish(long this_arg, byte[] their_node_id, long msg);
2854         // void ChannelMessageHandler_handle_channel_update LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKChannelUpdate *NONNULL_PTR msg
2855         public static native void ChannelMessageHandler_handle_channel_update(long this_arg, byte[] their_node_id, long msg);
2856         // void ChannelMessageHandler_handle_error LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKErrorMessage *NONNULL_PTR msg
2857         public static native void ChannelMessageHandler_handle_error(long this_arg, byte[] their_node_id, long msg);
2858         // LDKNodeFeatures ChannelMessageHandler_provided_node_features LDKChannelMessageHandler *NONNULL_PTR this_arg
2859         public static native long ChannelMessageHandler_provided_node_features(long this_arg);
2860         // LDKInitFeatures ChannelMessageHandler_provided_init_features LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id
2861         public static native long ChannelMessageHandler_provided_init_features(long this_arg, byte[] their_node_id);
2862         // LDKCOption_CVec_ThirtyTwoBytesZZ ChannelMessageHandler_get_genesis_hashes LDKChannelMessageHandler *NONNULL_PTR this_arg
2863         public static native long ChannelMessageHandler_get_genesis_hashes(long this_arg);
2864         public interface LDKRoutingMessageHandler {
2865                  long handle_node_announcement(long msg);
2866                  long handle_channel_announcement(long msg);
2867                  long handle_channel_update(long msg);
2868                  long get_next_channel_announcement(long starting_point);
2869                  long get_next_node_announcement(long starting_point);
2870                  long peer_connected(byte[] their_node_id, long init, boolean inbound);
2871                  long handle_reply_channel_range(byte[] their_node_id, long msg);
2872                  long handle_reply_short_channel_ids_end(byte[] their_node_id, long msg);
2873                  long handle_query_channel_range(byte[] their_node_id, long msg);
2874                  long handle_query_short_channel_ids(byte[] their_node_id, long msg);
2875                  boolean processing_queue_high();
2876                  long provided_node_features();
2877                  long provided_init_features(byte[] their_node_id);
2878         }
2879         public static native long LDKRoutingMessageHandler_new(LDKRoutingMessageHandler impl, LDKMessageSendEventsProvider MessageSendEventsProvider);
2880         public static native long LDKRoutingMessageHandler_get_MessageSendEventsProvider(long arg);
2881         // LDKCResult_boolLightningErrorZ RoutingMessageHandler_handle_node_announcement LDKRoutingMessageHandler *NONNULL_PTR this_arg, const struct LDKNodeAnnouncement *NONNULL_PTR msg
2882         public static native long RoutingMessageHandler_handle_node_announcement(long this_arg, long msg);
2883         // LDKCResult_boolLightningErrorZ RoutingMessageHandler_handle_channel_announcement LDKRoutingMessageHandler *NONNULL_PTR this_arg, const struct LDKChannelAnnouncement *NONNULL_PTR msg
2884         public static native long RoutingMessageHandler_handle_channel_announcement(long this_arg, long msg);
2885         // LDKCResult_boolLightningErrorZ RoutingMessageHandler_handle_channel_update LDKRoutingMessageHandler *NONNULL_PTR this_arg, const struct LDKChannelUpdate *NONNULL_PTR msg
2886         public static native long RoutingMessageHandler_handle_channel_update(long this_arg, long msg);
2887         // LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ RoutingMessageHandler_get_next_channel_announcement LDKRoutingMessageHandler *NONNULL_PTR this_arg, uint64_t starting_point
2888         public static native long RoutingMessageHandler_get_next_channel_announcement(long this_arg, long starting_point);
2889         // LDKNodeAnnouncement RoutingMessageHandler_get_next_node_announcement LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKNodeId starting_point
2890         public static native long RoutingMessageHandler_get_next_node_announcement(long this_arg, long starting_point);
2891         // LDKCResult_NoneNoneZ RoutingMessageHandler_peer_connected LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKInit *NONNULL_PTR init, bool inbound
2892         public static native long RoutingMessageHandler_peer_connected(long this_arg, byte[] their_node_id, long init, boolean inbound);
2893         // LDKCResult_NoneLightningErrorZ RoutingMessageHandler_handle_reply_channel_range LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKReplyChannelRange msg
2894         public static native long RoutingMessageHandler_handle_reply_channel_range(long this_arg, byte[] their_node_id, long msg);
2895         // LDKCResult_NoneLightningErrorZ RoutingMessageHandler_handle_reply_short_channel_ids_end LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKReplyShortChannelIdsEnd msg
2896         public static native long RoutingMessageHandler_handle_reply_short_channel_ids_end(long this_arg, byte[] their_node_id, long msg);
2897         // LDKCResult_NoneLightningErrorZ RoutingMessageHandler_handle_query_channel_range LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKQueryChannelRange msg
2898         public static native long RoutingMessageHandler_handle_query_channel_range(long this_arg, byte[] their_node_id, long msg);
2899         // LDKCResult_NoneLightningErrorZ RoutingMessageHandler_handle_query_short_channel_ids LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKQueryShortChannelIds msg
2900         public static native long RoutingMessageHandler_handle_query_short_channel_ids(long this_arg, byte[] their_node_id, long msg);
2901         // bool RoutingMessageHandler_processing_queue_high LDKRoutingMessageHandler *NONNULL_PTR this_arg
2902         public static native boolean RoutingMessageHandler_processing_queue_high(long this_arg);
2903         // LDKNodeFeatures RoutingMessageHandler_provided_node_features LDKRoutingMessageHandler *NONNULL_PTR this_arg
2904         public static native long RoutingMessageHandler_provided_node_features(long this_arg);
2905         // LDKInitFeatures RoutingMessageHandler_provided_init_features LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id
2906         public static native long RoutingMessageHandler_provided_init_features(long this_arg, byte[] their_node_id);
2907         public interface LDKOnionMessageProvider {
2908                  long next_onion_message_for_peer(byte[] peer_node_id);
2909         }
2910         public static native long LDKOnionMessageProvider_new(LDKOnionMessageProvider impl);
2911         // LDKOnionMessage OnionMessageProvider_next_onion_message_for_peer LDKOnionMessageProvider *NONNULL_PTR this_arg, struct LDKPublicKey peer_node_id
2912         public static native long OnionMessageProvider_next_onion_message_for_peer(long this_arg, byte[] peer_node_id);
2913         public interface LDKOnionMessageHandler {
2914                  void handle_onion_message(byte[] peer_node_id, long msg);
2915                  long peer_connected(byte[] their_node_id, long init, boolean inbound);
2916                  void peer_disconnected(byte[] their_node_id);
2917                  long provided_node_features();
2918                  long provided_init_features(byte[] their_node_id);
2919         }
2920         public static native long LDKOnionMessageHandler_new(LDKOnionMessageHandler impl, LDKOnionMessageProvider OnionMessageProvider);
2921         public static native long LDKOnionMessageHandler_get_OnionMessageProvider(long arg);
2922         // void OnionMessageHandler_handle_onion_message LDKOnionMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey peer_node_id, const struct LDKOnionMessage *NONNULL_PTR msg
2923         public static native void OnionMessageHandler_handle_onion_message(long this_arg, byte[] peer_node_id, long msg);
2924         // LDKCResult_NoneNoneZ OnionMessageHandler_peer_connected LDKOnionMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKInit *NONNULL_PTR init, bool inbound
2925         public static native long OnionMessageHandler_peer_connected(long this_arg, byte[] their_node_id, long init, boolean inbound);
2926         // void OnionMessageHandler_peer_disconnected LDKOnionMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id
2927         public static native void OnionMessageHandler_peer_disconnected(long this_arg, byte[] their_node_id);
2928         // LDKNodeFeatures OnionMessageHandler_provided_node_features LDKOnionMessageHandler *NONNULL_PTR this_arg
2929         public static native long OnionMessageHandler_provided_node_features(long this_arg);
2930         // LDKInitFeatures OnionMessageHandler_provided_init_features LDKOnionMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id
2931         public static native long OnionMessageHandler_provided_init_features(long this_arg, byte[] their_node_id);
2932         public interface LDKCustomMessageReader {
2933                  long read(short message_type, byte[] buffer);
2934         }
2935         public static native long LDKCustomMessageReader_new(LDKCustomMessageReader impl);
2936         // LDKCResult_COption_TypeZDecodeErrorZ CustomMessageReader_read LDKCustomMessageReader *NONNULL_PTR this_arg, uint16_t message_type, struct LDKu8slice buffer
2937         public static native long CustomMessageReader_read(long this_arg, short message_type, byte[] buffer);
2938         public interface LDKCustomMessageHandler {
2939                  long handle_custom_message(long msg, byte[] sender_node_id);
2940                  long[] get_and_clear_pending_msg();
2941                  long provided_node_features();
2942                  long provided_init_features(byte[] their_node_id);
2943         }
2944         public static native long LDKCustomMessageHandler_new(LDKCustomMessageHandler impl, LDKCustomMessageReader CustomMessageReader);
2945         public static native long LDKCustomMessageHandler_get_CustomMessageReader(long arg);
2946         // LDKCResult_NoneLightningErrorZ CustomMessageHandler_handle_custom_message LDKCustomMessageHandler *NONNULL_PTR this_arg, struct LDKType msg, struct LDKPublicKey sender_node_id
2947         public static native long CustomMessageHandler_handle_custom_message(long this_arg, long msg, byte[] sender_node_id);
2948         // LDKCVec_C2Tuple_PublicKeyTypeZZ CustomMessageHandler_get_and_clear_pending_msg LDKCustomMessageHandler *NONNULL_PTR this_arg
2949         public static native long[] CustomMessageHandler_get_and_clear_pending_msg(long this_arg);
2950         // LDKNodeFeatures CustomMessageHandler_provided_node_features LDKCustomMessageHandler *NONNULL_PTR this_arg
2951         public static native long CustomMessageHandler_provided_node_features(long this_arg);
2952         // LDKInitFeatures CustomMessageHandler_provided_init_features LDKCustomMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id
2953         public static native long CustomMessageHandler_provided_init_features(long this_arg, byte[] their_node_id);
2954         public interface LDKOffersMessageHandler {
2955                  long handle_message(long message);
2956         }
2957         public static native long LDKOffersMessageHandler_new(LDKOffersMessageHandler impl);
2958         // LDKCOption_OffersMessageZ OffersMessageHandler_handle_message LDKOffersMessageHandler *NONNULL_PTR this_arg, struct LDKOffersMessage message
2959         public static native long OffersMessageHandler_handle_message(long this_arg, long message);
2960         public interface LDKCustomOnionMessageHandler {
2961                  long handle_custom_message(long msg);
2962                  long read_custom_message(long message_type, byte[] buffer);
2963         }
2964         public static native long LDKCustomOnionMessageHandler_new(LDKCustomOnionMessageHandler impl);
2965         // LDKCOption_CustomOnionMessageContentsZ CustomOnionMessageHandler_handle_custom_message LDKCustomOnionMessageHandler *NONNULL_PTR this_arg, struct LDKCustomOnionMessageContents msg
2966         public static native long CustomOnionMessageHandler_handle_custom_message(long this_arg, long msg);
2967         // LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ CustomOnionMessageHandler_read_custom_message LDKCustomOnionMessageHandler *NONNULL_PTR this_arg, uint64_t message_type, struct LDKu8slice buffer
2968         public static native long CustomOnionMessageHandler_read_custom_message(long this_arg, long message_type, byte[] buffer);
2969         public interface LDKSocketDescriptor {
2970                  long send_data(byte[] data, boolean resume_read);
2971                  void disconnect_socket();
2972                  boolean eq(long other_arg);
2973                  long hash();
2974         }
2975         public static native long LDKSocketDescriptor_new(LDKSocketDescriptor impl);
2976         // uintptr_t SocketDescriptor_send_data LDKSocketDescriptor *NONNULL_PTR this_arg, struct LDKu8slice data, bool resume_read
2977         public static native long SocketDescriptor_send_data(long this_arg, byte[] data, boolean resume_read);
2978         // void SocketDescriptor_disconnect_socket LDKSocketDescriptor *NONNULL_PTR this_arg
2979         public static native void SocketDescriptor_disconnect_socket(long this_arg);
2980         // uint64_t SocketDescriptor_hash LDKSocketDescriptor *NONNULL_PTR this_arg
2981         public static native long SocketDescriptor_hash(long this_arg);
2982         public static class LDKEffectiveCapacity {
2983                 private LDKEffectiveCapacity() {}
2984                 public final static class ExactLiquidity extends LDKEffectiveCapacity {
2985                         public long liquidity_msat;
2986                         ExactLiquidity(long liquidity_msat) { this.liquidity_msat = liquidity_msat; }
2987                 }
2988                 public final static class AdvertisedMaxHTLC extends LDKEffectiveCapacity {
2989                         public long amount_msat;
2990                         AdvertisedMaxHTLC(long amount_msat) { this.amount_msat = amount_msat; }
2991                 }
2992                 public final static class Total extends LDKEffectiveCapacity {
2993                         public long capacity_msat;
2994                         public long htlc_maximum_msat;
2995                         Total(long capacity_msat, long htlc_maximum_msat) { this.capacity_msat = capacity_msat; this.htlc_maximum_msat = htlc_maximum_msat; }
2996                 }
2997                 public final static class Infinite extends LDKEffectiveCapacity {
2998                         Infinite() { }
2999                 }
3000                 public final static class HintMaxHTLC extends LDKEffectiveCapacity {
3001                         public long amount_msat;
3002                         HintMaxHTLC(long amount_msat) { this.amount_msat = amount_msat; }
3003                 }
3004                 public final static class Unknown extends LDKEffectiveCapacity {
3005                         Unknown() { }
3006                 }
3007                 static native void init();
3008         }
3009         static { LDKEffectiveCapacity.init(); }
3010         public static native LDKEffectiveCapacity LDKEffectiveCapacity_ref_from_ptr(long ptr);
3011         public static class LDKPayee {
3012                 private LDKPayee() {}
3013                 public final static class Blinded extends LDKPayee {
3014                         public long[] route_hints;
3015                         public long features;
3016                         Blinded(long[] route_hints, long features) { this.route_hints = route_hints; this.features = features; }
3017                 }
3018                 public final static class Clear extends LDKPayee {
3019                         public byte[] node_id;
3020                         public long[] route_hints;
3021                         public long features;
3022                         public int final_cltv_expiry_delta;
3023                         Clear(byte[] node_id, long[] route_hints, long features, int final_cltv_expiry_delta) { this.node_id = node_id; this.route_hints = route_hints; this.features = features; this.final_cltv_expiry_delta = final_cltv_expiry_delta; }
3024                 }
3025                 static native void init();
3026         }
3027         static { LDKPayee.init(); }
3028         public static native LDKPayee LDKPayee_ref_from_ptr(long ptr);
3029         public interface LDKScore {
3030                  byte[] write();
3031         }
3032         public static native long LDKScore_new(LDKScore impl, LDKScoreLookUp ScoreLookUp, LDKScoreUpdate ScoreUpdate);
3033         public static native long LDKScore_get_ScoreLookUp(long arg);
3034         public static native long LDKScore_get_ScoreUpdate(long arg);
3035         // LDKCVec_u8Z Score_write LDKScore *NONNULL_PTR this_arg
3036         public static native byte[] Score_write(long this_arg);
3037         public static class LDKDestination {
3038                 private LDKDestination() {}
3039                 public final static class Node extends LDKDestination {
3040                         public byte[] node;
3041                         Node(byte[] node) { this.node = node; }
3042                 }
3043                 public final static class BlindedPath extends LDKDestination {
3044                         public long blinded_path;
3045                         BlindedPath(long blinded_path) { this.blinded_path = blinded_path; }
3046                 }
3047                 static native void init();
3048         }
3049         static { LDKDestination.init(); }
3050         public static native LDKDestination LDKDestination_ref_from_ptr(long ptr);
3051         public interface LDKMessageRouter {
3052                  long find_path(byte[] sender, byte[][] peers, long destination);
3053         }
3054         public static native long LDKMessageRouter_new(LDKMessageRouter impl);
3055         // LDKCResult_OnionMessagePathNoneZ MessageRouter_find_path LDKMessageRouter *NONNULL_PTR this_arg, struct LDKPublicKey sender, struct LDKCVec_PublicKeyZ peers, struct LDKDestination destination
3056         public static native long MessageRouter_find_path(long this_arg, byte[] sender, byte[][] peers, long destination);
3057         public static class LDKOnionMessageContents {
3058                 private LDKOnionMessageContents() {}
3059                 public final static class Offers extends LDKOnionMessageContents {
3060                         public long offers;
3061                         Offers(long offers) { this.offers = offers; }
3062                 }
3063                 public final static class Custom extends LDKOnionMessageContents {
3064                         public long custom;
3065                         Custom(long custom) { this.custom = custom; }
3066                 }
3067                 static native void init();
3068         }
3069         static { LDKOnionMessageContents.init(); }
3070         public static native LDKOnionMessageContents LDKOnionMessageContents_ref_from_ptr(long ptr);
3071         public interface LDKCoinSelectionSource {
3072                  long select_confirmed_utxos(byte[] claim_id, long[] must_spend, long[] must_pay_to, int target_feerate_sat_per_1000_weight);
3073                  long sign_tx(byte[] tx);
3074         }
3075         public static native long LDKCoinSelectionSource_new(LDKCoinSelectionSource impl);
3076         // LDKCResult_CoinSelectionNoneZ CoinSelectionSource_select_confirmed_utxos LDKCoinSelectionSource *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes claim_id, struct LDKCVec_InputZ must_spend, struct LDKCVec_TxOutZ must_pay_to, uint32_t target_feerate_sat_per_1000_weight
3077         public static native long CoinSelectionSource_select_confirmed_utxos(long this_arg, byte[] claim_id, long[] must_spend, long[] must_pay_to, int target_feerate_sat_per_1000_weight);
3078         // LDKCResult_TransactionNoneZ CoinSelectionSource_sign_tx LDKCoinSelectionSource *NONNULL_PTR this_arg, struct LDKTransaction tx
3079         public static native long CoinSelectionSource_sign_tx(long this_arg, byte[] tx);
3080         public interface LDKWalletSource {
3081                  long list_confirmed_utxos();
3082                  long get_change_script();
3083                  long sign_tx(byte[] tx);
3084         }
3085         public static native long LDKWalletSource_new(LDKWalletSource impl);
3086         // LDKCResult_CVec_UtxoZNoneZ WalletSource_list_confirmed_utxos LDKWalletSource *NONNULL_PTR this_arg
3087         public static native long WalletSource_list_confirmed_utxos(long this_arg);
3088         // LDKCResult_CVec_u8ZNoneZ WalletSource_get_change_script LDKWalletSource *NONNULL_PTR this_arg
3089         public static native long WalletSource_get_change_script(long this_arg);
3090         // LDKCResult_TransactionNoneZ WalletSource_sign_tx LDKWalletSource *NONNULL_PTR this_arg, struct LDKTransaction tx
3091         public static native long WalletSource_sign_tx(long this_arg, byte[] tx);
3092         public static class LDKGossipSync {
3093                 private LDKGossipSync() {}
3094                 public final static class P2P extends LDKGossipSync {
3095                         public long p2p;
3096                         P2P(long p2p) { this.p2p = p2p; }
3097                 }
3098                 public final static class Rapid extends LDKGossipSync {
3099                         public long rapid;
3100                         Rapid(long rapid) { this.rapid = rapid; }
3101                 }
3102                 public final static class None extends LDKGossipSync {
3103                         None() { }
3104                 }
3105                 static native void init();
3106         }
3107         static { LDKGossipSync.init(); }
3108         public static native LDKGossipSync LDKGossipSync_ref_from_ptr(long ptr);
3109         public static class LDKFallback {
3110                 private LDKFallback() {}
3111                 public final static class SegWitProgram extends LDKFallback {
3112                         public byte version;
3113                         public byte[] program;
3114                         SegWitProgram(byte version, byte[] program) { this.version = version; this.program = program; }
3115                 }
3116                 public final static class PubKeyHash extends LDKFallback {
3117                         public byte[] pub_key_hash;
3118                         PubKeyHash(byte[] pub_key_hash) { this.pub_key_hash = pub_key_hash; }
3119                 }
3120                 public final static class ScriptHash extends LDKFallback {
3121                         public byte[] script_hash;
3122                         ScriptHash(byte[] script_hash) { this.script_hash = script_hash; }
3123                 }
3124                 static native void init();
3125         }
3126         static { LDKFallback.init(); }
3127         public static native LDKFallback LDKFallback_ref_from_ptr(long ptr);
3128         // struct LDKStr _ldk_get_compiled_version(void);
3129         public static native String _ldk_get_compiled_version();
3130         // struct LDKStr _ldk_c_bindings_get_compiled_version(void);
3131         public static native String _ldk_c_bindings_get_compiled_version();
3132         // struct LDKSixteenBytes U128_le_bytes(struct LDKU128 val);
3133         public static native byte[] U128_le_bytes(byte[] val);
3134         // struct LDKU128 U128_new(struct LDKSixteenBytes le_bytes);
3135         public static native byte[] U128_new(byte[] le_bytes);
3136         // struct LDKBigEndianScalar BigEndianScalar_new(struct LDKThirtyTwoBytes big_endian_bytes);
3137         public static native long BigEndianScalar_new(byte[] big_endian_bytes);
3138         // uint64_t Bech32Error_clone_ptr(LDKBech32Error *NONNULL_PTR arg);
3139         public static native long Bech32Error_clone_ptr(long arg);
3140         // struct LDKBech32Error Bech32Error_clone(const struct LDKBech32Error *NONNULL_PTR orig);
3141         public static native long Bech32Error_clone(long orig);
3142         // void Bech32Error_free(struct LDKBech32Error o);
3143         public static native void Bech32Error_free(long o);
3144         // void Transaction_free(struct LDKTransaction _res);
3145         public static native void Transaction_free(byte[] _res);
3146         // void Witness_free(struct LDKWitness _res);
3147         public static native void Witness_free(byte[] _res);
3148         // void TxIn_free(struct LDKTxIn _res);
3149         public static native void TxIn_free(long _res);
3150         // struct LDKTxIn TxIn_new(struct LDKWitness witness, struct LDKCVec_u8Z script_sig, uint32_t sequence, struct LDKThirtyTwoBytes previous_txid, uint32_t previous_vout);
3151         public static native long TxIn_new(byte[] witness, byte[] script_sig, int sequence, byte[] previous_txid, int previous_vout);
3152         // struct LDKTxOut TxOut_new(struct LDKCVec_u8Z script_pubkey, uint64_t value);
3153         public static native long TxOut_new(byte[] script_pubkey, long value);
3154         // void TxOut_free(struct LDKTxOut _res);
3155         public static native void TxOut_free(long _res);
3156         // uint64_t TxOut_clone_ptr(LDKTxOut *NONNULL_PTR arg);
3157         public static native long TxOut_clone_ptr(long arg);
3158         // struct LDKTxOut TxOut_clone(const struct LDKTxOut *NONNULL_PTR orig);
3159         public static native long TxOut_clone(long orig);
3160         // void Str_free(struct LDKStr _res);
3161         public static native void Str_free(String _res);
3162         // struct LDKCOption_u64Z COption_u64Z_some(uint64_t o);
3163         public static native long COption_u64Z_some(long o);
3164         // struct LDKCOption_u64Z COption_u64Z_none(void);
3165         public static native long COption_u64Z_none();
3166         // void COption_u64Z_free(struct LDKCOption_u64Z _res);
3167         public static native void COption_u64Z_free(long _res);
3168         // uint64_t COption_u64Z_clone_ptr(LDKCOption_u64Z *NONNULL_PTR arg);
3169         public static native long COption_u64Z_clone_ptr(long arg);
3170         // struct LDKCOption_u64Z COption_u64Z_clone(const struct LDKCOption_u64Z *NONNULL_PTR orig);
3171         public static native long COption_u64Z_clone(long orig);
3172         // void CVec_BlindedPathZ_free(struct LDKCVec_BlindedPathZ _res);
3173         public static native void CVec_BlindedPathZ_free(long[] _res);
3174         // struct LDKCResult_RefundBolt12ParseErrorZ CResult_RefundBolt12ParseErrorZ_ok(struct LDKRefund o);
3175         public static native long CResult_RefundBolt12ParseErrorZ_ok(long o);
3176         // struct LDKCResult_RefundBolt12ParseErrorZ CResult_RefundBolt12ParseErrorZ_err(struct LDKBolt12ParseError e);
3177         public static native long CResult_RefundBolt12ParseErrorZ_err(long e);
3178         // bool CResult_RefundBolt12ParseErrorZ_is_ok(const struct LDKCResult_RefundBolt12ParseErrorZ *NONNULL_PTR o);
3179         public static native boolean CResult_RefundBolt12ParseErrorZ_is_ok(long o);
3180         // void CResult_RefundBolt12ParseErrorZ_free(struct LDKCResult_RefundBolt12ParseErrorZ _res);
3181         public static native void CResult_RefundBolt12ParseErrorZ_free(long _res);
3182         // uint64_t CResult_RefundBolt12ParseErrorZ_clone_ptr(LDKCResult_RefundBolt12ParseErrorZ *NONNULL_PTR arg);
3183         public static native long CResult_RefundBolt12ParseErrorZ_clone_ptr(long arg);
3184         // struct LDKCResult_RefundBolt12ParseErrorZ CResult_RefundBolt12ParseErrorZ_clone(const struct LDKCResult_RefundBolt12ParseErrorZ *NONNULL_PTR orig);
3185         public static native long CResult_RefundBolt12ParseErrorZ_clone(long orig);
3186         // struct LDKCResult_RetryDecodeErrorZ CResult_RetryDecodeErrorZ_ok(struct LDKRetry o);
3187         public static native long CResult_RetryDecodeErrorZ_ok(long o);
3188         // struct LDKCResult_RetryDecodeErrorZ CResult_RetryDecodeErrorZ_err(struct LDKDecodeError e);
3189         public static native long CResult_RetryDecodeErrorZ_err(long e);
3190         // bool CResult_RetryDecodeErrorZ_is_ok(const struct LDKCResult_RetryDecodeErrorZ *NONNULL_PTR o);
3191         public static native boolean CResult_RetryDecodeErrorZ_is_ok(long o);
3192         // void CResult_RetryDecodeErrorZ_free(struct LDKCResult_RetryDecodeErrorZ _res);
3193         public static native void CResult_RetryDecodeErrorZ_free(long _res);
3194         // uint64_t CResult_RetryDecodeErrorZ_clone_ptr(LDKCResult_RetryDecodeErrorZ *NONNULL_PTR arg);
3195         public static native long CResult_RetryDecodeErrorZ_clone_ptr(long arg);
3196         // struct LDKCResult_RetryDecodeErrorZ CResult_RetryDecodeErrorZ_clone(const struct LDKCResult_RetryDecodeErrorZ *NONNULL_PTR orig);
3197         public static native long CResult_RetryDecodeErrorZ_clone(long orig);
3198         // struct LDKCResult_NoneAPIErrorZ CResult_NoneAPIErrorZ_ok(void);
3199         public static native long CResult_NoneAPIErrorZ_ok();
3200         // struct LDKCResult_NoneAPIErrorZ CResult_NoneAPIErrorZ_err(struct LDKAPIError e);
3201         public static native long CResult_NoneAPIErrorZ_err(long e);
3202         // bool CResult_NoneAPIErrorZ_is_ok(const struct LDKCResult_NoneAPIErrorZ *NONNULL_PTR o);
3203         public static native boolean CResult_NoneAPIErrorZ_is_ok(long o);
3204         // void CResult_NoneAPIErrorZ_free(struct LDKCResult_NoneAPIErrorZ _res);
3205         public static native void CResult_NoneAPIErrorZ_free(long _res);
3206         // uint64_t CResult_NoneAPIErrorZ_clone_ptr(LDKCResult_NoneAPIErrorZ *NONNULL_PTR arg);
3207         public static native long CResult_NoneAPIErrorZ_clone_ptr(long arg);
3208         // struct LDKCResult_NoneAPIErrorZ CResult_NoneAPIErrorZ_clone(const struct LDKCResult_NoneAPIErrorZ *NONNULL_PTR orig);
3209         public static native long CResult_NoneAPIErrorZ_clone(long orig);
3210         // void CVec_CResult_NoneAPIErrorZZ_free(struct LDKCVec_CResult_NoneAPIErrorZZ _res);
3211         public static native void CVec_CResult_NoneAPIErrorZZ_free(long[] _res);
3212         // void CVec_APIErrorZ_free(struct LDKCVec_APIErrorZ _res);
3213         public static native void CVec_APIErrorZ_free(long[] _res);
3214         // struct LDKCOption_ThirtyTwoBytesZ COption_ThirtyTwoBytesZ_some(struct LDKThirtyTwoBytes o);
3215         public static native long COption_ThirtyTwoBytesZ_some(byte[] o);
3216         // struct LDKCOption_ThirtyTwoBytesZ COption_ThirtyTwoBytesZ_none(void);
3217         public static native long COption_ThirtyTwoBytesZ_none();
3218         // void COption_ThirtyTwoBytesZ_free(struct LDKCOption_ThirtyTwoBytesZ _res);
3219         public static native void COption_ThirtyTwoBytesZ_free(long _res);
3220         // uint64_t COption_ThirtyTwoBytesZ_clone_ptr(LDKCOption_ThirtyTwoBytesZ *NONNULL_PTR arg);
3221         public static native long COption_ThirtyTwoBytesZ_clone_ptr(long arg);
3222         // struct LDKCOption_ThirtyTwoBytesZ COption_ThirtyTwoBytesZ_clone(const struct LDKCOption_ThirtyTwoBytesZ *NONNULL_PTR orig);
3223         public static native long COption_ThirtyTwoBytesZ_clone(long orig);
3224         // void CVec_u8Z_free(struct LDKCVec_u8Z _res);
3225         public static native void CVec_u8Z_free(byte[] _res);
3226         // struct LDKCOption_CVec_u8ZZ COption_CVec_u8ZZ_some(struct LDKCVec_u8Z o);
3227         public static native long COption_CVec_u8ZZ_some(byte[] o);
3228         // struct LDKCOption_CVec_u8ZZ COption_CVec_u8ZZ_none(void);
3229         public static native long COption_CVec_u8ZZ_none();
3230         // void COption_CVec_u8ZZ_free(struct LDKCOption_CVec_u8ZZ _res);
3231         public static native void COption_CVec_u8ZZ_free(long _res);
3232         // uint64_t COption_CVec_u8ZZ_clone_ptr(LDKCOption_CVec_u8ZZ *NONNULL_PTR arg);
3233         public static native long COption_CVec_u8ZZ_clone_ptr(long arg);
3234         // struct LDKCOption_CVec_u8ZZ COption_CVec_u8ZZ_clone(const struct LDKCOption_CVec_u8ZZ *NONNULL_PTR orig);
3235         public static native long COption_CVec_u8ZZ_clone(long orig);
3236         // struct LDKCResult_RecipientOnionFieldsDecodeErrorZ CResult_RecipientOnionFieldsDecodeErrorZ_ok(struct LDKRecipientOnionFields o);
3237         public static native long CResult_RecipientOnionFieldsDecodeErrorZ_ok(long o);
3238         // struct LDKCResult_RecipientOnionFieldsDecodeErrorZ CResult_RecipientOnionFieldsDecodeErrorZ_err(struct LDKDecodeError e);
3239         public static native long CResult_RecipientOnionFieldsDecodeErrorZ_err(long e);
3240         // bool CResult_RecipientOnionFieldsDecodeErrorZ_is_ok(const struct LDKCResult_RecipientOnionFieldsDecodeErrorZ *NONNULL_PTR o);
3241         public static native boolean CResult_RecipientOnionFieldsDecodeErrorZ_is_ok(long o);
3242         // void CResult_RecipientOnionFieldsDecodeErrorZ_free(struct LDKCResult_RecipientOnionFieldsDecodeErrorZ _res);
3243         public static native void CResult_RecipientOnionFieldsDecodeErrorZ_free(long _res);
3244         // uint64_t CResult_RecipientOnionFieldsDecodeErrorZ_clone_ptr(LDKCResult_RecipientOnionFieldsDecodeErrorZ *NONNULL_PTR arg);
3245         public static native long CResult_RecipientOnionFieldsDecodeErrorZ_clone_ptr(long arg);
3246         // struct LDKCResult_RecipientOnionFieldsDecodeErrorZ CResult_RecipientOnionFieldsDecodeErrorZ_clone(const struct LDKCResult_RecipientOnionFieldsDecodeErrorZ *NONNULL_PTR orig);
3247         public static native long CResult_RecipientOnionFieldsDecodeErrorZ_clone(long orig);
3248         // uint64_t C2Tuple_u64CVec_u8ZZ_clone_ptr(LDKC2Tuple_u64CVec_u8ZZ *NONNULL_PTR arg);
3249         public static native long C2Tuple_u64CVec_u8ZZ_clone_ptr(long arg);
3250         // struct LDKC2Tuple_u64CVec_u8ZZ C2Tuple_u64CVec_u8ZZ_clone(const struct LDKC2Tuple_u64CVec_u8ZZ *NONNULL_PTR orig);
3251         public static native long C2Tuple_u64CVec_u8ZZ_clone(long orig);
3252         // struct LDKC2Tuple_u64CVec_u8ZZ C2Tuple_u64CVec_u8ZZ_new(uint64_t a, struct LDKCVec_u8Z b);
3253         public static native long C2Tuple_u64CVec_u8ZZ_new(long a, byte[] b);
3254         // void C2Tuple_u64CVec_u8ZZ_free(struct LDKC2Tuple_u64CVec_u8ZZ _res);
3255         public static native void C2Tuple_u64CVec_u8ZZ_free(long _res);
3256         // void CVec_C2Tuple_u64CVec_u8ZZZ_free(struct LDKCVec_C2Tuple_u64CVec_u8ZZZ _res);
3257         public static native void CVec_C2Tuple_u64CVec_u8ZZZ_free(long[] _res);
3258         // struct LDKCResult_RecipientOnionFieldsNoneZ CResult_RecipientOnionFieldsNoneZ_ok(struct LDKRecipientOnionFields o);
3259         public static native long CResult_RecipientOnionFieldsNoneZ_ok(long o);
3260         // struct LDKCResult_RecipientOnionFieldsNoneZ CResult_RecipientOnionFieldsNoneZ_err(void);
3261         public static native long CResult_RecipientOnionFieldsNoneZ_err();
3262         // bool CResult_RecipientOnionFieldsNoneZ_is_ok(const struct LDKCResult_RecipientOnionFieldsNoneZ *NONNULL_PTR o);
3263         public static native boolean CResult_RecipientOnionFieldsNoneZ_is_ok(long o);
3264         // void CResult_RecipientOnionFieldsNoneZ_free(struct LDKCResult_RecipientOnionFieldsNoneZ _res);
3265         public static native void CResult_RecipientOnionFieldsNoneZ_free(long _res);
3266         // uint64_t CResult_RecipientOnionFieldsNoneZ_clone_ptr(LDKCResult_RecipientOnionFieldsNoneZ *NONNULL_PTR arg);
3267         public static native long CResult_RecipientOnionFieldsNoneZ_clone_ptr(long arg);
3268         // struct LDKCResult_RecipientOnionFieldsNoneZ CResult_RecipientOnionFieldsNoneZ_clone(const struct LDKCResult_RecipientOnionFieldsNoneZ *NONNULL_PTR orig);
3269         public static native long CResult_RecipientOnionFieldsNoneZ_clone(long orig);
3270         // void CVec_ThirtyTwoBytesZ_free(struct LDKCVec_ThirtyTwoBytesZ _res);
3271         public static native void CVec_ThirtyTwoBytesZ_free(byte[][] _res);
3272         // struct LDKCOption_CVec_ThirtyTwoBytesZZ COption_CVec_ThirtyTwoBytesZZ_some(struct LDKCVec_ThirtyTwoBytesZ o);
3273         public static native long COption_CVec_ThirtyTwoBytesZZ_some(byte[][] o);
3274         // struct LDKCOption_CVec_ThirtyTwoBytesZZ COption_CVec_ThirtyTwoBytesZZ_none(void);
3275         public static native long COption_CVec_ThirtyTwoBytesZZ_none();
3276         // void COption_CVec_ThirtyTwoBytesZZ_free(struct LDKCOption_CVec_ThirtyTwoBytesZZ _res);
3277         public static native void COption_CVec_ThirtyTwoBytesZZ_free(long _res);
3278         // uint64_t COption_CVec_ThirtyTwoBytesZZ_clone_ptr(LDKCOption_CVec_ThirtyTwoBytesZZ *NONNULL_PTR arg);
3279         public static native long COption_CVec_ThirtyTwoBytesZZ_clone_ptr(long arg);
3280         // struct LDKCOption_CVec_ThirtyTwoBytesZZ COption_CVec_ThirtyTwoBytesZZ_clone(const struct LDKCOption_CVec_ThirtyTwoBytesZZ *NONNULL_PTR orig);
3281         public static native long COption_CVec_ThirtyTwoBytesZZ_clone(long orig);
3282         // struct LDKCResult_ThirtyTwoBytesNoneZ CResult_ThirtyTwoBytesNoneZ_ok(struct LDKThirtyTwoBytes o);
3283         public static native long CResult_ThirtyTwoBytesNoneZ_ok(byte[] o);
3284         // struct LDKCResult_ThirtyTwoBytesNoneZ CResult_ThirtyTwoBytesNoneZ_err(void);
3285         public static native long CResult_ThirtyTwoBytesNoneZ_err();
3286         // bool CResult_ThirtyTwoBytesNoneZ_is_ok(const struct LDKCResult_ThirtyTwoBytesNoneZ *NONNULL_PTR o);
3287         public static native boolean CResult_ThirtyTwoBytesNoneZ_is_ok(long o);
3288         // void CResult_ThirtyTwoBytesNoneZ_free(struct LDKCResult_ThirtyTwoBytesNoneZ _res);
3289         public static native void CResult_ThirtyTwoBytesNoneZ_free(long _res);
3290         // uint64_t CResult_ThirtyTwoBytesNoneZ_clone_ptr(LDKCResult_ThirtyTwoBytesNoneZ *NONNULL_PTR arg);
3291         public static native long CResult_ThirtyTwoBytesNoneZ_clone_ptr(long arg);
3292         // struct LDKCResult_ThirtyTwoBytesNoneZ CResult_ThirtyTwoBytesNoneZ_clone(const struct LDKCResult_ThirtyTwoBytesNoneZ *NONNULL_PTR orig);
3293         public static native long CResult_ThirtyTwoBytesNoneZ_clone(long orig);
3294         // struct LDKCResult_BlindedPayInfoDecodeErrorZ CResult_BlindedPayInfoDecodeErrorZ_ok(struct LDKBlindedPayInfo o);
3295         public static native long CResult_BlindedPayInfoDecodeErrorZ_ok(long o);
3296         // struct LDKCResult_BlindedPayInfoDecodeErrorZ CResult_BlindedPayInfoDecodeErrorZ_err(struct LDKDecodeError e);
3297         public static native long CResult_BlindedPayInfoDecodeErrorZ_err(long e);
3298         // bool CResult_BlindedPayInfoDecodeErrorZ_is_ok(const struct LDKCResult_BlindedPayInfoDecodeErrorZ *NONNULL_PTR o);
3299         public static native boolean CResult_BlindedPayInfoDecodeErrorZ_is_ok(long o);
3300         // void CResult_BlindedPayInfoDecodeErrorZ_free(struct LDKCResult_BlindedPayInfoDecodeErrorZ _res);
3301         public static native void CResult_BlindedPayInfoDecodeErrorZ_free(long _res);
3302         // uint64_t CResult_BlindedPayInfoDecodeErrorZ_clone_ptr(LDKCResult_BlindedPayInfoDecodeErrorZ *NONNULL_PTR arg);
3303         public static native long CResult_BlindedPayInfoDecodeErrorZ_clone_ptr(long arg);
3304         // struct LDKCResult_BlindedPayInfoDecodeErrorZ CResult_BlindedPayInfoDecodeErrorZ_clone(const struct LDKCResult_BlindedPayInfoDecodeErrorZ *NONNULL_PTR orig);
3305         public static native long CResult_BlindedPayInfoDecodeErrorZ_clone(long orig);
3306         // struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_ok(struct LDKDelayedPaymentOutputDescriptor o);
3307         public static native long CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_ok(long o);
3308         // struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_err(struct LDKDecodeError e);
3309         public static native long CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_err(long e);
3310         // bool CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_is_ok(const struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR o);
3311         public static native boolean CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_is_ok(long o);
3312         // void CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_free(struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ _res);
3313         public static native void CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_free(long _res);
3314         // uint64_t CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone_ptr(LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR arg);
3315         public static native long CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone_ptr(long arg);
3316         // struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone(const struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR orig);
3317         public static native long CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone(long orig);
3318         // struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ CResult_StaticPaymentOutputDescriptorDecodeErrorZ_ok(struct LDKStaticPaymentOutputDescriptor o);
3319         public static native long CResult_StaticPaymentOutputDescriptorDecodeErrorZ_ok(long o);
3320         // struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ CResult_StaticPaymentOutputDescriptorDecodeErrorZ_err(struct LDKDecodeError e);
3321         public static native long CResult_StaticPaymentOutputDescriptorDecodeErrorZ_err(long e);
3322         // bool CResult_StaticPaymentOutputDescriptorDecodeErrorZ_is_ok(const struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR o);
3323         public static native boolean CResult_StaticPaymentOutputDescriptorDecodeErrorZ_is_ok(long o);
3324         // void CResult_StaticPaymentOutputDescriptorDecodeErrorZ_free(struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ _res);
3325         public static native void CResult_StaticPaymentOutputDescriptorDecodeErrorZ_free(long _res);
3326         // uint64_t CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone_ptr(LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR arg);
3327         public static native long CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone_ptr(long arg);
3328         // struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone(const struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR orig);
3329         public static native long CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone(long orig);
3330         // struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ CResult_SpendableOutputDescriptorDecodeErrorZ_ok(struct LDKSpendableOutputDescriptor o);
3331         public static native long CResult_SpendableOutputDescriptorDecodeErrorZ_ok(long o);
3332         // struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ CResult_SpendableOutputDescriptorDecodeErrorZ_err(struct LDKDecodeError e);
3333         public static native long CResult_SpendableOutputDescriptorDecodeErrorZ_err(long e);
3334         // bool CResult_SpendableOutputDescriptorDecodeErrorZ_is_ok(const struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR o);
3335         public static native boolean CResult_SpendableOutputDescriptorDecodeErrorZ_is_ok(long o);
3336         // void CResult_SpendableOutputDescriptorDecodeErrorZ_free(struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ _res);
3337         public static native void CResult_SpendableOutputDescriptorDecodeErrorZ_free(long _res);
3338         // uint64_t CResult_SpendableOutputDescriptorDecodeErrorZ_clone_ptr(LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR arg);
3339         public static native long CResult_SpendableOutputDescriptorDecodeErrorZ_clone_ptr(long arg);
3340         // struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ CResult_SpendableOutputDescriptorDecodeErrorZ_clone(const struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR orig);
3341         public static native long CResult_SpendableOutputDescriptorDecodeErrorZ_clone(long orig);
3342         // void CVec_SpendableOutputDescriptorZ_free(struct LDKCVec_SpendableOutputDescriptorZ _res);
3343         public static native void CVec_SpendableOutputDescriptorZ_free(long[] _res);
3344         // void CVec_TxOutZ_free(struct LDKCVec_TxOutZ _res);
3345         public static native void CVec_TxOutZ_free(long[] _res);
3346         // struct LDKCOption_u32Z COption_u32Z_some(uint32_t o);
3347         public static native long COption_u32Z_some(int o);
3348         // struct LDKCOption_u32Z COption_u32Z_none(void);
3349         public static native long COption_u32Z_none();
3350         // void COption_u32Z_free(struct LDKCOption_u32Z _res);
3351         public static native void COption_u32Z_free(long _res);
3352         // uint64_t COption_u32Z_clone_ptr(LDKCOption_u32Z *NONNULL_PTR arg);
3353         public static native long COption_u32Z_clone_ptr(long arg);
3354         // struct LDKCOption_u32Z COption_u32Z_clone(const struct LDKCOption_u32Z *NONNULL_PTR orig);
3355         public static native long COption_u32Z_clone(long orig);
3356         // uint64_t C2Tuple_CVec_u8ZusizeZ_clone_ptr(LDKC2Tuple_CVec_u8ZusizeZ *NONNULL_PTR arg);
3357         public static native long C2Tuple_CVec_u8ZusizeZ_clone_ptr(long arg);
3358         // struct LDKC2Tuple_CVec_u8ZusizeZ C2Tuple_CVec_u8ZusizeZ_clone(const struct LDKC2Tuple_CVec_u8ZusizeZ *NONNULL_PTR orig);
3359         public static native long C2Tuple_CVec_u8ZusizeZ_clone(long orig);
3360         // struct LDKC2Tuple_CVec_u8ZusizeZ C2Tuple_CVec_u8ZusizeZ_new(struct LDKCVec_u8Z a, uintptr_t b);
3361         public static native long C2Tuple_CVec_u8ZusizeZ_new(byte[] a, long b);
3362         // void C2Tuple_CVec_u8ZusizeZ_free(struct LDKC2Tuple_CVec_u8ZusizeZ _res);
3363         public static native void C2Tuple_CVec_u8ZusizeZ_free(long _res);
3364         // struct LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ CResult_C2Tuple_CVec_u8ZusizeZNoneZ_ok(struct LDKC2Tuple_CVec_u8ZusizeZ o);
3365         public static native long CResult_C2Tuple_CVec_u8ZusizeZNoneZ_ok(long o);
3366         // struct LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ CResult_C2Tuple_CVec_u8ZusizeZNoneZ_err(void);
3367         public static native long CResult_C2Tuple_CVec_u8ZusizeZNoneZ_err();
3368         // bool CResult_C2Tuple_CVec_u8ZusizeZNoneZ_is_ok(const struct LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ *NONNULL_PTR o);
3369         public static native boolean CResult_C2Tuple_CVec_u8ZusizeZNoneZ_is_ok(long o);
3370         // void CResult_C2Tuple_CVec_u8ZusizeZNoneZ_free(struct LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ _res);
3371         public static native void CResult_C2Tuple_CVec_u8ZusizeZNoneZ_free(long _res);
3372         // uint64_t CResult_C2Tuple_CVec_u8ZusizeZNoneZ_clone_ptr(LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ *NONNULL_PTR arg);
3373         public static native long CResult_C2Tuple_CVec_u8ZusizeZNoneZ_clone_ptr(long arg);
3374         // struct LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ CResult_C2Tuple_CVec_u8ZusizeZNoneZ_clone(const struct LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ *NONNULL_PTR orig);
3375         public static native long CResult_C2Tuple_CVec_u8ZusizeZNoneZ_clone(long orig);
3376         // struct LDKCResult_NoneNoneZ CResult_NoneNoneZ_ok(void);
3377         public static native long CResult_NoneNoneZ_ok();
3378         // struct LDKCResult_NoneNoneZ CResult_NoneNoneZ_err(void);
3379         public static native long CResult_NoneNoneZ_err();
3380         // bool CResult_NoneNoneZ_is_ok(const struct LDKCResult_NoneNoneZ *NONNULL_PTR o);
3381         public static native boolean CResult_NoneNoneZ_is_ok(long o);
3382         // void CResult_NoneNoneZ_free(struct LDKCResult_NoneNoneZ _res);
3383         public static native void CResult_NoneNoneZ_free(long _res);
3384         // uint64_t CResult_NoneNoneZ_clone_ptr(LDKCResult_NoneNoneZ *NONNULL_PTR arg);
3385         public static native long CResult_NoneNoneZ_clone_ptr(long arg);
3386         // struct LDKCResult_NoneNoneZ CResult_NoneNoneZ_clone(const struct LDKCResult_NoneNoneZ *NONNULL_PTR orig);
3387         public static native long CResult_NoneNoneZ_clone(long orig);
3388         // void CVec_ECDSASignatureZ_free(struct LDKCVec_ECDSASignatureZ _res);
3389         public static native void CVec_ECDSASignatureZ_free(byte[][] _res);
3390         // uint64_t C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_clone_ptr(LDKC2Tuple_ECDSASignatureCVec_ECDSASignatureZZ *NONNULL_PTR arg);
3391         public static native long C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_clone_ptr(long arg);
3392         // struct LDKC2Tuple_ECDSASignatureCVec_ECDSASignatureZZ C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_clone(const struct LDKC2Tuple_ECDSASignatureCVec_ECDSASignatureZZ *NONNULL_PTR orig);
3393         public static native long C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_clone(long orig);
3394         // struct LDKC2Tuple_ECDSASignatureCVec_ECDSASignatureZZ C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_new(struct LDKECDSASignature a, struct LDKCVec_ECDSASignatureZ b);
3395         public static native long C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_new(byte[] a, byte[][] b);
3396         // void C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_free(struct LDKC2Tuple_ECDSASignatureCVec_ECDSASignatureZZ _res);
3397         public static native void C2Tuple_ECDSASignatureCVec_ECDSASignatureZZ_free(long _res);
3398         // struct LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_ok(struct LDKC2Tuple_ECDSASignatureCVec_ECDSASignatureZZ o);
3399         public static native long CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_ok(long o);
3400         // struct LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_err(void);
3401         public static native long CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_err();
3402         // bool CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_is_ok(const struct LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ *NONNULL_PTR o);
3403         public static native boolean CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_is_ok(long o);
3404         // void CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_free(struct LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ _res);
3405         public static native void CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_free(long _res);
3406         // uint64_t CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_clone_ptr(LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ *NONNULL_PTR arg);
3407         public static native long CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_clone_ptr(long arg);
3408         // struct LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_clone(const struct LDKCResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ *NONNULL_PTR orig);
3409         public static native long CResult_C2Tuple_ECDSASignatureCVec_ECDSASignatureZZNoneZ_clone(long orig);
3410         // struct LDKCResult_ECDSASignatureNoneZ CResult_ECDSASignatureNoneZ_ok(struct LDKECDSASignature o);
3411         public static native long CResult_ECDSASignatureNoneZ_ok(byte[] o);
3412         // struct LDKCResult_ECDSASignatureNoneZ CResult_ECDSASignatureNoneZ_err(void);
3413         public static native long CResult_ECDSASignatureNoneZ_err();
3414         // bool CResult_ECDSASignatureNoneZ_is_ok(const struct LDKCResult_ECDSASignatureNoneZ *NONNULL_PTR o);
3415         public static native boolean CResult_ECDSASignatureNoneZ_is_ok(long o);
3416         // void CResult_ECDSASignatureNoneZ_free(struct LDKCResult_ECDSASignatureNoneZ _res);
3417         public static native void CResult_ECDSASignatureNoneZ_free(long _res);
3418         // uint64_t CResult_ECDSASignatureNoneZ_clone_ptr(LDKCResult_ECDSASignatureNoneZ *NONNULL_PTR arg);
3419         public static native long CResult_ECDSASignatureNoneZ_clone_ptr(long arg);
3420         // struct LDKCResult_ECDSASignatureNoneZ CResult_ECDSASignatureNoneZ_clone(const struct LDKCResult_ECDSASignatureNoneZ *NONNULL_PTR orig);
3421         public static native long CResult_ECDSASignatureNoneZ_clone(long orig);
3422         // struct LDKCResult_PublicKeyNoneZ CResult_PublicKeyNoneZ_ok(struct LDKPublicKey o);
3423         public static native long CResult_PublicKeyNoneZ_ok(byte[] o);
3424         // struct LDKCResult_PublicKeyNoneZ CResult_PublicKeyNoneZ_err(void);
3425         public static native long CResult_PublicKeyNoneZ_err();
3426         // bool CResult_PublicKeyNoneZ_is_ok(const struct LDKCResult_PublicKeyNoneZ *NONNULL_PTR o);
3427         public static native boolean CResult_PublicKeyNoneZ_is_ok(long o);
3428         // void CResult_PublicKeyNoneZ_free(struct LDKCResult_PublicKeyNoneZ _res);
3429         public static native void CResult_PublicKeyNoneZ_free(long _res);
3430         // uint64_t CResult_PublicKeyNoneZ_clone_ptr(LDKCResult_PublicKeyNoneZ *NONNULL_PTR arg);
3431         public static native long CResult_PublicKeyNoneZ_clone_ptr(long arg);
3432         // struct LDKCResult_PublicKeyNoneZ CResult_PublicKeyNoneZ_clone(const struct LDKCResult_PublicKeyNoneZ *NONNULL_PTR orig);
3433         public static native long CResult_PublicKeyNoneZ_clone(long orig);
3434         // struct LDKCOption_BigEndianScalarZ COption_BigEndianScalarZ_some(struct LDKBigEndianScalar o);
3435         public static native long COption_BigEndianScalarZ_some(long o);
3436         // struct LDKCOption_BigEndianScalarZ COption_BigEndianScalarZ_none(void);
3437         public static native long COption_BigEndianScalarZ_none();
3438         // void COption_BigEndianScalarZ_free(struct LDKCOption_BigEndianScalarZ _res);
3439         public static native void COption_BigEndianScalarZ_free(long _res);
3440         // uint64_t COption_BigEndianScalarZ_clone_ptr(LDKCOption_BigEndianScalarZ *NONNULL_PTR arg);
3441         public static native long COption_BigEndianScalarZ_clone_ptr(long arg);
3442         // struct LDKCOption_BigEndianScalarZ COption_BigEndianScalarZ_clone(const struct LDKCOption_BigEndianScalarZ *NONNULL_PTR orig);
3443         public static native long COption_BigEndianScalarZ_clone(long orig);
3444         // void CVec_U5Z_free(struct LDKCVec_U5Z _res);
3445         public static native void CVec_U5Z_free(byte[] _res);
3446         // struct LDKCResult_RecoverableSignatureNoneZ CResult_RecoverableSignatureNoneZ_ok(struct LDKRecoverableSignature o);
3447         public static native long CResult_RecoverableSignatureNoneZ_ok(byte[] o);
3448         // struct LDKCResult_RecoverableSignatureNoneZ CResult_RecoverableSignatureNoneZ_err(void);
3449         public static native long CResult_RecoverableSignatureNoneZ_err();
3450         // bool CResult_RecoverableSignatureNoneZ_is_ok(const struct LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR o);
3451         public static native boolean CResult_RecoverableSignatureNoneZ_is_ok(long o);
3452         // void CResult_RecoverableSignatureNoneZ_free(struct LDKCResult_RecoverableSignatureNoneZ _res);
3453         public static native void CResult_RecoverableSignatureNoneZ_free(long _res);
3454         // uint64_t CResult_RecoverableSignatureNoneZ_clone_ptr(LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR arg);
3455         public static native long CResult_RecoverableSignatureNoneZ_clone_ptr(long arg);
3456         // struct LDKCResult_RecoverableSignatureNoneZ CResult_RecoverableSignatureNoneZ_clone(const struct LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR orig);
3457         public static native long CResult_RecoverableSignatureNoneZ_clone(long orig);
3458         // struct LDKCResult_SchnorrSignatureNoneZ CResult_SchnorrSignatureNoneZ_ok(struct LDKSchnorrSignature o);
3459         public static native long CResult_SchnorrSignatureNoneZ_ok(byte[] o);
3460         // struct LDKCResult_SchnorrSignatureNoneZ CResult_SchnorrSignatureNoneZ_err(void);
3461         public static native long CResult_SchnorrSignatureNoneZ_err();
3462         // bool CResult_SchnorrSignatureNoneZ_is_ok(const struct LDKCResult_SchnorrSignatureNoneZ *NONNULL_PTR o);
3463         public static native boolean CResult_SchnorrSignatureNoneZ_is_ok(long o);
3464         // void CResult_SchnorrSignatureNoneZ_free(struct LDKCResult_SchnorrSignatureNoneZ _res);
3465         public static native void CResult_SchnorrSignatureNoneZ_free(long _res);
3466         // uint64_t CResult_SchnorrSignatureNoneZ_clone_ptr(LDKCResult_SchnorrSignatureNoneZ *NONNULL_PTR arg);
3467         public static native long CResult_SchnorrSignatureNoneZ_clone_ptr(long arg);
3468         // struct LDKCResult_SchnorrSignatureNoneZ CResult_SchnorrSignatureNoneZ_clone(const struct LDKCResult_SchnorrSignatureNoneZ *NONNULL_PTR orig);
3469         public static native long CResult_SchnorrSignatureNoneZ_clone(long orig);
3470         // struct LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ CResult_WriteableEcdsaChannelSignerDecodeErrorZ_ok(struct LDKWriteableEcdsaChannelSigner o);
3471         public static native long CResult_WriteableEcdsaChannelSignerDecodeErrorZ_ok(long o);
3472         // struct LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ CResult_WriteableEcdsaChannelSignerDecodeErrorZ_err(struct LDKDecodeError e);
3473         public static native long CResult_WriteableEcdsaChannelSignerDecodeErrorZ_err(long e);
3474         // bool CResult_WriteableEcdsaChannelSignerDecodeErrorZ_is_ok(const struct LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ *NONNULL_PTR o);
3475         public static native boolean CResult_WriteableEcdsaChannelSignerDecodeErrorZ_is_ok(long o);
3476         // void CResult_WriteableEcdsaChannelSignerDecodeErrorZ_free(struct LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ _res);
3477         public static native void CResult_WriteableEcdsaChannelSignerDecodeErrorZ_free(long _res);
3478         // uint64_t CResult_WriteableEcdsaChannelSignerDecodeErrorZ_clone_ptr(LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ *NONNULL_PTR arg);
3479         public static native long CResult_WriteableEcdsaChannelSignerDecodeErrorZ_clone_ptr(long arg);
3480         // struct LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ CResult_WriteableEcdsaChannelSignerDecodeErrorZ_clone(const struct LDKCResult_WriteableEcdsaChannelSignerDecodeErrorZ *NONNULL_PTR orig);
3481         public static native long CResult_WriteableEcdsaChannelSignerDecodeErrorZ_clone(long orig);
3482         // struct LDKCResult_CVec_u8ZNoneZ CResult_CVec_u8ZNoneZ_ok(struct LDKCVec_u8Z o);
3483         public static native long CResult_CVec_u8ZNoneZ_ok(byte[] o);
3484         // struct LDKCResult_CVec_u8ZNoneZ CResult_CVec_u8ZNoneZ_err(void);
3485         public static native long CResult_CVec_u8ZNoneZ_err();
3486         // bool CResult_CVec_u8ZNoneZ_is_ok(const struct LDKCResult_CVec_u8ZNoneZ *NONNULL_PTR o);
3487         public static native boolean CResult_CVec_u8ZNoneZ_is_ok(long o);
3488         // void CResult_CVec_u8ZNoneZ_free(struct LDKCResult_CVec_u8ZNoneZ _res);
3489         public static native void CResult_CVec_u8ZNoneZ_free(long _res);
3490         // uint64_t CResult_CVec_u8ZNoneZ_clone_ptr(LDKCResult_CVec_u8ZNoneZ *NONNULL_PTR arg);
3491         public static native long CResult_CVec_u8ZNoneZ_clone_ptr(long arg);
3492         // struct LDKCResult_CVec_u8ZNoneZ CResult_CVec_u8ZNoneZ_clone(const struct LDKCResult_CVec_u8ZNoneZ *NONNULL_PTR orig);
3493         public static native long CResult_CVec_u8ZNoneZ_clone(long orig);
3494         // struct LDKCResult_ShutdownScriptNoneZ CResult_ShutdownScriptNoneZ_ok(struct LDKShutdownScript o);
3495         public static native long CResult_ShutdownScriptNoneZ_ok(long o);
3496         // struct LDKCResult_ShutdownScriptNoneZ CResult_ShutdownScriptNoneZ_err(void);
3497         public static native long CResult_ShutdownScriptNoneZ_err();
3498         // bool CResult_ShutdownScriptNoneZ_is_ok(const struct LDKCResult_ShutdownScriptNoneZ *NONNULL_PTR o);
3499         public static native boolean CResult_ShutdownScriptNoneZ_is_ok(long o);
3500         // void CResult_ShutdownScriptNoneZ_free(struct LDKCResult_ShutdownScriptNoneZ _res);
3501         public static native void CResult_ShutdownScriptNoneZ_free(long _res);
3502         // uint64_t CResult_ShutdownScriptNoneZ_clone_ptr(LDKCResult_ShutdownScriptNoneZ *NONNULL_PTR arg);
3503         public static native long CResult_ShutdownScriptNoneZ_clone_ptr(long arg);
3504         // struct LDKCResult_ShutdownScriptNoneZ CResult_ShutdownScriptNoneZ_clone(const struct LDKCResult_ShutdownScriptNoneZ *NONNULL_PTR orig);
3505         public static native long CResult_ShutdownScriptNoneZ_clone(long orig);
3506         // struct LDKCOption_u16Z COption_u16Z_some(uint16_t o);
3507         public static native long COption_u16Z_some(short o);
3508         // struct LDKCOption_u16Z COption_u16Z_none(void);
3509         public static native long COption_u16Z_none();
3510         // void COption_u16Z_free(struct LDKCOption_u16Z _res);
3511         public static native void COption_u16Z_free(long _res);
3512         // uint64_t COption_u16Z_clone_ptr(LDKCOption_u16Z *NONNULL_PTR arg);
3513         public static native long COption_u16Z_clone_ptr(long arg);
3514         // struct LDKCOption_u16Z COption_u16Z_clone(const struct LDKCOption_u16Z *NONNULL_PTR orig);
3515         public static native long COption_u16Z_clone(long orig);
3516         // struct LDKCOption_boolZ COption_boolZ_some(bool o);
3517         public static native long COption_boolZ_some(boolean o);
3518         // struct LDKCOption_boolZ COption_boolZ_none(void);
3519         public static native long COption_boolZ_none();
3520         // void COption_boolZ_free(struct LDKCOption_boolZ _res);
3521         public static native void COption_boolZ_free(long _res);
3522         // uint64_t COption_boolZ_clone_ptr(LDKCOption_boolZ *NONNULL_PTR arg);
3523         public static native long COption_boolZ_clone_ptr(long arg);
3524         // struct LDKCOption_boolZ COption_boolZ_clone(const struct LDKCOption_boolZ *NONNULL_PTR orig);
3525         public static native long COption_boolZ_clone(long orig);
3526         // void CVec_CVec_u8ZZ_free(struct LDKCVec_CVec_u8ZZ _res);
3527         public static native void CVec_CVec_u8ZZ_free(byte[][] _res);
3528         // struct LDKCResult_CVec_CVec_u8ZZNoneZ CResult_CVec_CVec_u8ZZNoneZ_ok(struct LDKCVec_CVec_u8ZZ o);
3529         public static native long CResult_CVec_CVec_u8ZZNoneZ_ok(byte[][] o);
3530         // struct LDKCResult_CVec_CVec_u8ZZNoneZ CResult_CVec_CVec_u8ZZNoneZ_err(void);
3531         public static native long CResult_CVec_CVec_u8ZZNoneZ_err();
3532         // bool CResult_CVec_CVec_u8ZZNoneZ_is_ok(const struct LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR o);
3533         public static native boolean CResult_CVec_CVec_u8ZZNoneZ_is_ok(long o);
3534         // void CResult_CVec_CVec_u8ZZNoneZ_free(struct LDKCResult_CVec_CVec_u8ZZNoneZ _res);
3535         public static native void CResult_CVec_CVec_u8ZZNoneZ_free(long _res);
3536         // uint64_t CResult_CVec_CVec_u8ZZNoneZ_clone_ptr(LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR arg);
3537         public static native long CResult_CVec_CVec_u8ZZNoneZ_clone_ptr(long arg);
3538         // struct LDKCResult_CVec_CVec_u8ZZNoneZ CResult_CVec_CVec_u8ZZNoneZ_clone(const struct LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR orig);
3539         public static native long CResult_CVec_CVec_u8ZZNoneZ_clone(long orig);
3540         // struct LDKCResult_InMemorySignerDecodeErrorZ CResult_InMemorySignerDecodeErrorZ_ok(struct LDKInMemorySigner o);
3541         public static native long CResult_InMemorySignerDecodeErrorZ_ok(long o);
3542         // struct LDKCResult_InMemorySignerDecodeErrorZ CResult_InMemorySignerDecodeErrorZ_err(struct LDKDecodeError e);
3543         public static native long CResult_InMemorySignerDecodeErrorZ_err(long e);
3544         // bool CResult_InMemorySignerDecodeErrorZ_is_ok(const struct LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR o);
3545         public static native boolean CResult_InMemorySignerDecodeErrorZ_is_ok(long o);
3546         // void CResult_InMemorySignerDecodeErrorZ_free(struct LDKCResult_InMemorySignerDecodeErrorZ _res);
3547         public static native void CResult_InMemorySignerDecodeErrorZ_free(long _res);
3548         // uint64_t CResult_InMemorySignerDecodeErrorZ_clone_ptr(LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR arg);
3549         public static native long CResult_InMemorySignerDecodeErrorZ_clone_ptr(long arg);
3550         // struct LDKCResult_InMemorySignerDecodeErrorZ CResult_InMemorySignerDecodeErrorZ_clone(const struct LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR orig);
3551         public static native long CResult_InMemorySignerDecodeErrorZ_clone(long orig);
3552         // struct LDKCResult_TransactionNoneZ CResult_TransactionNoneZ_ok(struct LDKTransaction o);
3553         public static native long CResult_TransactionNoneZ_ok(byte[] o);
3554         // struct LDKCResult_TransactionNoneZ CResult_TransactionNoneZ_err(void);
3555         public static native long CResult_TransactionNoneZ_err();
3556         // bool CResult_TransactionNoneZ_is_ok(const struct LDKCResult_TransactionNoneZ *NONNULL_PTR o);
3557         public static native boolean CResult_TransactionNoneZ_is_ok(long o);
3558         // void CResult_TransactionNoneZ_free(struct LDKCResult_TransactionNoneZ _res);
3559         public static native void CResult_TransactionNoneZ_free(long _res);
3560         // uint64_t CResult_TransactionNoneZ_clone_ptr(LDKCResult_TransactionNoneZ *NONNULL_PTR arg);
3561         public static native long CResult_TransactionNoneZ_clone_ptr(long arg);
3562         // struct LDKCResult_TransactionNoneZ CResult_TransactionNoneZ_clone(const struct LDKCResult_TransactionNoneZ *NONNULL_PTR orig);
3563         public static native long CResult_TransactionNoneZ_clone(long orig);
3564         // struct LDKCOption_WriteableScoreZ COption_WriteableScoreZ_some(struct LDKWriteableScore o);
3565         public static native long COption_WriteableScoreZ_some(long o);
3566         // struct LDKCOption_WriteableScoreZ COption_WriteableScoreZ_none(void);
3567         public static native long COption_WriteableScoreZ_none();
3568         // void COption_WriteableScoreZ_free(struct LDKCOption_WriteableScoreZ _res);
3569         public static native void COption_WriteableScoreZ_free(long _res);
3570         // struct LDKCResult_NoneIOErrorZ CResult_NoneIOErrorZ_ok(void);
3571         public static native long CResult_NoneIOErrorZ_ok();
3572         // struct LDKCResult_NoneIOErrorZ CResult_NoneIOErrorZ_err(enum LDKIOError e);
3573         public static native long CResult_NoneIOErrorZ_err(IOError e);
3574         // bool CResult_NoneIOErrorZ_is_ok(const struct LDKCResult_NoneIOErrorZ *NONNULL_PTR o);
3575         public static native boolean CResult_NoneIOErrorZ_is_ok(long o);
3576         // void CResult_NoneIOErrorZ_free(struct LDKCResult_NoneIOErrorZ _res);
3577         public static native void CResult_NoneIOErrorZ_free(long _res);
3578         // uint64_t CResult_NoneIOErrorZ_clone_ptr(LDKCResult_NoneIOErrorZ *NONNULL_PTR arg);
3579         public static native long CResult_NoneIOErrorZ_clone_ptr(long arg);
3580         // struct LDKCResult_NoneIOErrorZ CResult_NoneIOErrorZ_clone(const struct LDKCResult_NoneIOErrorZ *NONNULL_PTR orig);
3581         public static native long CResult_NoneIOErrorZ_clone(long orig);
3582         // void CVec_ChannelDetailsZ_free(struct LDKCVec_ChannelDetailsZ _res);
3583         public static native void CVec_ChannelDetailsZ_free(long[] _res);
3584         // struct LDKCResult_RouteLightningErrorZ CResult_RouteLightningErrorZ_ok(struct LDKRoute o);
3585         public static native long CResult_RouteLightningErrorZ_ok(long o);
3586         // struct LDKCResult_RouteLightningErrorZ CResult_RouteLightningErrorZ_err(struct LDKLightningError e);
3587         public static native long CResult_RouteLightningErrorZ_err(long e);
3588         // bool CResult_RouteLightningErrorZ_is_ok(const struct LDKCResult_RouteLightningErrorZ *NONNULL_PTR o);
3589         public static native boolean CResult_RouteLightningErrorZ_is_ok(long o);
3590         // void CResult_RouteLightningErrorZ_free(struct LDKCResult_RouteLightningErrorZ _res);
3591         public static native void CResult_RouteLightningErrorZ_free(long _res);
3592         // uint64_t CResult_RouteLightningErrorZ_clone_ptr(LDKCResult_RouteLightningErrorZ *NONNULL_PTR arg);
3593         public static native long CResult_RouteLightningErrorZ_clone_ptr(long arg);
3594         // struct LDKCResult_RouteLightningErrorZ CResult_RouteLightningErrorZ_clone(const struct LDKCResult_RouteLightningErrorZ *NONNULL_PTR orig);
3595         public static native long CResult_RouteLightningErrorZ_clone(long orig);
3596         // struct LDKCResult_InFlightHtlcsDecodeErrorZ CResult_InFlightHtlcsDecodeErrorZ_ok(struct LDKInFlightHtlcs o);
3597         public static native long CResult_InFlightHtlcsDecodeErrorZ_ok(long o);
3598         // struct LDKCResult_InFlightHtlcsDecodeErrorZ CResult_InFlightHtlcsDecodeErrorZ_err(struct LDKDecodeError e);
3599         public static native long CResult_InFlightHtlcsDecodeErrorZ_err(long e);
3600         // bool CResult_InFlightHtlcsDecodeErrorZ_is_ok(const struct LDKCResult_InFlightHtlcsDecodeErrorZ *NONNULL_PTR o);
3601         public static native boolean CResult_InFlightHtlcsDecodeErrorZ_is_ok(long o);
3602         // void CResult_InFlightHtlcsDecodeErrorZ_free(struct LDKCResult_InFlightHtlcsDecodeErrorZ _res);
3603         public static native void CResult_InFlightHtlcsDecodeErrorZ_free(long _res);
3604         // uint64_t CResult_InFlightHtlcsDecodeErrorZ_clone_ptr(LDKCResult_InFlightHtlcsDecodeErrorZ *NONNULL_PTR arg);
3605         public static native long CResult_InFlightHtlcsDecodeErrorZ_clone_ptr(long arg);
3606         // struct LDKCResult_InFlightHtlcsDecodeErrorZ CResult_InFlightHtlcsDecodeErrorZ_clone(const struct LDKCResult_InFlightHtlcsDecodeErrorZ *NONNULL_PTR orig);
3607         public static native long CResult_InFlightHtlcsDecodeErrorZ_clone(long orig);
3608         // struct LDKCResult_RouteHopDecodeErrorZ CResult_RouteHopDecodeErrorZ_ok(struct LDKRouteHop o);
3609         public static native long CResult_RouteHopDecodeErrorZ_ok(long o);
3610         // struct LDKCResult_RouteHopDecodeErrorZ CResult_RouteHopDecodeErrorZ_err(struct LDKDecodeError e);
3611         public static native long CResult_RouteHopDecodeErrorZ_err(long e);
3612         // bool CResult_RouteHopDecodeErrorZ_is_ok(const struct LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR o);
3613         public static native boolean CResult_RouteHopDecodeErrorZ_is_ok(long o);
3614         // void CResult_RouteHopDecodeErrorZ_free(struct LDKCResult_RouteHopDecodeErrorZ _res);
3615         public static native void CResult_RouteHopDecodeErrorZ_free(long _res);
3616         // uint64_t CResult_RouteHopDecodeErrorZ_clone_ptr(LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR arg);
3617         public static native long CResult_RouteHopDecodeErrorZ_clone_ptr(long arg);
3618         // struct LDKCResult_RouteHopDecodeErrorZ CResult_RouteHopDecodeErrorZ_clone(const struct LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR orig);
3619         public static native long CResult_RouteHopDecodeErrorZ_clone(long orig);
3620         // void CVec_BlindedHopZ_free(struct LDKCVec_BlindedHopZ _res);
3621         public static native void CVec_BlindedHopZ_free(long[] _res);
3622         // struct LDKCResult_BlindedTailDecodeErrorZ CResult_BlindedTailDecodeErrorZ_ok(struct LDKBlindedTail o);
3623         public static native long CResult_BlindedTailDecodeErrorZ_ok(long o);
3624         // struct LDKCResult_BlindedTailDecodeErrorZ CResult_BlindedTailDecodeErrorZ_err(struct LDKDecodeError e);
3625         public static native long CResult_BlindedTailDecodeErrorZ_err(long e);
3626         // bool CResult_BlindedTailDecodeErrorZ_is_ok(const struct LDKCResult_BlindedTailDecodeErrorZ *NONNULL_PTR o);
3627         public static native boolean CResult_BlindedTailDecodeErrorZ_is_ok(long o);
3628         // void CResult_BlindedTailDecodeErrorZ_free(struct LDKCResult_BlindedTailDecodeErrorZ _res);
3629         public static native void CResult_BlindedTailDecodeErrorZ_free(long _res);
3630         // uint64_t CResult_BlindedTailDecodeErrorZ_clone_ptr(LDKCResult_BlindedTailDecodeErrorZ *NONNULL_PTR arg);
3631         public static native long CResult_BlindedTailDecodeErrorZ_clone_ptr(long arg);
3632         // struct LDKCResult_BlindedTailDecodeErrorZ CResult_BlindedTailDecodeErrorZ_clone(const struct LDKCResult_BlindedTailDecodeErrorZ *NONNULL_PTR orig);
3633         public static native long CResult_BlindedTailDecodeErrorZ_clone(long orig);
3634         // void CVec_RouteHopZ_free(struct LDKCVec_RouteHopZ _res);
3635         public static native void CVec_RouteHopZ_free(long[] _res);
3636         // void CVec_PathZ_free(struct LDKCVec_PathZ _res);
3637         public static native void CVec_PathZ_free(long[] _res);
3638         // struct LDKCResult_RouteDecodeErrorZ CResult_RouteDecodeErrorZ_ok(struct LDKRoute o);
3639         public static native long CResult_RouteDecodeErrorZ_ok(long o);
3640         // struct LDKCResult_RouteDecodeErrorZ CResult_RouteDecodeErrorZ_err(struct LDKDecodeError e);
3641         public static native long CResult_RouteDecodeErrorZ_err(long e);
3642         // bool CResult_RouteDecodeErrorZ_is_ok(const struct LDKCResult_RouteDecodeErrorZ *NONNULL_PTR o);
3643         public static native boolean CResult_RouteDecodeErrorZ_is_ok(long o);
3644         // void CResult_RouteDecodeErrorZ_free(struct LDKCResult_RouteDecodeErrorZ _res);
3645         public static native void CResult_RouteDecodeErrorZ_free(long _res);
3646         // uint64_t CResult_RouteDecodeErrorZ_clone_ptr(LDKCResult_RouteDecodeErrorZ *NONNULL_PTR arg);
3647         public static native long CResult_RouteDecodeErrorZ_clone_ptr(long arg);
3648         // struct LDKCResult_RouteDecodeErrorZ CResult_RouteDecodeErrorZ_clone(const struct LDKCResult_RouteDecodeErrorZ *NONNULL_PTR orig);
3649         public static native long CResult_RouteDecodeErrorZ_clone(long orig);
3650         // struct LDKCResult_RouteParametersDecodeErrorZ CResult_RouteParametersDecodeErrorZ_ok(struct LDKRouteParameters o);
3651         public static native long CResult_RouteParametersDecodeErrorZ_ok(long o);
3652         // struct LDKCResult_RouteParametersDecodeErrorZ CResult_RouteParametersDecodeErrorZ_err(struct LDKDecodeError e);
3653         public static native long CResult_RouteParametersDecodeErrorZ_err(long e);
3654         // bool CResult_RouteParametersDecodeErrorZ_is_ok(const struct LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR o);
3655         public static native boolean CResult_RouteParametersDecodeErrorZ_is_ok(long o);
3656         // void CResult_RouteParametersDecodeErrorZ_free(struct LDKCResult_RouteParametersDecodeErrorZ _res);
3657         public static native void CResult_RouteParametersDecodeErrorZ_free(long _res);
3658         // uint64_t CResult_RouteParametersDecodeErrorZ_clone_ptr(LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR arg);
3659         public static native long CResult_RouteParametersDecodeErrorZ_clone_ptr(long arg);
3660         // struct LDKCResult_RouteParametersDecodeErrorZ CResult_RouteParametersDecodeErrorZ_clone(const struct LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR orig);
3661         public static native long CResult_RouteParametersDecodeErrorZ_clone(long orig);
3662         // void CVec_u64Z_free(struct LDKCVec_u64Z _res);
3663         public static native void CVec_u64Z_free(long[] _res);
3664         // struct LDKCResult_PaymentParametersDecodeErrorZ CResult_PaymentParametersDecodeErrorZ_ok(struct LDKPaymentParameters o);
3665         public static native long CResult_PaymentParametersDecodeErrorZ_ok(long o);
3666         // struct LDKCResult_PaymentParametersDecodeErrorZ CResult_PaymentParametersDecodeErrorZ_err(struct LDKDecodeError e);
3667         public static native long CResult_PaymentParametersDecodeErrorZ_err(long e);
3668         // bool CResult_PaymentParametersDecodeErrorZ_is_ok(const struct LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR o);
3669         public static native boolean CResult_PaymentParametersDecodeErrorZ_is_ok(long o);
3670         // void CResult_PaymentParametersDecodeErrorZ_free(struct LDKCResult_PaymentParametersDecodeErrorZ _res);
3671         public static native void CResult_PaymentParametersDecodeErrorZ_free(long _res);
3672         // uint64_t CResult_PaymentParametersDecodeErrorZ_clone_ptr(LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR arg);
3673         public static native long CResult_PaymentParametersDecodeErrorZ_clone_ptr(long arg);
3674         // struct LDKCResult_PaymentParametersDecodeErrorZ CResult_PaymentParametersDecodeErrorZ_clone(const struct LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR orig);
3675         public static native long CResult_PaymentParametersDecodeErrorZ_clone(long orig);
3676         // uint64_t C2Tuple_BlindedPayInfoBlindedPathZ_clone_ptr(LDKC2Tuple_BlindedPayInfoBlindedPathZ *NONNULL_PTR arg);
3677         public static native long C2Tuple_BlindedPayInfoBlindedPathZ_clone_ptr(long arg);
3678         // struct LDKC2Tuple_BlindedPayInfoBlindedPathZ C2Tuple_BlindedPayInfoBlindedPathZ_clone(const struct LDKC2Tuple_BlindedPayInfoBlindedPathZ *NONNULL_PTR orig);
3679         public static native long C2Tuple_BlindedPayInfoBlindedPathZ_clone(long orig);
3680         // struct LDKC2Tuple_BlindedPayInfoBlindedPathZ C2Tuple_BlindedPayInfoBlindedPathZ_new(struct LDKBlindedPayInfo a, struct LDKBlindedPath b);
3681         public static native long C2Tuple_BlindedPayInfoBlindedPathZ_new(long a, long b);
3682         // void C2Tuple_BlindedPayInfoBlindedPathZ_free(struct LDKC2Tuple_BlindedPayInfoBlindedPathZ _res);
3683         public static native void C2Tuple_BlindedPayInfoBlindedPathZ_free(long _res);
3684         // void CVec_C2Tuple_BlindedPayInfoBlindedPathZZ_free(struct LDKCVec_C2Tuple_BlindedPayInfoBlindedPathZZ _res);
3685         public static native void CVec_C2Tuple_BlindedPayInfoBlindedPathZZ_free(long[] _res);
3686         // void CVec_RouteHintZ_free(struct LDKCVec_RouteHintZ _res);
3687         public static native void CVec_RouteHintZ_free(long[] _res);
3688         // void CVec_RouteHintHopZ_free(struct LDKCVec_RouteHintHopZ _res);
3689         public static native void CVec_RouteHintHopZ_free(long[] _res);
3690         // struct LDKCResult_RouteHintDecodeErrorZ CResult_RouteHintDecodeErrorZ_ok(struct LDKRouteHint o);
3691         public static native long CResult_RouteHintDecodeErrorZ_ok(long o);
3692         // struct LDKCResult_RouteHintDecodeErrorZ CResult_RouteHintDecodeErrorZ_err(struct LDKDecodeError e);
3693         public static native long CResult_RouteHintDecodeErrorZ_err(long e);
3694         // bool CResult_RouteHintDecodeErrorZ_is_ok(const struct LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR o);
3695         public static native boolean CResult_RouteHintDecodeErrorZ_is_ok(long o);
3696         // void CResult_RouteHintDecodeErrorZ_free(struct LDKCResult_RouteHintDecodeErrorZ _res);
3697         public static native void CResult_RouteHintDecodeErrorZ_free(long _res);
3698         // uint64_t CResult_RouteHintDecodeErrorZ_clone_ptr(LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR arg);
3699         public static native long CResult_RouteHintDecodeErrorZ_clone_ptr(long arg);
3700         // struct LDKCResult_RouteHintDecodeErrorZ CResult_RouteHintDecodeErrorZ_clone(const struct LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR orig);
3701         public static native long CResult_RouteHintDecodeErrorZ_clone(long orig);
3702         // struct LDKCResult_RouteHintHopDecodeErrorZ CResult_RouteHintHopDecodeErrorZ_ok(struct LDKRouteHintHop o);
3703         public static native long CResult_RouteHintHopDecodeErrorZ_ok(long o);
3704         // struct LDKCResult_RouteHintHopDecodeErrorZ CResult_RouteHintHopDecodeErrorZ_err(struct LDKDecodeError e);
3705         public static native long CResult_RouteHintHopDecodeErrorZ_err(long e);
3706         // bool CResult_RouteHintHopDecodeErrorZ_is_ok(const struct LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR o);
3707         public static native boolean CResult_RouteHintHopDecodeErrorZ_is_ok(long o);
3708         // void CResult_RouteHintHopDecodeErrorZ_free(struct LDKCResult_RouteHintHopDecodeErrorZ _res);
3709         public static native void CResult_RouteHintHopDecodeErrorZ_free(long _res);
3710         // uint64_t CResult_RouteHintHopDecodeErrorZ_clone_ptr(LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR arg);
3711         public static native long CResult_RouteHintHopDecodeErrorZ_clone_ptr(long arg);
3712         // struct LDKCResult_RouteHintHopDecodeErrorZ CResult_RouteHintHopDecodeErrorZ_clone(const struct LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR orig);
3713         public static native long CResult_RouteHintHopDecodeErrorZ_clone(long orig);
3714         // void CVec_PublicKeyZ_free(struct LDKCVec_PublicKeyZ _res);
3715         public static native void CVec_PublicKeyZ_free(byte[][] _res);
3716         // struct LDKCResult_FixedPenaltyScorerDecodeErrorZ CResult_FixedPenaltyScorerDecodeErrorZ_ok(struct LDKFixedPenaltyScorer o);
3717         public static native long CResult_FixedPenaltyScorerDecodeErrorZ_ok(long o);
3718         // struct LDKCResult_FixedPenaltyScorerDecodeErrorZ CResult_FixedPenaltyScorerDecodeErrorZ_err(struct LDKDecodeError e);
3719         public static native long CResult_FixedPenaltyScorerDecodeErrorZ_err(long e);
3720         // bool CResult_FixedPenaltyScorerDecodeErrorZ_is_ok(const struct LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR o);
3721         public static native boolean CResult_FixedPenaltyScorerDecodeErrorZ_is_ok(long o);
3722         // void CResult_FixedPenaltyScorerDecodeErrorZ_free(struct LDKCResult_FixedPenaltyScorerDecodeErrorZ _res);
3723         public static native void CResult_FixedPenaltyScorerDecodeErrorZ_free(long _res);
3724         // uint64_t CResult_FixedPenaltyScorerDecodeErrorZ_clone_ptr(LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR arg);
3725         public static native long CResult_FixedPenaltyScorerDecodeErrorZ_clone_ptr(long arg);
3726         // struct LDKCResult_FixedPenaltyScorerDecodeErrorZ CResult_FixedPenaltyScorerDecodeErrorZ_clone(const struct LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR orig);
3727         public static native long CResult_FixedPenaltyScorerDecodeErrorZ_clone(long orig);
3728         // void CVec_NodeIdZ_free(struct LDKCVec_NodeIdZ _res);
3729         public static native void CVec_NodeIdZ_free(long[] _res);
3730         // uint64_t C2Tuple_u64u64Z_clone_ptr(LDKC2Tuple_u64u64Z *NONNULL_PTR arg);
3731         public static native long C2Tuple_u64u64Z_clone_ptr(long arg);
3732         // struct LDKC2Tuple_u64u64Z C2Tuple_u64u64Z_clone(const struct LDKC2Tuple_u64u64Z *NONNULL_PTR orig);
3733         public static native long C2Tuple_u64u64Z_clone(long orig);
3734         // struct LDKC2Tuple_u64u64Z C2Tuple_u64u64Z_new(uint64_t a, uint64_t b);
3735         public static native long C2Tuple_u64u64Z_new(long a, long b);
3736         // void C2Tuple_u64u64Z_free(struct LDKC2Tuple_u64u64Z _res);
3737         public static native void C2Tuple_u64u64Z_free(long _res);
3738         // struct LDKCOption_C2Tuple_u64u64ZZ COption_C2Tuple_u64u64ZZ_some(struct LDKC2Tuple_u64u64Z o);
3739         public static native long COption_C2Tuple_u64u64ZZ_some(long o);
3740         // struct LDKCOption_C2Tuple_u64u64ZZ COption_C2Tuple_u64u64ZZ_none(void);
3741         public static native long COption_C2Tuple_u64u64ZZ_none();
3742         // void COption_C2Tuple_u64u64ZZ_free(struct LDKCOption_C2Tuple_u64u64ZZ _res);
3743         public static native void COption_C2Tuple_u64u64ZZ_free(long _res);
3744         // uint64_t COption_C2Tuple_u64u64ZZ_clone_ptr(LDKCOption_C2Tuple_u64u64ZZ *NONNULL_PTR arg);
3745         public static native long COption_C2Tuple_u64u64ZZ_clone_ptr(long arg);
3746         // struct LDKCOption_C2Tuple_u64u64ZZ COption_C2Tuple_u64u64ZZ_clone(const struct LDKCOption_C2Tuple_u64u64ZZ *NONNULL_PTR orig);
3747         public static native long COption_C2Tuple_u64u64ZZ_clone(long orig);
3748         // struct LDKC2Tuple_Z C2Tuple_Z_new(struct LDKThirtyTwoU16s a, struct LDKThirtyTwoU16s b);
3749         public static native long C2Tuple_Z_new(short[] a, short[] b);
3750         // void C2Tuple_Z_free(struct LDKC2Tuple_Z _res);
3751         public static native void C2Tuple_Z_free(long _res);
3752         // struct LDKC2Tuple__u1632_u1632Z C2Tuple__u1632_u1632Z_new(struct LDKThirtyTwoU16s a, struct LDKThirtyTwoU16s b);
3753         public static native long C2Tuple__u1632_u1632Z_new(short[] a, short[] b);
3754         // void C2Tuple__u1632_u1632Z_free(struct LDKC2Tuple__u1632_u1632Z _res);
3755         public static native void C2Tuple__u1632_u1632Z_free(long _res);
3756         // struct LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ COption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ_some(struct LDKC2Tuple__u1632_u1632Z o);
3757         public static native long COption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ_some(long o);
3758         // struct LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ COption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ_none(void);
3759         public static native long COption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ_none();
3760         // void COption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ_free(struct LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ _res);
3761         public static native void COption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ_free(long _res);
3762         // struct LDKCOption_f64Z COption_f64Z_some(double o);
3763         public static native long COption_f64Z_some(double o);
3764         // struct LDKCOption_f64Z COption_f64Z_none(void);
3765         public static native long COption_f64Z_none();
3766         // void COption_f64Z_free(struct LDKCOption_f64Z _res);
3767         public static native void COption_f64Z_free(long _res);
3768         // uint64_t COption_f64Z_clone_ptr(LDKCOption_f64Z *NONNULL_PTR arg);
3769         public static native long COption_f64Z_clone_ptr(long arg);
3770         // struct LDKCOption_f64Z COption_f64Z_clone(const struct LDKCOption_f64Z *NONNULL_PTR orig);
3771         public static native long COption_f64Z_clone(long orig);
3772         // struct LDKCResult_ProbabilisticScorerDecodeErrorZ CResult_ProbabilisticScorerDecodeErrorZ_ok(struct LDKProbabilisticScorer o);
3773         public static native long CResult_ProbabilisticScorerDecodeErrorZ_ok(long o);
3774         // struct LDKCResult_ProbabilisticScorerDecodeErrorZ CResult_ProbabilisticScorerDecodeErrorZ_err(struct LDKDecodeError e);
3775         public static native long CResult_ProbabilisticScorerDecodeErrorZ_err(long e);
3776         // bool CResult_ProbabilisticScorerDecodeErrorZ_is_ok(const struct LDKCResult_ProbabilisticScorerDecodeErrorZ *NONNULL_PTR o);
3777         public static native boolean CResult_ProbabilisticScorerDecodeErrorZ_is_ok(long o);
3778         // void CResult_ProbabilisticScorerDecodeErrorZ_free(struct LDKCResult_ProbabilisticScorerDecodeErrorZ _res);
3779         public static native void CResult_ProbabilisticScorerDecodeErrorZ_free(long _res);
3780         // uint64_t C2Tuple_usizeTransactionZ_clone_ptr(LDKC2Tuple_usizeTransactionZ *NONNULL_PTR arg);
3781         public static native long C2Tuple_usizeTransactionZ_clone_ptr(long arg);
3782         // struct LDKC2Tuple_usizeTransactionZ C2Tuple_usizeTransactionZ_clone(const struct LDKC2Tuple_usizeTransactionZ *NONNULL_PTR orig);
3783         public static native long C2Tuple_usizeTransactionZ_clone(long orig);
3784         // struct LDKC2Tuple_usizeTransactionZ C2Tuple_usizeTransactionZ_new(uintptr_t a, struct LDKTransaction b);
3785         public static native long C2Tuple_usizeTransactionZ_new(long a, byte[] b);
3786         // void C2Tuple_usizeTransactionZ_free(struct LDKC2Tuple_usizeTransactionZ _res);
3787         public static native void C2Tuple_usizeTransactionZ_free(long _res);
3788         // void CVec_C2Tuple_usizeTransactionZZ_free(struct LDKCVec_C2Tuple_usizeTransactionZZ _res);
3789         public static native void CVec_C2Tuple_usizeTransactionZZ_free(long[] _res);
3790         // uint64_t C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_clone_ptr(LDKC2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ *NONNULL_PTR arg);
3791         public static native long C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_clone_ptr(long arg);
3792         // struct LDKC2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_clone(const struct LDKC2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ *NONNULL_PTR orig);
3793         public static native long C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_clone(long orig);
3794         // struct LDKC2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_new(struct LDKThirtyTwoBytes a, struct LDKCOption_ThirtyTwoBytesZ b);
3795         public static native long C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_new(byte[] a, long b);
3796         // void C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_free(struct LDKC2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ _res);
3797         public static native void C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZ_free(long _res);
3798         // void CVec_C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZZ_free(struct LDKCVec_C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZZ _res);
3799         public static native void CVec_C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZZ_free(long[] _res);
3800         // struct LDKCResult_ChannelMonitorUpdateStatusNoneZ CResult_ChannelMonitorUpdateStatusNoneZ_ok(enum LDKChannelMonitorUpdateStatus o);
3801         public static native long CResult_ChannelMonitorUpdateStatusNoneZ_ok(ChannelMonitorUpdateStatus o);
3802         // struct LDKCResult_ChannelMonitorUpdateStatusNoneZ CResult_ChannelMonitorUpdateStatusNoneZ_err(void);
3803         public static native long CResult_ChannelMonitorUpdateStatusNoneZ_err();
3804         // bool CResult_ChannelMonitorUpdateStatusNoneZ_is_ok(const struct LDKCResult_ChannelMonitorUpdateStatusNoneZ *NONNULL_PTR o);
3805         public static native boolean CResult_ChannelMonitorUpdateStatusNoneZ_is_ok(long o);
3806         // void CResult_ChannelMonitorUpdateStatusNoneZ_free(struct LDKCResult_ChannelMonitorUpdateStatusNoneZ _res);
3807         public static native void CResult_ChannelMonitorUpdateStatusNoneZ_free(long _res);
3808         // uint64_t CResult_ChannelMonitorUpdateStatusNoneZ_clone_ptr(LDKCResult_ChannelMonitorUpdateStatusNoneZ *NONNULL_PTR arg);
3809         public static native long CResult_ChannelMonitorUpdateStatusNoneZ_clone_ptr(long arg);
3810         // struct LDKCResult_ChannelMonitorUpdateStatusNoneZ CResult_ChannelMonitorUpdateStatusNoneZ_clone(const struct LDKCResult_ChannelMonitorUpdateStatusNoneZ *NONNULL_PTR orig);
3811         public static native long CResult_ChannelMonitorUpdateStatusNoneZ_clone(long orig);
3812         // void CVec_MonitorEventZ_free(struct LDKCVec_MonitorEventZ _res);
3813         public static native void CVec_MonitorEventZ_free(long[] _res);
3814         // uint64_t C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone_ptr(LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR arg);
3815         public static native long C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone_ptr(long arg);
3816         // struct LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone(const struct LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR orig);
3817         public static native long C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone(long orig);
3818         // struct LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_new(struct LDKOutPoint a, struct LDKCVec_MonitorEventZ b, struct LDKPublicKey c);
3819         public static native long C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_new(long a, long[] b, byte[] c);
3820         // void C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_free(struct LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ _res);
3821         public static native void C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_free(long _res);
3822         // void CVec_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZZ_free(struct LDKCVec_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZZ _res);
3823         public static native void CVec_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZZ_free(long[] _res);
3824         // struct LDKCResult_InitFeaturesDecodeErrorZ CResult_InitFeaturesDecodeErrorZ_ok(struct LDKInitFeatures o);
3825         public static native long CResult_InitFeaturesDecodeErrorZ_ok(long o);
3826         // struct LDKCResult_InitFeaturesDecodeErrorZ CResult_InitFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
3827         public static native long CResult_InitFeaturesDecodeErrorZ_err(long e);
3828         // bool CResult_InitFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR o);
3829         public static native boolean CResult_InitFeaturesDecodeErrorZ_is_ok(long o);
3830         // void CResult_InitFeaturesDecodeErrorZ_free(struct LDKCResult_InitFeaturesDecodeErrorZ _res);
3831         public static native void CResult_InitFeaturesDecodeErrorZ_free(long _res);
3832         // uint64_t CResult_InitFeaturesDecodeErrorZ_clone_ptr(LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR arg);
3833         public static native long CResult_InitFeaturesDecodeErrorZ_clone_ptr(long arg);
3834         // struct LDKCResult_InitFeaturesDecodeErrorZ CResult_InitFeaturesDecodeErrorZ_clone(const struct LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR orig);
3835         public static native long CResult_InitFeaturesDecodeErrorZ_clone(long orig);
3836         // struct LDKCResult_ChannelFeaturesDecodeErrorZ CResult_ChannelFeaturesDecodeErrorZ_ok(struct LDKChannelFeatures o);
3837         public static native long CResult_ChannelFeaturesDecodeErrorZ_ok(long o);
3838         // struct LDKCResult_ChannelFeaturesDecodeErrorZ CResult_ChannelFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
3839         public static native long CResult_ChannelFeaturesDecodeErrorZ_err(long e);
3840         // bool CResult_ChannelFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR o);
3841         public static native boolean CResult_ChannelFeaturesDecodeErrorZ_is_ok(long o);
3842         // void CResult_ChannelFeaturesDecodeErrorZ_free(struct LDKCResult_ChannelFeaturesDecodeErrorZ _res);
3843         public static native void CResult_ChannelFeaturesDecodeErrorZ_free(long _res);
3844         // uint64_t CResult_ChannelFeaturesDecodeErrorZ_clone_ptr(LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR arg);
3845         public static native long CResult_ChannelFeaturesDecodeErrorZ_clone_ptr(long arg);
3846         // struct LDKCResult_ChannelFeaturesDecodeErrorZ CResult_ChannelFeaturesDecodeErrorZ_clone(const struct LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR orig);
3847         public static native long CResult_ChannelFeaturesDecodeErrorZ_clone(long orig);
3848         // struct LDKCResult_NodeFeaturesDecodeErrorZ CResult_NodeFeaturesDecodeErrorZ_ok(struct LDKNodeFeatures o);
3849         public static native long CResult_NodeFeaturesDecodeErrorZ_ok(long o);
3850         // struct LDKCResult_NodeFeaturesDecodeErrorZ CResult_NodeFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
3851         public static native long CResult_NodeFeaturesDecodeErrorZ_err(long e);
3852         // bool CResult_NodeFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR o);
3853         public static native boolean CResult_NodeFeaturesDecodeErrorZ_is_ok(long o);
3854         // void CResult_NodeFeaturesDecodeErrorZ_free(struct LDKCResult_NodeFeaturesDecodeErrorZ _res);
3855         public static native void CResult_NodeFeaturesDecodeErrorZ_free(long _res);
3856         // uint64_t CResult_NodeFeaturesDecodeErrorZ_clone_ptr(LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR arg);
3857         public static native long CResult_NodeFeaturesDecodeErrorZ_clone_ptr(long arg);
3858         // struct LDKCResult_NodeFeaturesDecodeErrorZ CResult_NodeFeaturesDecodeErrorZ_clone(const struct LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR orig);
3859         public static native long CResult_NodeFeaturesDecodeErrorZ_clone(long orig);
3860         // struct LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ CResult_Bolt11InvoiceFeaturesDecodeErrorZ_ok(struct LDKBolt11InvoiceFeatures o);
3861         public static native long CResult_Bolt11InvoiceFeaturesDecodeErrorZ_ok(long o);
3862         // struct LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ CResult_Bolt11InvoiceFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
3863         public static native long CResult_Bolt11InvoiceFeaturesDecodeErrorZ_err(long e);
3864         // bool CResult_Bolt11InvoiceFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ *NONNULL_PTR o);
3865         public static native boolean CResult_Bolt11InvoiceFeaturesDecodeErrorZ_is_ok(long o);
3866         // void CResult_Bolt11InvoiceFeaturesDecodeErrorZ_free(struct LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ _res);
3867         public static native void CResult_Bolt11InvoiceFeaturesDecodeErrorZ_free(long _res);
3868         // uint64_t CResult_Bolt11InvoiceFeaturesDecodeErrorZ_clone_ptr(LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ *NONNULL_PTR arg);
3869         public static native long CResult_Bolt11InvoiceFeaturesDecodeErrorZ_clone_ptr(long arg);
3870         // struct LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ CResult_Bolt11InvoiceFeaturesDecodeErrorZ_clone(const struct LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ *NONNULL_PTR orig);
3871         public static native long CResult_Bolt11InvoiceFeaturesDecodeErrorZ_clone(long orig);
3872         // struct LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ CResult_Bolt12InvoiceFeaturesDecodeErrorZ_ok(struct LDKBolt12InvoiceFeatures o);
3873         public static native long CResult_Bolt12InvoiceFeaturesDecodeErrorZ_ok(long o);
3874         // struct LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ CResult_Bolt12InvoiceFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
3875         public static native long CResult_Bolt12InvoiceFeaturesDecodeErrorZ_err(long e);
3876         // bool CResult_Bolt12InvoiceFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ *NONNULL_PTR o);
3877         public static native boolean CResult_Bolt12InvoiceFeaturesDecodeErrorZ_is_ok(long o);
3878         // void CResult_Bolt12InvoiceFeaturesDecodeErrorZ_free(struct LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ _res);
3879         public static native void CResult_Bolt12InvoiceFeaturesDecodeErrorZ_free(long _res);
3880         // uint64_t CResult_Bolt12InvoiceFeaturesDecodeErrorZ_clone_ptr(LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ *NONNULL_PTR arg);
3881         public static native long CResult_Bolt12InvoiceFeaturesDecodeErrorZ_clone_ptr(long arg);
3882         // struct LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ CResult_Bolt12InvoiceFeaturesDecodeErrorZ_clone(const struct LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ *NONNULL_PTR orig);
3883         public static native long CResult_Bolt12InvoiceFeaturesDecodeErrorZ_clone(long orig);
3884         // struct LDKCResult_BlindedHopFeaturesDecodeErrorZ CResult_BlindedHopFeaturesDecodeErrorZ_ok(struct LDKBlindedHopFeatures o);
3885         public static native long CResult_BlindedHopFeaturesDecodeErrorZ_ok(long o);
3886         // struct LDKCResult_BlindedHopFeaturesDecodeErrorZ CResult_BlindedHopFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
3887         public static native long CResult_BlindedHopFeaturesDecodeErrorZ_err(long e);
3888         // bool CResult_BlindedHopFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_BlindedHopFeaturesDecodeErrorZ *NONNULL_PTR o);
3889         public static native boolean CResult_BlindedHopFeaturesDecodeErrorZ_is_ok(long o);
3890         // void CResult_BlindedHopFeaturesDecodeErrorZ_free(struct LDKCResult_BlindedHopFeaturesDecodeErrorZ _res);
3891         public static native void CResult_BlindedHopFeaturesDecodeErrorZ_free(long _res);
3892         // uint64_t CResult_BlindedHopFeaturesDecodeErrorZ_clone_ptr(LDKCResult_BlindedHopFeaturesDecodeErrorZ *NONNULL_PTR arg);
3893         public static native long CResult_BlindedHopFeaturesDecodeErrorZ_clone_ptr(long arg);
3894         // struct LDKCResult_BlindedHopFeaturesDecodeErrorZ CResult_BlindedHopFeaturesDecodeErrorZ_clone(const struct LDKCResult_BlindedHopFeaturesDecodeErrorZ *NONNULL_PTR orig);
3895         public static native long CResult_BlindedHopFeaturesDecodeErrorZ_clone(long orig);
3896         // struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ CResult_ChannelTypeFeaturesDecodeErrorZ_ok(struct LDKChannelTypeFeatures o);
3897         public static native long CResult_ChannelTypeFeaturesDecodeErrorZ_ok(long o);
3898         // struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ CResult_ChannelTypeFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
3899         public static native long CResult_ChannelTypeFeaturesDecodeErrorZ_err(long e);
3900         // bool CResult_ChannelTypeFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR o);
3901         public static native boolean CResult_ChannelTypeFeaturesDecodeErrorZ_is_ok(long o);
3902         // void CResult_ChannelTypeFeaturesDecodeErrorZ_free(struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ _res);
3903         public static native void CResult_ChannelTypeFeaturesDecodeErrorZ_free(long _res);
3904         // uint64_t CResult_ChannelTypeFeaturesDecodeErrorZ_clone_ptr(LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR arg);
3905         public static native long CResult_ChannelTypeFeaturesDecodeErrorZ_clone_ptr(long arg);
3906         // struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ CResult_ChannelTypeFeaturesDecodeErrorZ_clone(const struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR orig);
3907         public static native long CResult_ChannelTypeFeaturesDecodeErrorZ_clone(long orig);
3908         // struct LDKCResult_OfferBolt12ParseErrorZ CResult_OfferBolt12ParseErrorZ_ok(struct LDKOffer o);
3909         public static native long CResult_OfferBolt12ParseErrorZ_ok(long o);
3910         // struct LDKCResult_OfferBolt12ParseErrorZ CResult_OfferBolt12ParseErrorZ_err(struct LDKBolt12ParseError e);
3911         public static native long CResult_OfferBolt12ParseErrorZ_err(long e);
3912         // bool CResult_OfferBolt12ParseErrorZ_is_ok(const struct LDKCResult_OfferBolt12ParseErrorZ *NONNULL_PTR o);
3913         public static native boolean CResult_OfferBolt12ParseErrorZ_is_ok(long o);
3914         // void CResult_OfferBolt12ParseErrorZ_free(struct LDKCResult_OfferBolt12ParseErrorZ _res);
3915         public static native void CResult_OfferBolt12ParseErrorZ_free(long _res);
3916         // uint64_t CResult_OfferBolt12ParseErrorZ_clone_ptr(LDKCResult_OfferBolt12ParseErrorZ *NONNULL_PTR arg);
3917         public static native long CResult_OfferBolt12ParseErrorZ_clone_ptr(long arg);
3918         // struct LDKCResult_OfferBolt12ParseErrorZ CResult_OfferBolt12ParseErrorZ_clone(const struct LDKCResult_OfferBolt12ParseErrorZ *NONNULL_PTR orig);
3919         public static native long CResult_OfferBolt12ParseErrorZ_clone(long orig);
3920         // struct LDKCResult_PublicKeySecp256k1ErrorZ CResult_PublicKeySecp256k1ErrorZ_ok(struct LDKPublicKey o);
3921         public static native long CResult_PublicKeySecp256k1ErrorZ_ok(byte[] o);
3922         // struct LDKCResult_PublicKeySecp256k1ErrorZ CResult_PublicKeySecp256k1ErrorZ_err(enum LDKSecp256k1Error e);
3923         public static native long CResult_PublicKeySecp256k1ErrorZ_err(Secp256k1Error e);
3924         // bool CResult_PublicKeySecp256k1ErrorZ_is_ok(const struct LDKCResult_PublicKeySecp256k1ErrorZ *NONNULL_PTR o);
3925         public static native boolean CResult_PublicKeySecp256k1ErrorZ_is_ok(long o);
3926         // void CResult_PublicKeySecp256k1ErrorZ_free(struct LDKCResult_PublicKeySecp256k1ErrorZ _res);
3927         public static native void CResult_PublicKeySecp256k1ErrorZ_free(long _res);
3928         // uint64_t CResult_PublicKeySecp256k1ErrorZ_clone_ptr(LDKCResult_PublicKeySecp256k1ErrorZ *NONNULL_PTR arg);
3929         public static native long CResult_PublicKeySecp256k1ErrorZ_clone_ptr(long arg);
3930         // struct LDKCResult_PublicKeySecp256k1ErrorZ CResult_PublicKeySecp256k1ErrorZ_clone(const struct LDKCResult_PublicKeySecp256k1ErrorZ *NONNULL_PTR orig);
3931         public static native long CResult_PublicKeySecp256k1ErrorZ_clone(long orig);
3932         // struct LDKCResult_NodeIdDecodeErrorZ CResult_NodeIdDecodeErrorZ_ok(struct LDKNodeId o);
3933         public static native long CResult_NodeIdDecodeErrorZ_ok(long o);
3934         // struct LDKCResult_NodeIdDecodeErrorZ CResult_NodeIdDecodeErrorZ_err(struct LDKDecodeError e);
3935         public static native long CResult_NodeIdDecodeErrorZ_err(long e);
3936         // bool CResult_NodeIdDecodeErrorZ_is_ok(const struct LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR o);
3937         public static native boolean CResult_NodeIdDecodeErrorZ_is_ok(long o);
3938         // void CResult_NodeIdDecodeErrorZ_free(struct LDKCResult_NodeIdDecodeErrorZ _res);
3939         public static native void CResult_NodeIdDecodeErrorZ_free(long _res);
3940         // uint64_t CResult_NodeIdDecodeErrorZ_clone_ptr(LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR arg);
3941         public static native long CResult_NodeIdDecodeErrorZ_clone_ptr(long arg);
3942         // struct LDKCResult_NodeIdDecodeErrorZ CResult_NodeIdDecodeErrorZ_clone(const struct LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR orig);
3943         public static native long CResult_NodeIdDecodeErrorZ_clone(long orig);
3944         // struct LDKCOption_NetworkUpdateZ COption_NetworkUpdateZ_some(struct LDKNetworkUpdate o);
3945         public static native long COption_NetworkUpdateZ_some(long o);
3946         // struct LDKCOption_NetworkUpdateZ COption_NetworkUpdateZ_none(void);
3947         public static native long COption_NetworkUpdateZ_none();
3948         // void COption_NetworkUpdateZ_free(struct LDKCOption_NetworkUpdateZ _res);
3949         public static native void COption_NetworkUpdateZ_free(long _res);
3950         // uint64_t COption_NetworkUpdateZ_clone_ptr(LDKCOption_NetworkUpdateZ *NONNULL_PTR arg);
3951         public static native long COption_NetworkUpdateZ_clone_ptr(long arg);
3952         // struct LDKCOption_NetworkUpdateZ COption_NetworkUpdateZ_clone(const struct LDKCOption_NetworkUpdateZ *NONNULL_PTR orig);
3953         public static native long COption_NetworkUpdateZ_clone(long orig);
3954         // struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ CResult_COption_NetworkUpdateZDecodeErrorZ_ok(struct LDKCOption_NetworkUpdateZ o);
3955         public static native long CResult_COption_NetworkUpdateZDecodeErrorZ_ok(long o);
3956         // struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ CResult_COption_NetworkUpdateZDecodeErrorZ_err(struct LDKDecodeError e);
3957         public static native long CResult_COption_NetworkUpdateZDecodeErrorZ_err(long e);
3958         // bool CResult_COption_NetworkUpdateZDecodeErrorZ_is_ok(const struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR o);
3959         public static native boolean CResult_COption_NetworkUpdateZDecodeErrorZ_is_ok(long o);
3960         // void CResult_COption_NetworkUpdateZDecodeErrorZ_free(struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ _res);
3961         public static native void CResult_COption_NetworkUpdateZDecodeErrorZ_free(long _res);
3962         // uint64_t CResult_COption_NetworkUpdateZDecodeErrorZ_clone_ptr(LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR arg);
3963         public static native long CResult_COption_NetworkUpdateZDecodeErrorZ_clone_ptr(long arg);
3964         // struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ CResult_COption_NetworkUpdateZDecodeErrorZ_clone(const struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR orig);
3965         public static native long CResult_COption_NetworkUpdateZDecodeErrorZ_clone(long orig);
3966         // struct LDKCOption_UtxoLookupZ COption_UtxoLookupZ_some(struct LDKUtxoLookup o);
3967         public static native long COption_UtxoLookupZ_some(long o);
3968         // struct LDKCOption_UtxoLookupZ COption_UtxoLookupZ_none(void);
3969         public static native long COption_UtxoLookupZ_none();
3970         // void COption_UtxoLookupZ_free(struct LDKCOption_UtxoLookupZ _res);
3971         public static native void COption_UtxoLookupZ_free(long _res);
3972         // struct LDKCResult_NoneLightningErrorZ CResult_NoneLightningErrorZ_ok(void);
3973         public static native long CResult_NoneLightningErrorZ_ok();
3974         // struct LDKCResult_NoneLightningErrorZ CResult_NoneLightningErrorZ_err(struct LDKLightningError e);
3975         public static native long CResult_NoneLightningErrorZ_err(long e);
3976         // bool CResult_NoneLightningErrorZ_is_ok(const struct LDKCResult_NoneLightningErrorZ *NONNULL_PTR o);
3977         public static native boolean CResult_NoneLightningErrorZ_is_ok(long o);
3978         // void CResult_NoneLightningErrorZ_free(struct LDKCResult_NoneLightningErrorZ _res);
3979         public static native void CResult_NoneLightningErrorZ_free(long _res);
3980         // uint64_t CResult_NoneLightningErrorZ_clone_ptr(LDKCResult_NoneLightningErrorZ *NONNULL_PTR arg);
3981         public static native long CResult_NoneLightningErrorZ_clone_ptr(long arg);
3982         // struct LDKCResult_NoneLightningErrorZ CResult_NoneLightningErrorZ_clone(const struct LDKCResult_NoneLightningErrorZ *NONNULL_PTR orig);
3983         public static native long CResult_NoneLightningErrorZ_clone(long orig);
3984         // struct LDKCResult_boolLightningErrorZ CResult_boolLightningErrorZ_ok(bool o);
3985         public static native long CResult_boolLightningErrorZ_ok(boolean o);
3986         // struct LDKCResult_boolLightningErrorZ CResult_boolLightningErrorZ_err(struct LDKLightningError e);
3987         public static native long CResult_boolLightningErrorZ_err(long e);
3988         // bool CResult_boolLightningErrorZ_is_ok(const struct LDKCResult_boolLightningErrorZ *NONNULL_PTR o);
3989         public static native boolean CResult_boolLightningErrorZ_is_ok(long o);
3990         // void CResult_boolLightningErrorZ_free(struct LDKCResult_boolLightningErrorZ _res);
3991         public static native void CResult_boolLightningErrorZ_free(long _res);
3992         // uint64_t CResult_boolLightningErrorZ_clone_ptr(LDKCResult_boolLightningErrorZ *NONNULL_PTR arg);
3993         public static native long CResult_boolLightningErrorZ_clone_ptr(long arg);
3994         // struct LDKCResult_boolLightningErrorZ CResult_boolLightningErrorZ_clone(const struct LDKCResult_boolLightningErrorZ *NONNULL_PTR orig);
3995         public static native long CResult_boolLightningErrorZ_clone(long orig);
3996         // uint64_t C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone_ptr(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR arg);
3997         public static native long C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone_ptr(long arg);
3998         // struct LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone(const struct LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR orig);
3999         public static native long C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone(long orig);
4000         // struct LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_new(struct LDKChannelAnnouncement a, struct LDKChannelUpdate b, struct LDKChannelUpdate c);
4001         public static native long C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_new(long a, long b, long c);
4002         // void C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_free(struct LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ _res);
4003         public static native void C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_free(long _res);
4004         // struct LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_some(struct LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ o);
4005         public static native long COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_some(long o);
4006         // struct LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_none(void);
4007         public static native long COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_none();
4008         // void COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_free(struct LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ _res);
4009         public static native void COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_free(long _res);
4010         // uint64_t COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_clone_ptr(LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ *NONNULL_PTR arg);
4011         public static native long COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_clone_ptr(long arg);
4012         // struct LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_clone(const struct LDKCOption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ *NONNULL_PTR orig);
4013         public static native long COption_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_clone(long orig);
4014         // void CVec_MessageSendEventZ_free(struct LDKCVec_MessageSendEventZ _res);
4015         public static native void CVec_MessageSendEventZ_free(long[] _res);
4016         // struct LDKCResult_ChannelUpdateInfoDecodeErrorZ CResult_ChannelUpdateInfoDecodeErrorZ_ok(struct LDKChannelUpdateInfo o);
4017         public static native long CResult_ChannelUpdateInfoDecodeErrorZ_ok(long o);
4018         // struct LDKCResult_ChannelUpdateInfoDecodeErrorZ CResult_ChannelUpdateInfoDecodeErrorZ_err(struct LDKDecodeError e);
4019         public static native long CResult_ChannelUpdateInfoDecodeErrorZ_err(long e);
4020         // bool CResult_ChannelUpdateInfoDecodeErrorZ_is_ok(const struct LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR o);
4021         public static native boolean CResult_ChannelUpdateInfoDecodeErrorZ_is_ok(long o);
4022         // void CResult_ChannelUpdateInfoDecodeErrorZ_free(struct LDKCResult_ChannelUpdateInfoDecodeErrorZ _res);
4023         public static native void CResult_ChannelUpdateInfoDecodeErrorZ_free(long _res);
4024         // uint64_t CResult_ChannelUpdateInfoDecodeErrorZ_clone_ptr(LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR arg);
4025         public static native long CResult_ChannelUpdateInfoDecodeErrorZ_clone_ptr(long arg);
4026         // struct LDKCResult_ChannelUpdateInfoDecodeErrorZ CResult_ChannelUpdateInfoDecodeErrorZ_clone(const struct LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR orig);
4027         public static native long CResult_ChannelUpdateInfoDecodeErrorZ_clone(long orig);
4028         // struct LDKCResult_ChannelInfoDecodeErrorZ CResult_ChannelInfoDecodeErrorZ_ok(struct LDKChannelInfo o);
4029         public static native long CResult_ChannelInfoDecodeErrorZ_ok(long o);
4030         // struct LDKCResult_ChannelInfoDecodeErrorZ CResult_ChannelInfoDecodeErrorZ_err(struct LDKDecodeError e);
4031         public static native long CResult_ChannelInfoDecodeErrorZ_err(long e);
4032         // bool CResult_ChannelInfoDecodeErrorZ_is_ok(const struct LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR o);
4033         public static native boolean CResult_ChannelInfoDecodeErrorZ_is_ok(long o);
4034         // void CResult_ChannelInfoDecodeErrorZ_free(struct LDKCResult_ChannelInfoDecodeErrorZ _res);
4035         public static native void CResult_ChannelInfoDecodeErrorZ_free(long _res);
4036         // uint64_t CResult_ChannelInfoDecodeErrorZ_clone_ptr(LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR arg);
4037         public static native long CResult_ChannelInfoDecodeErrorZ_clone_ptr(long arg);
4038         // struct LDKCResult_ChannelInfoDecodeErrorZ CResult_ChannelInfoDecodeErrorZ_clone(const struct LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR orig);
4039         public static native long CResult_ChannelInfoDecodeErrorZ_clone(long orig);
4040         // struct LDKCResult_RoutingFeesDecodeErrorZ CResult_RoutingFeesDecodeErrorZ_ok(struct LDKRoutingFees o);
4041         public static native long CResult_RoutingFeesDecodeErrorZ_ok(long o);
4042         // struct LDKCResult_RoutingFeesDecodeErrorZ CResult_RoutingFeesDecodeErrorZ_err(struct LDKDecodeError e);
4043         public static native long CResult_RoutingFeesDecodeErrorZ_err(long e);
4044         // bool CResult_RoutingFeesDecodeErrorZ_is_ok(const struct LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR o);
4045         public static native boolean CResult_RoutingFeesDecodeErrorZ_is_ok(long o);
4046         // void CResult_RoutingFeesDecodeErrorZ_free(struct LDKCResult_RoutingFeesDecodeErrorZ _res);
4047         public static native void CResult_RoutingFeesDecodeErrorZ_free(long _res);
4048         // uint64_t CResult_RoutingFeesDecodeErrorZ_clone_ptr(LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR arg);
4049         public static native long CResult_RoutingFeesDecodeErrorZ_clone_ptr(long arg);
4050         // struct LDKCResult_RoutingFeesDecodeErrorZ CResult_RoutingFeesDecodeErrorZ_clone(const struct LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR orig);
4051         public static native long CResult_RoutingFeesDecodeErrorZ_clone(long orig);
4052         // void CVec_SocketAddressZ_free(struct LDKCVec_SocketAddressZ _res);
4053         public static native void CVec_SocketAddressZ_free(long[] _res);
4054         // struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ CResult_NodeAnnouncementInfoDecodeErrorZ_ok(struct LDKNodeAnnouncementInfo o);
4055         public static native long CResult_NodeAnnouncementInfoDecodeErrorZ_ok(long o);
4056         // struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ CResult_NodeAnnouncementInfoDecodeErrorZ_err(struct LDKDecodeError e);
4057         public static native long CResult_NodeAnnouncementInfoDecodeErrorZ_err(long e);
4058         // bool CResult_NodeAnnouncementInfoDecodeErrorZ_is_ok(const struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR o);
4059         public static native boolean CResult_NodeAnnouncementInfoDecodeErrorZ_is_ok(long o);
4060         // void CResult_NodeAnnouncementInfoDecodeErrorZ_free(struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ _res);
4061         public static native void CResult_NodeAnnouncementInfoDecodeErrorZ_free(long _res);
4062         // uint64_t CResult_NodeAnnouncementInfoDecodeErrorZ_clone_ptr(LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR arg);
4063         public static native long CResult_NodeAnnouncementInfoDecodeErrorZ_clone_ptr(long arg);
4064         // struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ CResult_NodeAnnouncementInfoDecodeErrorZ_clone(const struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR orig);
4065         public static native long CResult_NodeAnnouncementInfoDecodeErrorZ_clone(long orig);
4066         // struct LDKCResult_NodeAliasDecodeErrorZ CResult_NodeAliasDecodeErrorZ_ok(struct LDKNodeAlias o);
4067         public static native long CResult_NodeAliasDecodeErrorZ_ok(long o);
4068         // struct LDKCResult_NodeAliasDecodeErrorZ CResult_NodeAliasDecodeErrorZ_err(struct LDKDecodeError e);
4069         public static native long CResult_NodeAliasDecodeErrorZ_err(long e);
4070         // bool CResult_NodeAliasDecodeErrorZ_is_ok(const struct LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR o);
4071         public static native boolean CResult_NodeAliasDecodeErrorZ_is_ok(long o);
4072         // void CResult_NodeAliasDecodeErrorZ_free(struct LDKCResult_NodeAliasDecodeErrorZ _res);
4073         public static native void CResult_NodeAliasDecodeErrorZ_free(long _res);
4074         // uint64_t CResult_NodeAliasDecodeErrorZ_clone_ptr(LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR arg);
4075         public static native long CResult_NodeAliasDecodeErrorZ_clone_ptr(long arg);
4076         // struct LDKCResult_NodeAliasDecodeErrorZ CResult_NodeAliasDecodeErrorZ_clone(const struct LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR orig);
4077         public static native long CResult_NodeAliasDecodeErrorZ_clone(long orig);
4078         // struct LDKCResult_NodeInfoDecodeErrorZ CResult_NodeInfoDecodeErrorZ_ok(struct LDKNodeInfo o);
4079         public static native long CResult_NodeInfoDecodeErrorZ_ok(long o);
4080         // struct LDKCResult_NodeInfoDecodeErrorZ CResult_NodeInfoDecodeErrorZ_err(struct LDKDecodeError e);
4081         public static native long CResult_NodeInfoDecodeErrorZ_err(long e);
4082         // bool CResult_NodeInfoDecodeErrorZ_is_ok(const struct LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR o);
4083         public static native boolean CResult_NodeInfoDecodeErrorZ_is_ok(long o);
4084         // void CResult_NodeInfoDecodeErrorZ_free(struct LDKCResult_NodeInfoDecodeErrorZ _res);
4085         public static native void CResult_NodeInfoDecodeErrorZ_free(long _res);
4086         // uint64_t CResult_NodeInfoDecodeErrorZ_clone_ptr(LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR arg);
4087         public static native long CResult_NodeInfoDecodeErrorZ_clone_ptr(long arg);
4088         // struct LDKCResult_NodeInfoDecodeErrorZ CResult_NodeInfoDecodeErrorZ_clone(const struct LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR orig);
4089         public static native long CResult_NodeInfoDecodeErrorZ_clone(long orig);
4090         // struct LDKCResult_NetworkGraphDecodeErrorZ CResult_NetworkGraphDecodeErrorZ_ok(struct LDKNetworkGraph o);
4091         public static native long CResult_NetworkGraphDecodeErrorZ_ok(long o);
4092         // struct LDKCResult_NetworkGraphDecodeErrorZ CResult_NetworkGraphDecodeErrorZ_err(struct LDKDecodeError e);
4093         public static native long CResult_NetworkGraphDecodeErrorZ_err(long e);
4094         // bool CResult_NetworkGraphDecodeErrorZ_is_ok(const struct LDKCResult_NetworkGraphDecodeErrorZ *NONNULL_PTR o);
4095         public static native boolean CResult_NetworkGraphDecodeErrorZ_is_ok(long o);
4096         // void CResult_NetworkGraphDecodeErrorZ_free(struct LDKCResult_NetworkGraphDecodeErrorZ _res);
4097         public static native void CResult_NetworkGraphDecodeErrorZ_free(long _res);
4098         // struct LDKCOption_CVec_SocketAddressZZ COption_CVec_SocketAddressZZ_some(struct LDKCVec_SocketAddressZ o);
4099         public static native long COption_CVec_SocketAddressZZ_some(long[] o);
4100         // struct LDKCOption_CVec_SocketAddressZZ COption_CVec_SocketAddressZZ_none(void);
4101         public static native long COption_CVec_SocketAddressZZ_none();
4102         // void COption_CVec_SocketAddressZZ_free(struct LDKCOption_CVec_SocketAddressZZ _res);
4103         public static native void COption_CVec_SocketAddressZZ_free(long _res);
4104         // uint64_t COption_CVec_SocketAddressZZ_clone_ptr(LDKCOption_CVec_SocketAddressZZ *NONNULL_PTR arg);
4105         public static native long COption_CVec_SocketAddressZZ_clone_ptr(long arg);
4106         // struct LDKCOption_CVec_SocketAddressZZ COption_CVec_SocketAddressZZ_clone(const struct LDKCOption_CVec_SocketAddressZZ *NONNULL_PTR orig);
4107         public static native long COption_CVec_SocketAddressZZ_clone(long orig);
4108         // struct LDKCResult_ChannelDerivationParametersDecodeErrorZ CResult_ChannelDerivationParametersDecodeErrorZ_ok(struct LDKChannelDerivationParameters o);
4109         public static native long CResult_ChannelDerivationParametersDecodeErrorZ_ok(long o);
4110         // struct LDKCResult_ChannelDerivationParametersDecodeErrorZ CResult_ChannelDerivationParametersDecodeErrorZ_err(struct LDKDecodeError e);
4111         public static native long CResult_ChannelDerivationParametersDecodeErrorZ_err(long e);
4112         // bool CResult_ChannelDerivationParametersDecodeErrorZ_is_ok(const struct LDKCResult_ChannelDerivationParametersDecodeErrorZ *NONNULL_PTR o);
4113         public static native boolean CResult_ChannelDerivationParametersDecodeErrorZ_is_ok(long o);
4114         // void CResult_ChannelDerivationParametersDecodeErrorZ_free(struct LDKCResult_ChannelDerivationParametersDecodeErrorZ _res);
4115         public static native void CResult_ChannelDerivationParametersDecodeErrorZ_free(long _res);
4116         // uint64_t CResult_ChannelDerivationParametersDecodeErrorZ_clone_ptr(LDKCResult_ChannelDerivationParametersDecodeErrorZ *NONNULL_PTR arg);
4117         public static native long CResult_ChannelDerivationParametersDecodeErrorZ_clone_ptr(long arg);
4118         // struct LDKCResult_ChannelDerivationParametersDecodeErrorZ CResult_ChannelDerivationParametersDecodeErrorZ_clone(const struct LDKCResult_ChannelDerivationParametersDecodeErrorZ *NONNULL_PTR orig);
4119         public static native long CResult_ChannelDerivationParametersDecodeErrorZ_clone(long orig);
4120         // struct LDKCResult_HTLCDescriptorDecodeErrorZ CResult_HTLCDescriptorDecodeErrorZ_ok(struct LDKHTLCDescriptor o);
4121         public static native long CResult_HTLCDescriptorDecodeErrorZ_ok(long o);
4122         // struct LDKCResult_HTLCDescriptorDecodeErrorZ CResult_HTLCDescriptorDecodeErrorZ_err(struct LDKDecodeError e);
4123         public static native long CResult_HTLCDescriptorDecodeErrorZ_err(long e);
4124         // bool CResult_HTLCDescriptorDecodeErrorZ_is_ok(const struct LDKCResult_HTLCDescriptorDecodeErrorZ *NONNULL_PTR o);
4125         public static native boolean CResult_HTLCDescriptorDecodeErrorZ_is_ok(long o);
4126         // void CResult_HTLCDescriptorDecodeErrorZ_free(struct LDKCResult_HTLCDescriptorDecodeErrorZ _res);
4127         public static native void CResult_HTLCDescriptorDecodeErrorZ_free(long _res);
4128         // uint64_t CResult_HTLCDescriptorDecodeErrorZ_clone_ptr(LDKCResult_HTLCDescriptorDecodeErrorZ *NONNULL_PTR arg);
4129         public static native long CResult_HTLCDescriptorDecodeErrorZ_clone_ptr(long arg);
4130         // struct LDKCResult_HTLCDescriptorDecodeErrorZ CResult_HTLCDescriptorDecodeErrorZ_clone(const struct LDKCResult_HTLCDescriptorDecodeErrorZ *NONNULL_PTR orig);
4131         public static native long CResult_HTLCDescriptorDecodeErrorZ_clone(long orig);
4132         // void CVec_HTLCOutputInCommitmentZ_free(struct LDKCVec_HTLCOutputInCommitmentZ _res);
4133         public static native void CVec_HTLCOutputInCommitmentZ_free(long[] _res);
4134         // void CVec_HTLCDescriptorZ_free(struct LDKCVec_HTLCDescriptorZ _res);
4135         public static native void CVec_HTLCDescriptorZ_free(long[] _res);
4136         // void CVec_UtxoZ_free(struct LDKCVec_UtxoZ _res);
4137         public static native void CVec_UtxoZ_free(long[] _res);
4138         // struct LDKCOption_TxOutZ COption_TxOutZ_some(struct LDKTxOut o);
4139         public static native long COption_TxOutZ_some(long o);
4140         // struct LDKCOption_TxOutZ COption_TxOutZ_none(void);
4141         public static native long COption_TxOutZ_none();
4142         // void COption_TxOutZ_free(struct LDKCOption_TxOutZ _res);
4143         public static native void COption_TxOutZ_free(long _res);
4144         // uint64_t COption_TxOutZ_clone_ptr(LDKCOption_TxOutZ *NONNULL_PTR arg);
4145         public static native long COption_TxOutZ_clone_ptr(long arg);
4146         // struct LDKCOption_TxOutZ COption_TxOutZ_clone(const struct LDKCOption_TxOutZ *NONNULL_PTR orig);
4147         public static native long COption_TxOutZ_clone(long orig);
4148         // void CVec_InputZ_free(struct LDKCVec_InputZ _res);
4149         public static native void CVec_InputZ_free(long[] _res);
4150         // struct LDKCResult_CoinSelectionNoneZ CResult_CoinSelectionNoneZ_ok(struct LDKCoinSelection o);
4151         public static native long CResult_CoinSelectionNoneZ_ok(long o);
4152         // struct LDKCResult_CoinSelectionNoneZ CResult_CoinSelectionNoneZ_err(void);
4153         public static native long CResult_CoinSelectionNoneZ_err();
4154         // bool CResult_CoinSelectionNoneZ_is_ok(const struct LDKCResult_CoinSelectionNoneZ *NONNULL_PTR o);
4155         public static native boolean CResult_CoinSelectionNoneZ_is_ok(long o);
4156         // void CResult_CoinSelectionNoneZ_free(struct LDKCResult_CoinSelectionNoneZ _res);
4157         public static native void CResult_CoinSelectionNoneZ_free(long _res);
4158         // uint64_t CResult_CoinSelectionNoneZ_clone_ptr(LDKCResult_CoinSelectionNoneZ *NONNULL_PTR arg);
4159         public static native long CResult_CoinSelectionNoneZ_clone_ptr(long arg);
4160         // struct LDKCResult_CoinSelectionNoneZ CResult_CoinSelectionNoneZ_clone(const struct LDKCResult_CoinSelectionNoneZ *NONNULL_PTR orig);
4161         public static native long CResult_CoinSelectionNoneZ_clone(long orig);
4162         // struct LDKCResult_CVec_UtxoZNoneZ CResult_CVec_UtxoZNoneZ_ok(struct LDKCVec_UtxoZ o);
4163         public static native long CResult_CVec_UtxoZNoneZ_ok(long[] o);
4164         // struct LDKCResult_CVec_UtxoZNoneZ CResult_CVec_UtxoZNoneZ_err(void);
4165         public static native long CResult_CVec_UtxoZNoneZ_err();
4166         // bool CResult_CVec_UtxoZNoneZ_is_ok(const struct LDKCResult_CVec_UtxoZNoneZ *NONNULL_PTR o);
4167         public static native boolean CResult_CVec_UtxoZNoneZ_is_ok(long o);
4168         // void CResult_CVec_UtxoZNoneZ_free(struct LDKCResult_CVec_UtxoZNoneZ _res);
4169         public static native void CResult_CVec_UtxoZNoneZ_free(long _res);
4170         // uint64_t CResult_CVec_UtxoZNoneZ_clone_ptr(LDKCResult_CVec_UtxoZNoneZ *NONNULL_PTR arg);
4171         public static native long CResult_CVec_UtxoZNoneZ_clone_ptr(long arg);
4172         // struct LDKCResult_CVec_UtxoZNoneZ CResult_CVec_UtxoZNoneZ_clone(const struct LDKCResult_CVec_UtxoZNoneZ *NONNULL_PTR orig);
4173         public static native long CResult_CVec_UtxoZNoneZ_clone(long orig);
4174         // uint64_t C2Tuple_u64u16Z_clone_ptr(LDKC2Tuple_u64u16Z *NONNULL_PTR arg);
4175         public static native long C2Tuple_u64u16Z_clone_ptr(long arg);
4176         // struct LDKC2Tuple_u64u16Z C2Tuple_u64u16Z_clone(const struct LDKC2Tuple_u64u16Z *NONNULL_PTR orig);
4177         public static native long C2Tuple_u64u16Z_clone(long orig);
4178         // struct LDKC2Tuple_u64u16Z C2Tuple_u64u16Z_new(uint64_t a, uint16_t b);
4179         public static native long C2Tuple_u64u16Z_new(long a, short b);
4180         // void C2Tuple_u64u16Z_free(struct LDKC2Tuple_u64u16Z _res);
4181         public static native void C2Tuple_u64u16Z_free(long _res);
4182         // struct LDKCOption_C2Tuple_u64u16ZZ COption_C2Tuple_u64u16ZZ_some(struct LDKC2Tuple_u64u16Z o);
4183         public static native long COption_C2Tuple_u64u16ZZ_some(long o);
4184         // struct LDKCOption_C2Tuple_u64u16ZZ COption_C2Tuple_u64u16ZZ_none(void);
4185         public static native long COption_C2Tuple_u64u16ZZ_none();
4186         // void COption_C2Tuple_u64u16ZZ_free(struct LDKCOption_C2Tuple_u64u16ZZ _res);
4187         public static native void COption_C2Tuple_u64u16ZZ_free(long _res);
4188         // uint64_t COption_C2Tuple_u64u16ZZ_clone_ptr(LDKCOption_C2Tuple_u64u16ZZ *NONNULL_PTR arg);
4189         public static native long COption_C2Tuple_u64u16ZZ_clone_ptr(long arg);
4190         // struct LDKCOption_C2Tuple_u64u16ZZ COption_C2Tuple_u64u16ZZ_clone(const struct LDKCOption_C2Tuple_u64u16ZZ *NONNULL_PTR orig);
4191         public static native long COption_C2Tuple_u64u16ZZ_clone(long orig);
4192         // struct LDKCOption_ChannelShutdownStateZ COption_ChannelShutdownStateZ_some(enum LDKChannelShutdownState o);
4193         public static native long COption_ChannelShutdownStateZ_some(ChannelShutdownState o);
4194         // struct LDKCOption_ChannelShutdownStateZ COption_ChannelShutdownStateZ_none(void);
4195         public static native long COption_ChannelShutdownStateZ_none();
4196         // void COption_ChannelShutdownStateZ_free(struct LDKCOption_ChannelShutdownStateZ _res);
4197         public static native void COption_ChannelShutdownStateZ_free(long _res);
4198         // uint64_t COption_ChannelShutdownStateZ_clone_ptr(LDKCOption_ChannelShutdownStateZ *NONNULL_PTR arg);
4199         public static native long COption_ChannelShutdownStateZ_clone_ptr(long arg);
4200         // struct LDKCOption_ChannelShutdownStateZ COption_ChannelShutdownStateZ_clone(const struct LDKCOption_ChannelShutdownStateZ *NONNULL_PTR orig);
4201         public static native long COption_ChannelShutdownStateZ_clone(long orig);
4202         // struct LDKCResult_ThirtyTwoBytesAPIErrorZ CResult_ThirtyTwoBytesAPIErrorZ_ok(struct LDKThirtyTwoBytes o);
4203         public static native long CResult_ThirtyTwoBytesAPIErrorZ_ok(byte[] o);
4204         // struct LDKCResult_ThirtyTwoBytesAPIErrorZ CResult_ThirtyTwoBytesAPIErrorZ_err(struct LDKAPIError e);
4205         public static native long CResult_ThirtyTwoBytesAPIErrorZ_err(long e);
4206         // bool CResult_ThirtyTwoBytesAPIErrorZ_is_ok(const struct LDKCResult_ThirtyTwoBytesAPIErrorZ *NONNULL_PTR o);
4207         public static native boolean CResult_ThirtyTwoBytesAPIErrorZ_is_ok(long o);
4208         // void CResult_ThirtyTwoBytesAPIErrorZ_free(struct LDKCResult_ThirtyTwoBytesAPIErrorZ _res);
4209         public static native void CResult_ThirtyTwoBytesAPIErrorZ_free(long _res);
4210         // uint64_t CResult_ThirtyTwoBytesAPIErrorZ_clone_ptr(LDKCResult_ThirtyTwoBytesAPIErrorZ *NONNULL_PTR arg);
4211         public static native long CResult_ThirtyTwoBytesAPIErrorZ_clone_ptr(long arg);
4212         // struct LDKCResult_ThirtyTwoBytesAPIErrorZ CResult_ThirtyTwoBytesAPIErrorZ_clone(const struct LDKCResult_ThirtyTwoBytesAPIErrorZ *NONNULL_PTR orig);
4213         public static native long CResult_ThirtyTwoBytesAPIErrorZ_clone(long orig);
4214         // void CVec_RecentPaymentDetailsZ_free(struct LDKCVec_RecentPaymentDetailsZ _res);
4215         public static native void CVec_RecentPaymentDetailsZ_free(long[] _res);
4216         // struct LDKCResult_NonePaymentSendFailureZ CResult_NonePaymentSendFailureZ_ok(void);
4217         public static native long CResult_NonePaymentSendFailureZ_ok();
4218         // struct LDKCResult_NonePaymentSendFailureZ CResult_NonePaymentSendFailureZ_err(struct LDKPaymentSendFailure e);
4219         public static native long CResult_NonePaymentSendFailureZ_err(long e);
4220         // bool CResult_NonePaymentSendFailureZ_is_ok(const struct LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR o);
4221         public static native boolean CResult_NonePaymentSendFailureZ_is_ok(long o);
4222         // void CResult_NonePaymentSendFailureZ_free(struct LDKCResult_NonePaymentSendFailureZ _res);
4223         public static native void CResult_NonePaymentSendFailureZ_free(long _res);
4224         // uint64_t CResult_NonePaymentSendFailureZ_clone_ptr(LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR arg);
4225         public static native long CResult_NonePaymentSendFailureZ_clone_ptr(long arg);
4226         // struct LDKCResult_NonePaymentSendFailureZ CResult_NonePaymentSendFailureZ_clone(const struct LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR orig);
4227         public static native long CResult_NonePaymentSendFailureZ_clone(long orig);
4228         // struct LDKCResult_NoneRetryableSendFailureZ CResult_NoneRetryableSendFailureZ_ok(void);
4229         public static native long CResult_NoneRetryableSendFailureZ_ok();
4230         // struct LDKCResult_NoneRetryableSendFailureZ CResult_NoneRetryableSendFailureZ_err(enum LDKRetryableSendFailure e);
4231         public static native long CResult_NoneRetryableSendFailureZ_err(RetryableSendFailure e);
4232         // bool CResult_NoneRetryableSendFailureZ_is_ok(const struct LDKCResult_NoneRetryableSendFailureZ *NONNULL_PTR o);
4233         public static native boolean CResult_NoneRetryableSendFailureZ_is_ok(long o);
4234         // void CResult_NoneRetryableSendFailureZ_free(struct LDKCResult_NoneRetryableSendFailureZ _res);
4235         public static native void CResult_NoneRetryableSendFailureZ_free(long _res);
4236         // uint64_t CResult_NoneRetryableSendFailureZ_clone_ptr(LDKCResult_NoneRetryableSendFailureZ *NONNULL_PTR arg);
4237         public static native long CResult_NoneRetryableSendFailureZ_clone_ptr(long arg);
4238         // struct LDKCResult_NoneRetryableSendFailureZ CResult_NoneRetryableSendFailureZ_clone(const struct LDKCResult_NoneRetryableSendFailureZ *NONNULL_PTR orig);
4239         public static native long CResult_NoneRetryableSendFailureZ_clone(long orig);
4240         // struct LDKCResult_ThirtyTwoBytesPaymentSendFailureZ CResult_ThirtyTwoBytesPaymentSendFailureZ_ok(struct LDKThirtyTwoBytes o);
4241         public static native long CResult_ThirtyTwoBytesPaymentSendFailureZ_ok(byte[] o);
4242         // struct LDKCResult_ThirtyTwoBytesPaymentSendFailureZ CResult_ThirtyTwoBytesPaymentSendFailureZ_err(struct LDKPaymentSendFailure e);
4243         public static native long CResult_ThirtyTwoBytesPaymentSendFailureZ_err(long e);
4244         // bool CResult_ThirtyTwoBytesPaymentSendFailureZ_is_ok(const struct LDKCResult_ThirtyTwoBytesPaymentSendFailureZ *NONNULL_PTR o);
4245         public static native boolean CResult_ThirtyTwoBytesPaymentSendFailureZ_is_ok(long o);
4246         // void CResult_ThirtyTwoBytesPaymentSendFailureZ_free(struct LDKCResult_ThirtyTwoBytesPaymentSendFailureZ _res);
4247         public static native void CResult_ThirtyTwoBytesPaymentSendFailureZ_free(long _res);
4248         // uint64_t CResult_ThirtyTwoBytesPaymentSendFailureZ_clone_ptr(LDKCResult_ThirtyTwoBytesPaymentSendFailureZ *NONNULL_PTR arg);
4249         public static native long CResult_ThirtyTwoBytesPaymentSendFailureZ_clone_ptr(long arg);
4250         // struct LDKCResult_ThirtyTwoBytesPaymentSendFailureZ CResult_ThirtyTwoBytesPaymentSendFailureZ_clone(const struct LDKCResult_ThirtyTwoBytesPaymentSendFailureZ *NONNULL_PTR orig);
4251         public static native long CResult_ThirtyTwoBytesPaymentSendFailureZ_clone(long orig);
4252         // struct LDKCResult_ThirtyTwoBytesRetryableSendFailureZ CResult_ThirtyTwoBytesRetryableSendFailureZ_ok(struct LDKThirtyTwoBytes o);
4253         public static native long CResult_ThirtyTwoBytesRetryableSendFailureZ_ok(byte[] o);
4254         // struct LDKCResult_ThirtyTwoBytesRetryableSendFailureZ CResult_ThirtyTwoBytesRetryableSendFailureZ_err(enum LDKRetryableSendFailure e);
4255         public static native long CResult_ThirtyTwoBytesRetryableSendFailureZ_err(RetryableSendFailure e);
4256         // bool CResult_ThirtyTwoBytesRetryableSendFailureZ_is_ok(const struct LDKCResult_ThirtyTwoBytesRetryableSendFailureZ *NONNULL_PTR o);
4257         public static native boolean CResult_ThirtyTwoBytesRetryableSendFailureZ_is_ok(long o);
4258         // void CResult_ThirtyTwoBytesRetryableSendFailureZ_free(struct LDKCResult_ThirtyTwoBytesRetryableSendFailureZ _res);
4259         public static native void CResult_ThirtyTwoBytesRetryableSendFailureZ_free(long _res);
4260         // uint64_t CResult_ThirtyTwoBytesRetryableSendFailureZ_clone_ptr(LDKCResult_ThirtyTwoBytesRetryableSendFailureZ *NONNULL_PTR arg);
4261         public static native long CResult_ThirtyTwoBytesRetryableSendFailureZ_clone_ptr(long arg);
4262         // struct LDKCResult_ThirtyTwoBytesRetryableSendFailureZ CResult_ThirtyTwoBytesRetryableSendFailureZ_clone(const struct LDKCResult_ThirtyTwoBytesRetryableSendFailureZ *NONNULL_PTR orig);
4263         public static native long CResult_ThirtyTwoBytesRetryableSendFailureZ_clone(long orig);
4264         // uint64_t C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_clone_ptr(LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ *NONNULL_PTR arg);
4265         public static native long C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_clone_ptr(long arg);
4266         // struct LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_clone(const struct LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ *NONNULL_PTR orig);
4267         public static native long C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_clone(long orig);
4268         // struct LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_new(struct LDKThirtyTwoBytes a, struct LDKThirtyTwoBytes b);
4269         public static native long C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_new(byte[] a, byte[] b);
4270         // void C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_free(struct LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ _res);
4271         public static native void C2Tuple_ThirtyTwoBytesThirtyTwoBytesZ_free(long _res);
4272         // struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_ok(struct LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ o);
4273         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_ok(long o);
4274         // struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_err(struct LDKPaymentSendFailure e);
4275         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_err(long e);
4276         // bool CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_is_ok(const struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ *NONNULL_PTR o);
4277         public static native boolean CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_is_ok(long o);
4278         // void CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_free(struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ _res);
4279         public static native void CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_free(long _res);
4280         // uint64_t CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_clone_ptr(LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ *NONNULL_PTR arg);
4281         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_clone_ptr(long arg);
4282         // struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_clone(const struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ *NONNULL_PTR orig);
4283         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ_clone(long orig);
4284         // void CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZ_free(struct LDKCVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZ _res);
4285         public static native void CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZ_free(long[] _res);
4286         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_ok(struct LDKCVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZ o);
4287         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_ok(long[] o);
4288         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_err(struct LDKProbeSendFailure e);
4289         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_err(long e);
4290         // bool CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_is_ok(const struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ *NONNULL_PTR o);
4291         public static native boolean CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_is_ok(long o);
4292         // void CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_free(struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ _res);
4293         public static native void CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_free(long _res);
4294         // uint64_t CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_clone_ptr(LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ *NONNULL_PTR arg);
4295         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_clone_ptr(long arg);
4296         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_clone(const struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ *NONNULL_PTR orig);
4297         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ_clone(long orig);
4298         // uint64_t C2Tuple_ThirtyTwoBytesPublicKeyZ_clone_ptr(LDKC2Tuple_ThirtyTwoBytesPublicKeyZ *NONNULL_PTR arg);
4299         public static native long C2Tuple_ThirtyTwoBytesPublicKeyZ_clone_ptr(long arg);
4300         // struct LDKC2Tuple_ThirtyTwoBytesPublicKeyZ C2Tuple_ThirtyTwoBytesPublicKeyZ_clone(const struct LDKC2Tuple_ThirtyTwoBytesPublicKeyZ *NONNULL_PTR orig);
4301         public static native long C2Tuple_ThirtyTwoBytesPublicKeyZ_clone(long orig);
4302         // struct LDKC2Tuple_ThirtyTwoBytesPublicKeyZ C2Tuple_ThirtyTwoBytesPublicKeyZ_new(struct LDKThirtyTwoBytes a, struct LDKPublicKey b);
4303         public static native long C2Tuple_ThirtyTwoBytesPublicKeyZ_new(byte[] a, byte[] b);
4304         // void C2Tuple_ThirtyTwoBytesPublicKeyZ_free(struct LDKC2Tuple_ThirtyTwoBytesPublicKeyZ _res);
4305         public static native void C2Tuple_ThirtyTwoBytesPublicKeyZ_free(long _res);
4306         // void CVec_C2Tuple_ThirtyTwoBytesPublicKeyZZ_free(struct LDKCVec_C2Tuple_ThirtyTwoBytesPublicKeyZZ _res);
4307         public static native void CVec_C2Tuple_ThirtyTwoBytesPublicKeyZZ_free(long[] _res);
4308         // struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_ok(struct LDKC2Tuple_ThirtyTwoBytesThirtyTwoBytesZ o);
4309         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_ok(long o);
4310         // struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_err(void);
4311         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_err();
4312         // bool CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_is_ok(const struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ *NONNULL_PTR o);
4313         public static native boolean CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_is_ok(long o);
4314         // void CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_free(struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ _res);
4315         public static native void CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_free(long _res);
4316         // uint64_t CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_clone_ptr(LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ *NONNULL_PTR arg);
4317         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_clone_ptr(long arg);
4318         // struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_clone(const struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ *NONNULL_PTR orig);
4319         public static native long CResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ_clone(long orig);
4320         // struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ CResult_CounterpartyForwardingInfoDecodeErrorZ_ok(struct LDKCounterpartyForwardingInfo o);
4321         public static native long CResult_CounterpartyForwardingInfoDecodeErrorZ_ok(long o);
4322         // struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ CResult_CounterpartyForwardingInfoDecodeErrorZ_err(struct LDKDecodeError e);
4323         public static native long CResult_CounterpartyForwardingInfoDecodeErrorZ_err(long e);
4324         // bool CResult_CounterpartyForwardingInfoDecodeErrorZ_is_ok(const struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR o);
4325         public static native boolean CResult_CounterpartyForwardingInfoDecodeErrorZ_is_ok(long o);
4326         // void CResult_CounterpartyForwardingInfoDecodeErrorZ_free(struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ _res);
4327         public static native void CResult_CounterpartyForwardingInfoDecodeErrorZ_free(long _res);
4328         // uint64_t CResult_CounterpartyForwardingInfoDecodeErrorZ_clone_ptr(LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR arg);
4329         public static native long CResult_CounterpartyForwardingInfoDecodeErrorZ_clone_ptr(long arg);
4330         // struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ CResult_CounterpartyForwardingInfoDecodeErrorZ_clone(const struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR orig);
4331         public static native long CResult_CounterpartyForwardingInfoDecodeErrorZ_clone(long orig);
4332         // struct LDKCResult_ChannelCounterpartyDecodeErrorZ CResult_ChannelCounterpartyDecodeErrorZ_ok(struct LDKChannelCounterparty o);
4333         public static native long CResult_ChannelCounterpartyDecodeErrorZ_ok(long o);
4334         // struct LDKCResult_ChannelCounterpartyDecodeErrorZ CResult_ChannelCounterpartyDecodeErrorZ_err(struct LDKDecodeError e);
4335         public static native long CResult_ChannelCounterpartyDecodeErrorZ_err(long e);
4336         // bool CResult_ChannelCounterpartyDecodeErrorZ_is_ok(const struct LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR o);
4337         public static native boolean CResult_ChannelCounterpartyDecodeErrorZ_is_ok(long o);
4338         // void CResult_ChannelCounterpartyDecodeErrorZ_free(struct LDKCResult_ChannelCounterpartyDecodeErrorZ _res);
4339         public static native void CResult_ChannelCounterpartyDecodeErrorZ_free(long _res);
4340         // uint64_t CResult_ChannelCounterpartyDecodeErrorZ_clone_ptr(LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR arg);
4341         public static native long CResult_ChannelCounterpartyDecodeErrorZ_clone_ptr(long arg);
4342         // struct LDKCResult_ChannelCounterpartyDecodeErrorZ CResult_ChannelCounterpartyDecodeErrorZ_clone(const struct LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR orig);
4343         public static native long CResult_ChannelCounterpartyDecodeErrorZ_clone(long orig);
4344         // struct LDKCResult_ChannelDetailsDecodeErrorZ CResult_ChannelDetailsDecodeErrorZ_ok(struct LDKChannelDetails o);
4345         public static native long CResult_ChannelDetailsDecodeErrorZ_ok(long o);
4346         // struct LDKCResult_ChannelDetailsDecodeErrorZ CResult_ChannelDetailsDecodeErrorZ_err(struct LDKDecodeError e);
4347         public static native long CResult_ChannelDetailsDecodeErrorZ_err(long e);
4348         // bool CResult_ChannelDetailsDecodeErrorZ_is_ok(const struct LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR o);
4349         public static native boolean CResult_ChannelDetailsDecodeErrorZ_is_ok(long o);
4350         // void CResult_ChannelDetailsDecodeErrorZ_free(struct LDKCResult_ChannelDetailsDecodeErrorZ _res);
4351         public static native void CResult_ChannelDetailsDecodeErrorZ_free(long _res);
4352         // uint64_t CResult_ChannelDetailsDecodeErrorZ_clone_ptr(LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR arg);
4353         public static native long CResult_ChannelDetailsDecodeErrorZ_clone_ptr(long arg);
4354         // struct LDKCResult_ChannelDetailsDecodeErrorZ CResult_ChannelDetailsDecodeErrorZ_clone(const struct LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR orig);
4355         public static native long CResult_ChannelDetailsDecodeErrorZ_clone(long orig);
4356         // struct LDKCResult_PhantomRouteHintsDecodeErrorZ CResult_PhantomRouteHintsDecodeErrorZ_ok(struct LDKPhantomRouteHints o);
4357         public static native long CResult_PhantomRouteHintsDecodeErrorZ_ok(long o);
4358         // struct LDKCResult_PhantomRouteHintsDecodeErrorZ CResult_PhantomRouteHintsDecodeErrorZ_err(struct LDKDecodeError e);
4359         public static native long CResult_PhantomRouteHintsDecodeErrorZ_err(long e);
4360         // bool CResult_PhantomRouteHintsDecodeErrorZ_is_ok(const struct LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR o);
4361         public static native boolean CResult_PhantomRouteHintsDecodeErrorZ_is_ok(long o);
4362         // void CResult_PhantomRouteHintsDecodeErrorZ_free(struct LDKCResult_PhantomRouteHintsDecodeErrorZ _res);
4363         public static native void CResult_PhantomRouteHintsDecodeErrorZ_free(long _res);
4364         // uint64_t CResult_PhantomRouteHintsDecodeErrorZ_clone_ptr(LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR arg);
4365         public static native long CResult_PhantomRouteHintsDecodeErrorZ_clone_ptr(long arg);
4366         // struct LDKCResult_PhantomRouteHintsDecodeErrorZ CResult_PhantomRouteHintsDecodeErrorZ_clone(const struct LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR orig);
4367         public static native long CResult_PhantomRouteHintsDecodeErrorZ_clone(long orig);
4368         // struct LDKCResult_ChannelShutdownStateDecodeErrorZ CResult_ChannelShutdownStateDecodeErrorZ_ok(enum LDKChannelShutdownState o);
4369         public static native long CResult_ChannelShutdownStateDecodeErrorZ_ok(ChannelShutdownState o);
4370         // struct LDKCResult_ChannelShutdownStateDecodeErrorZ CResult_ChannelShutdownStateDecodeErrorZ_err(struct LDKDecodeError e);
4371         public static native long CResult_ChannelShutdownStateDecodeErrorZ_err(long e);
4372         // bool CResult_ChannelShutdownStateDecodeErrorZ_is_ok(const struct LDKCResult_ChannelShutdownStateDecodeErrorZ *NONNULL_PTR o);
4373         public static native boolean CResult_ChannelShutdownStateDecodeErrorZ_is_ok(long o);
4374         // void CResult_ChannelShutdownStateDecodeErrorZ_free(struct LDKCResult_ChannelShutdownStateDecodeErrorZ _res);
4375         public static native void CResult_ChannelShutdownStateDecodeErrorZ_free(long _res);
4376         // uint64_t CResult_ChannelShutdownStateDecodeErrorZ_clone_ptr(LDKCResult_ChannelShutdownStateDecodeErrorZ *NONNULL_PTR arg);
4377         public static native long CResult_ChannelShutdownStateDecodeErrorZ_clone_ptr(long arg);
4378         // struct LDKCResult_ChannelShutdownStateDecodeErrorZ CResult_ChannelShutdownStateDecodeErrorZ_clone(const struct LDKCResult_ChannelShutdownStateDecodeErrorZ *NONNULL_PTR orig);
4379         public static native long CResult_ChannelShutdownStateDecodeErrorZ_clone(long orig);
4380         // void CVec_ChannelMonitorZ_free(struct LDKCVec_ChannelMonitorZ _res);
4381         public static native void CVec_ChannelMonitorZ_free(long[] _res);
4382         // struct LDKC2Tuple_ThirtyTwoBytesChannelManagerZ C2Tuple_ThirtyTwoBytesChannelManagerZ_new(struct LDKThirtyTwoBytes a, struct LDKChannelManager b);
4383         public static native long C2Tuple_ThirtyTwoBytesChannelManagerZ_new(byte[] a, long b);
4384         // void C2Tuple_ThirtyTwoBytesChannelManagerZ_free(struct LDKC2Tuple_ThirtyTwoBytesChannelManagerZ _res);
4385         public static native void C2Tuple_ThirtyTwoBytesChannelManagerZ_free(long _res);
4386         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_ok(struct LDKC2Tuple_ThirtyTwoBytesChannelManagerZ o);
4387         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_ok(long o);
4388         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_err(struct LDKDecodeError e);
4389         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_err(long e);
4390         // bool CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_is_ok(const struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ *NONNULL_PTR o);
4391         public static native boolean CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_is_ok(long o);
4392         // void CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_free(struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ _res);
4393         public static native void CResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ_free(long _res);
4394         // struct LDKCResult_MaxDustHTLCExposureDecodeErrorZ CResult_MaxDustHTLCExposureDecodeErrorZ_ok(struct LDKMaxDustHTLCExposure o);
4395         public static native long CResult_MaxDustHTLCExposureDecodeErrorZ_ok(long o);
4396         // struct LDKCResult_MaxDustHTLCExposureDecodeErrorZ CResult_MaxDustHTLCExposureDecodeErrorZ_err(struct LDKDecodeError e);
4397         public static native long CResult_MaxDustHTLCExposureDecodeErrorZ_err(long e);
4398         // bool CResult_MaxDustHTLCExposureDecodeErrorZ_is_ok(const struct LDKCResult_MaxDustHTLCExposureDecodeErrorZ *NONNULL_PTR o);
4399         public static native boolean CResult_MaxDustHTLCExposureDecodeErrorZ_is_ok(long o);
4400         // void CResult_MaxDustHTLCExposureDecodeErrorZ_free(struct LDKCResult_MaxDustHTLCExposureDecodeErrorZ _res);
4401         public static native void CResult_MaxDustHTLCExposureDecodeErrorZ_free(long _res);
4402         // uint64_t CResult_MaxDustHTLCExposureDecodeErrorZ_clone_ptr(LDKCResult_MaxDustHTLCExposureDecodeErrorZ *NONNULL_PTR arg);
4403         public static native long CResult_MaxDustHTLCExposureDecodeErrorZ_clone_ptr(long arg);
4404         // struct LDKCResult_MaxDustHTLCExposureDecodeErrorZ CResult_MaxDustHTLCExposureDecodeErrorZ_clone(const struct LDKCResult_MaxDustHTLCExposureDecodeErrorZ *NONNULL_PTR orig);
4405         public static native long CResult_MaxDustHTLCExposureDecodeErrorZ_clone(long orig);
4406         // struct LDKCResult_ChannelConfigDecodeErrorZ CResult_ChannelConfigDecodeErrorZ_ok(struct LDKChannelConfig o);
4407         public static native long CResult_ChannelConfigDecodeErrorZ_ok(long o);
4408         // struct LDKCResult_ChannelConfigDecodeErrorZ CResult_ChannelConfigDecodeErrorZ_err(struct LDKDecodeError e);
4409         public static native long CResult_ChannelConfigDecodeErrorZ_err(long e);
4410         // bool CResult_ChannelConfigDecodeErrorZ_is_ok(const struct LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR o);
4411         public static native boolean CResult_ChannelConfigDecodeErrorZ_is_ok(long o);
4412         // void CResult_ChannelConfigDecodeErrorZ_free(struct LDKCResult_ChannelConfigDecodeErrorZ _res);
4413         public static native void CResult_ChannelConfigDecodeErrorZ_free(long _res);
4414         // uint64_t CResult_ChannelConfigDecodeErrorZ_clone_ptr(LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR arg);
4415         public static native long CResult_ChannelConfigDecodeErrorZ_clone_ptr(long arg);
4416         // struct LDKCResult_ChannelConfigDecodeErrorZ CResult_ChannelConfigDecodeErrorZ_clone(const struct LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR orig);
4417         public static native long CResult_ChannelConfigDecodeErrorZ_clone(long orig);
4418         // struct LDKCOption_MaxDustHTLCExposureZ COption_MaxDustHTLCExposureZ_some(struct LDKMaxDustHTLCExposure o);
4419         public static native long COption_MaxDustHTLCExposureZ_some(long o);
4420         // struct LDKCOption_MaxDustHTLCExposureZ COption_MaxDustHTLCExposureZ_none(void);
4421         public static native long COption_MaxDustHTLCExposureZ_none();
4422         // void COption_MaxDustHTLCExposureZ_free(struct LDKCOption_MaxDustHTLCExposureZ _res);
4423         public static native void COption_MaxDustHTLCExposureZ_free(long _res);
4424         // uint64_t COption_MaxDustHTLCExposureZ_clone_ptr(LDKCOption_MaxDustHTLCExposureZ *NONNULL_PTR arg);
4425         public static native long COption_MaxDustHTLCExposureZ_clone_ptr(long arg);
4426         // struct LDKCOption_MaxDustHTLCExposureZ COption_MaxDustHTLCExposureZ_clone(const struct LDKCOption_MaxDustHTLCExposureZ *NONNULL_PTR orig);
4427         public static native long COption_MaxDustHTLCExposureZ_clone(long orig);
4428         // struct LDKCOption_APIErrorZ COption_APIErrorZ_some(struct LDKAPIError o);
4429         public static native long COption_APIErrorZ_some(long o);
4430         // struct LDKCOption_APIErrorZ COption_APIErrorZ_none(void);
4431         public static native long COption_APIErrorZ_none();
4432         // void COption_APIErrorZ_free(struct LDKCOption_APIErrorZ _res);
4433         public static native void COption_APIErrorZ_free(long _res);
4434         // uint64_t COption_APIErrorZ_clone_ptr(LDKCOption_APIErrorZ *NONNULL_PTR arg);
4435         public static native long COption_APIErrorZ_clone_ptr(long arg);
4436         // struct LDKCOption_APIErrorZ COption_APIErrorZ_clone(const struct LDKCOption_APIErrorZ *NONNULL_PTR orig);
4437         public static native long COption_APIErrorZ_clone(long orig);
4438         // struct LDKCResult_COption_APIErrorZDecodeErrorZ CResult_COption_APIErrorZDecodeErrorZ_ok(struct LDKCOption_APIErrorZ o);
4439         public static native long CResult_COption_APIErrorZDecodeErrorZ_ok(long o);
4440         // struct LDKCResult_COption_APIErrorZDecodeErrorZ CResult_COption_APIErrorZDecodeErrorZ_err(struct LDKDecodeError e);
4441         public static native long CResult_COption_APIErrorZDecodeErrorZ_err(long e);
4442         // bool CResult_COption_APIErrorZDecodeErrorZ_is_ok(const struct LDKCResult_COption_APIErrorZDecodeErrorZ *NONNULL_PTR o);
4443         public static native boolean CResult_COption_APIErrorZDecodeErrorZ_is_ok(long o);
4444         // void CResult_COption_APIErrorZDecodeErrorZ_free(struct LDKCResult_COption_APIErrorZDecodeErrorZ _res);
4445         public static native void CResult_COption_APIErrorZDecodeErrorZ_free(long _res);
4446         // uint64_t CResult_COption_APIErrorZDecodeErrorZ_clone_ptr(LDKCResult_COption_APIErrorZDecodeErrorZ *NONNULL_PTR arg);
4447         public static native long CResult_COption_APIErrorZDecodeErrorZ_clone_ptr(long arg);
4448         // struct LDKCResult_COption_APIErrorZDecodeErrorZ CResult_COption_APIErrorZDecodeErrorZ_clone(const struct LDKCResult_COption_APIErrorZDecodeErrorZ *NONNULL_PTR orig);
4449         public static native long CResult_COption_APIErrorZDecodeErrorZ_clone(long orig);
4450         // struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ CResult_ChannelMonitorUpdateDecodeErrorZ_ok(struct LDKChannelMonitorUpdate o);
4451         public static native long CResult_ChannelMonitorUpdateDecodeErrorZ_ok(long o);
4452         // struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ CResult_ChannelMonitorUpdateDecodeErrorZ_err(struct LDKDecodeError e);
4453         public static native long CResult_ChannelMonitorUpdateDecodeErrorZ_err(long e);
4454         // bool CResult_ChannelMonitorUpdateDecodeErrorZ_is_ok(const struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR o);
4455         public static native boolean CResult_ChannelMonitorUpdateDecodeErrorZ_is_ok(long o);
4456         // void CResult_ChannelMonitorUpdateDecodeErrorZ_free(struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ _res);
4457         public static native void CResult_ChannelMonitorUpdateDecodeErrorZ_free(long _res);
4458         // uint64_t CResult_ChannelMonitorUpdateDecodeErrorZ_clone_ptr(LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR arg);
4459         public static native long CResult_ChannelMonitorUpdateDecodeErrorZ_clone_ptr(long arg);
4460         // struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ CResult_ChannelMonitorUpdateDecodeErrorZ_clone(const struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR orig);
4461         public static native long CResult_ChannelMonitorUpdateDecodeErrorZ_clone(long orig);
4462         // struct LDKCOption_MonitorEventZ COption_MonitorEventZ_some(struct LDKMonitorEvent o);
4463         public static native long COption_MonitorEventZ_some(long o);
4464         // struct LDKCOption_MonitorEventZ COption_MonitorEventZ_none(void);
4465         public static native long COption_MonitorEventZ_none();
4466         // void COption_MonitorEventZ_free(struct LDKCOption_MonitorEventZ _res);
4467         public static native void COption_MonitorEventZ_free(long _res);
4468         // uint64_t COption_MonitorEventZ_clone_ptr(LDKCOption_MonitorEventZ *NONNULL_PTR arg);
4469         public static native long COption_MonitorEventZ_clone_ptr(long arg);
4470         // struct LDKCOption_MonitorEventZ COption_MonitorEventZ_clone(const struct LDKCOption_MonitorEventZ *NONNULL_PTR orig);
4471         public static native long COption_MonitorEventZ_clone(long orig);
4472         // struct LDKCResult_COption_MonitorEventZDecodeErrorZ CResult_COption_MonitorEventZDecodeErrorZ_ok(struct LDKCOption_MonitorEventZ o);
4473         public static native long CResult_COption_MonitorEventZDecodeErrorZ_ok(long o);
4474         // struct LDKCResult_COption_MonitorEventZDecodeErrorZ CResult_COption_MonitorEventZDecodeErrorZ_err(struct LDKDecodeError e);
4475         public static native long CResult_COption_MonitorEventZDecodeErrorZ_err(long e);
4476         // bool CResult_COption_MonitorEventZDecodeErrorZ_is_ok(const struct LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR o);
4477         public static native boolean CResult_COption_MonitorEventZDecodeErrorZ_is_ok(long o);
4478         // void CResult_COption_MonitorEventZDecodeErrorZ_free(struct LDKCResult_COption_MonitorEventZDecodeErrorZ _res);
4479         public static native void CResult_COption_MonitorEventZDecodeErrorZ_free(long _res);
4480         // uint64_t CResult_COption_MonitorEventZDecodeErrorZ_clone_ptr(LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR arg);
4481         public static native long CResult_COption_MonitorEventZDecodeErrorZ_clone_ptr(long arg);
4482         // struct LDKCResult_COption_MonitorEventZDecodeErrorZ CResult_COption_MonitorEventZDecodeErrorZ_clone(const struct LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR orig);
4483         public static native long CResult_COption_MonitorEventZDecodeErrorZ_clone(long orig);
4484         // struct LDKCResult_HTLCUpdateDecodeErrorZ CResult_HTLCUpdateDecodeErrorZ_ok(struct LDKHTLCUpdate o);
4485         public static native long CResult_HTLCUpdateDecodeErrorZ_ok(long o);
4486         // struct LDKCResult_HTLCUpdateDecodeErrorZ CResult_HTLCUpdateDecodeErrorZ_err(struct LDKDecodeError e);
4487         public static native long CResult_HTLCUpdateDecodeErrorZ_err(long e);
4488         // bool CResult_HTLCUpdateDecodeErrorZ_is_ok(const struct LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR o);
4489         public static native boolean CResult_HTLCUpdateDecodeErrorZ_is_ok(long o);
4490         // void CResult_HTLCUpdateDecodeErrorZ_free(struct LDKCResult_HTLCUpdateDecodeErrorZ _res);
4491         public static native void CResult_HTLCUpdateDecodeErrorZ_free(long _res);
4492         // uint64_t CResult_HTLCUpdateDecodeErrorZ_clone_ptr(LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR arg);
4493         public static native long CResult_HTLCUpdateDecodeErrorZ_clone_ptr(long arg);
4494         // struct LDKCResult_HTLCUpdateDecodeErrorZ CResult_HTLCUpdateDecodeErrorZ_clone(const struct LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR orig);
4495         public static native long CResult_HTLCUpdateDecodeErrorZ_clone(long orig);
4496         // uint64_t C2Tuple_OutPointCVec_u8ZZ_clone_ptr(LDKC2Tuple_OutPointCVec_u8ZZ *NONNULL_PTR arg);
4497         public static native long C2Tuple_OutPointCVec_u8ZZ_clone_ptr(long arg);
4498         // struct LDKC2Tuple_OutPointCVec_u8ZZ C2Tuple_OutPointCVec_u8ZZ_clone(const struct LDKC2Tuple_OutPointCVec_u8ZZ *NONNULL_PTR orig);
4499         public static native long C2Tuple_OutPointCVec_u8ZZ_clone(long orig);
4500         // struct LDKC2Tuple_OutPointCVec_u8ZZ C2Tuple_OutPointCVec_u8ZZ_new(struct LDKOutPoint a, struct LDKCVec_u8Z b);
4501         public static native long C2Tuple_OutPointCVec_u8ZZ_new(long a, byte[] b);
4502         // void C2Tuple_OutPointCVec_u8ZZ_free(struct LDKC2Tuple_OutPointCVec_u8ZZ _res);
4503         public static native void C2Tuple_OutPointCVec_u8ZZ_free(long _res);
4504         // uint64_t C2Tuple_u32CVec_u8ZZ_clone_ptr(LDKC2Tuple_u32CVec_u8ZZ *NONNULL_PTR arg);
4505         public static native long C2Tuple_u32CVec_u8ZZ_clone_ptr(long arg);
4506         // struct LDKC2Tuple_u32CVec_u8ZZ C2Tuple_u32CVec_u8ZZ_clone(const struct LDKC2Tuple_u32CVec_u8ZZ *NONNULL_PTR orig);
4507         public static native long C2Tuple_u32CVec_u8ZZ_clone(long orig);
4508         // struct LDKC2Tuple_u32CVec_u8ZZ C2Tuple_u32CVec_u8ZZ_new(uint32_t a, struct LDKCVec_u8Z b);
4509         public static native long C2Tuple_u32CVec_u8ZZ_new(int a, byte[] b);
4510         // void C2Tuple_u32CVec_u8ZZ_free(struct LDKC2Tuple_u32CVec_u8ZZ _res);
4511         public static native void C2Tuple_u32CVec_u8ZZ_free(long _res);
4512         // void CVec_C2Tuple_u32CVec_u8ZZZ_free(struct LDKCVec_C2Tuple_u32CVec_u8ZZZ _res);
4513         public static native void CVec_C2Tuple_u32CVec_u8ZZZ_free(long[] _res);
4514         // uint64_t C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_clone_ptr(LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ *NONNULL_PTR arg);
4515         public static native long C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_clone_ptr(long arg);
4516         // struct LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_clone(const struct LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ *NONNULL_PTR orig);
4517         public static native long C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_clone(long orig);
4518         // struct LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_new(struct LDKThirtyTwoBytes a, struct LDKCVec_C2Tuple_u32CVec_u8ZZZ b);
4519         public static native long C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_new(byte[] a, long[] b);
4520         // void C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_free(struct LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ _res);
4521         public static native void C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZ_free(long _res);
4522         // void CVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZZ_free(struct LDKCVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZZ _res);
4523         public static native void CVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZZ_free(long[] _res);
4524         // void CVec_CommitmentTransactionZ_free(struct LDKCVec_CommitmentTransactionZ _res);
4525         public static native void CVec_CommitmentTransactionZ_free(long[] _res);
4526         // void CVec_TransactionZ_free(struct LDKCVec_TransactionZ _res);
4527         public static native void CVec_TransactionZ_free(byte[][] _res);
4528         // uint64_t C2Tuple_u32TxOutZ_clone_ptr(LDKC2Tuple_u32TxOutZ *NONNULL_PTR arg);
4529         public static native long C2Tuple_u32TxOutZ_clone_ptr(long arg);
4530         // struct LDKC2Tuple_u32TxOutZ C2Tuple_u32TxOutZ_clone(const struct LDKC2Tuple_u32TxOutZ *NONNULL_PTR orig);
4531         public static native long C2Tuple_u32TxOutZ_clone(long orig);
4532         // struct LDKC2Tuple_u32TxOutZ C2Tuple_u32TxOutZ_new(uint32_t a, struct LDKTxOut b);
4533         public static native long C2Tuple_u32TxOutZ_new(int a, long b);
4534         // void C2Tuple_u32TxOutZ_free(struct LDKC2Tuple_u32TxOutZ _res);
4535         public static native void C2Tuple_u32TxOutZ_free(long _res);
4536         // void CVec_C2Tuple_u32TxOutZZ_free(struct LDKCVec_C2Tuple_u32TxOutZZ _res);
4537         public static native void CVec_C2Tuple_u32TxOutZZ_free(long[] _res);
4538         // uint64_t C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_clone_ptr(LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ *NONNULL_PTR arg);
4539         public static native long C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_clone_ptr(long arg);
4540         // struct LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_clone(const struct LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ *NONNULL_PTR orig);
4541         public static native long C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_clone(long orig);
4542         // struct LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_new(struct LDKThirtyTwoBytes a, struct LDKCVec_C2Tuple_u32TxOutZZ b);
4543         public static native long C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_new(byte[] a, long[] b);
4544         // void C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_free(struct LDKC2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ _res);
4545         public static native void C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZ_free(long _res);
4546         // void CVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZZ_free(struct LDKCVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZZ _res);
4547         public static native void CVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZZ_free(long[] _res);
4548         // void CVec_BalanceZ_free(struct LDKCVec_BalanceZ _res);
4549         public static native void CVec_BalanceZ_free(long[] _res);
4550         // uint64_t C2Tuple_ThirtyTwoBytesChannelMonitorZ_clone_ptr(LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ *NONNULL_PTR arg);
4551         public static native long C2Tuple_ThirtyTwoBytesChannelMonitorZ_clone_ptr(long arg);
4552         // struct LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ C2Tuple_ThirtyTwoBytesChannelMonitorZ_clone(const struct LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ *NONNULL_PTR orig);
4553         public static native long C2Tuple_ThirtyTwoBytesChannelMonitorZ_clone(long orig);
4554         // struct LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ C2Tuple_ThirtyTwoBytesChannelMonitorZ_new(struct LDKThirtyTwoBytes a, struct LDKChannelMonitor b);
4555         public static native long C2Tuple_ThirtyTwoBytesChannelMonitorZ_new(byte[] a, long b);
4556         // void C2Tuple_ThirtyTwoBytesChannelMonitorZ_free(struct LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ _res);
4557         public static native void C2Tuple_ThirtyTwoBytesChannelMonitorZ_free(long _res);
4558         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_ok(struct LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ o);
4559         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_ok(long o);
4560         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_err(struct LDKDecodeError e);
4561         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_err(long e);
4562         // bool CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_is_ok(const struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ *NONNULL_PTR o);
4563         public static native boolean CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_is_ok(long o);
4564         // void CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_free(struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ _res);
4565         public static native void CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_free(long _res);
4566         // uint64_t CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_clone_ptr(LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ *NONNULL_PTR arg);
4567         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_clone_ptr(long arg);
4568         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_clone(const struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ *NONNULL_PTR orig);
4569         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ_clone(long orig);
4570         // uint64_t C2Tuple_PublicKeyTypeZ_clone_ptr(LDKC2Tuple_PublicKeyTypeZ *NONNULL_PTR arg);
4571         public static native long C2Tuple_PublicKeyTypeZ_clone_ptr(long arg);
4572         // struct LDKC2Tuple_PublicKeyTypeZ C2Tuple_PublicKeyTypeZ_clone(const struct LDKC2Tuple_PublicKeyTypeZ *NONNULL_PTR orig);
4573         public static native long C2Tuple_PublicKeyTypeZ_clone(long orig);
4574         // struct LDKC2Tuple_PublicKeyTypeZ C2Tuple_PublicKeyTypeZ_new(struct LDKPublicKey a, struct LDKType b);
4575         public static native long C2Tuple_PublicKeyTypeZ_new(byte[] a, long b);
4576         // void C2Tuple_PublicKeyTypeZ_free(struct LDKC2Tuple_PublicKeyTypeZ _res);
4577         public static native void C2Tuple_PublicKeyTypeZ_free(long _res);
4578         // void CVec_C2Tuple_PublicKeyTypeZZ_free(struct LDKCVec_C2Tuple_PublicKeyTypeZZ _res);
4579         public static native void CVec_C2Tuple_PublicKeyTypeZZ_free(long[] _res);
4580         // struct LDKCOption_OffersMessageZ COption_OffersMessageZ_some(struct LDKOffersMessage o);
4581         public static native long COption_OffersMessageZ_some(long o);
4582         // struct LDKCOption_OffersMessageZ COption_OffersMessageZ_none(void);
4583         public static native long COption_OffersMessageZ_none();
4584         // void COption_OffersMessageZ_free(struct LDKCOption_OffersMessageZ _res);
4585         public static native void COption_OffersMessageZ_free(long _res);
4586         // uint64_t COption_OffersMessageZ_clone_ptr(LDKCOption_OffersMessageZ *NONNULL_PTR arg);
4587         public static native long COption_OffersMessageZ_clone_ptr(long arg);
4588         // struct LDKCOption_OffersMessageZ COption_OffersMessageZ_clone(const struct LDKCOption_OffersMessageZ *NONNULL_PTR orig);
4589         public static native long COption_OffersMessageZ_clone(long orig);
4590         // struct LDKCOption_CustomOnionMessageContentsZ COption_CustomOnionMessageContentsZ_some(struct LDKCustomOnionMessageContents o);
4591         public static native long COption_CustomOnionMessageContentsZ_some(long o);
4592         // struct LDKCOption_CustomOnionMessageContentsZ COption_CustomOnionMessageContentsZ_none(void);
4593         public static native long COption_CustomOnionMessageContentsZ_none();
4594         // void COption_CustomOnionMessageContentsZ_free(struct LDKCOption_CustomOnionMessageContentsZ _res);
4595         public static native void COption_CustomOnionMessageContentsZ_free(long _res);
4596         // uint64_t COption_CustomOnionMessageContentsZ_clone_ptr(LDKCOption_CustomOnionMessageContentsZ *NONNULL_PTR arg);
4597         public static native long COption_CustomOnionMessageContentsZ_clone_ptr(long arg);
4598         // struct LDKCOption_CustomOnionMessageContentsZ COption_CustomOnionMessageContentsZ_clone(const struct LDKCOption_CustomOnionMessageContentsZ *NONNULL_PTR orig);
4599         public static native long COption_CustomOnionMessageContentsZ_clone(long orig);
4600         // struct LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_ok(struct LDKCOption_CustomOnionMessageContentsZ o);
4601         public static native long CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_ok(long o);
4602         // struct LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_err(struct LDKDecodeError e);
4603         public static native long CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_err(long e);
4604         // bool CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_is_ok(const struct LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ *NONNULL_PTR o);
4605         public static native boolean CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_is_ok(long o);
4606         // void CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_free(struct LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ _res);
4607         public static native void CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_free(long _res);
4608         // uint64_t CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_clone_ptr(LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ *NONNULL_PTR arg);
4609         public static native long CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_clone_ptr(long arg);
4610         // struct LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_clone(const struct LDKCResult_COption_CustomOnionMessageContentsZDecodeErrorZ *NONNULL_PTR orig);
4611         public static native long CResult_COption_CustomOnionMessageContentsZDecodeErrorZ_clone(long orig);
4612         // struct LDKCOption_TypeZ COption_TypeZ_some(struct LDKType o);
4613         public static native long COption_TypeZ_some(long o);
4614         // struct LDKCOption_TypeZ COption_TypeZ_none(void);
4615         public static native long COption_TypeZ_none();
4616         // void COption_TypeZ_free(struct LDKCOption_TypeZ _res);
4617         public static native void COption_TypeZ_free(long _res);
4618         // uint64_t COption_TypeZ_clone_ptr(LDKCOption_TypeZ *NONNULL_PTR arg);
4619         public static native long COption_TypeZ_clone_ptr(long arg);
4620         // struct LDKCOption_TypeZ COption_TypeZ_clone(const struct LDKCOption_TypeZ *NONNULL_PTR orig);
4621         public static native long COption_TypeZ_clone(long orig);
4622         // struct LDKCResult_COption_TypeZDecodeErrorZ CResult_COption_TypeZDecodeErrorZ_ok(struct LDKCOption_TypeZ o);
4623         public static native long CResult_COption_TypeZDecodeErrorZ_ok(long o);
4624         // struct LDKCResult_COption_TypeZDecodeErrorZ CResult_COption_TypeZDecodeErrorZ_err(struct LDKDecodeError e);
4625         public static native long CResult_COption_TypeZDecodeErrorZ_err(long e);
4626         // bool CResult_COption_TypeZDecodeErrorZ_is_ok(const struct LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR o);
4627         public static native boolean CResult_COption_TypeZDecodeErrorZ_is_ok(long o);
4628         // void CResult_COption_TypeZDecodeErrorZ_free(struct LDKCResult_COption_TypeZDecodeErrorZ _res);
4629         public static native void CResult_COption_TypeZDecodeErrorZ_free(long _res);
4630         // uint64_t CResult_COption_TypeZDecodeErrorZ_clone_ptr(LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR arg);
4631         public static native long CResult_COption_TypeZDecodeErrorZ_clone_ptr(long arg);
4632         // struct LDKCResult_COption_TypeZDecodeErrorZ CResult_COption_TypeZDecodeErrorZ_clone(const struct LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR orig);
4633         public static native long CResult_COption_TypeZDecodeErrorZ_clone(long orig);
4634         // struct LDKCOption_SocketAddressZ COption_SocketAddressZ_some(struct LDKSocketAddress o);
4635         public static native long COption_SocketAddressZ_some(long o);
4636         // struct LDKCOption_SocketAddressZ COption_SocketAddressZ_none(void);
4637         public static native long COption_SocketAddressZ_none();
4638         // void COption_SocketAddressZ_free(struct LDKCOption_SocketAddressZ _res);
4639         public static native void COption_SocketAddressZ_free(long _res);
4640         // uint64_t COption_SocketAddressZ_clone_ptr(LDKCOption_SocketAddressZ *NONNULL_PTR arg);
4641         public static native long COption_SocketAddressZ_clone_ptr(long arg);
4642         // struct LDKCOption_SocketAddressZ COption_SocketAddressZ_clone(const struct LDKCOption_SocketAddressZ *NONNULL_PTR orig);
4643         public static native long COption_SocketAddressZ_clone(long orig);
4644         // uint64_t C2Tuple_PublicKeyCOption_SocketAddressZZ_clone_ptr(LDKC2Tuple_PublicKeyCOption_SocketAddressZZ *NONNULL_PTR arg);
4645         public static native long C2Tuple_PublicKeyCOption_SocketAddressZZ_clone_ptr(long arg);
4646         // struct LDKC2Tuple_PublicKeyCOption_SocketAddressZZ C2Tuple_PublicKeyCOption_SocketAddressZZ_clone(const struct LDKC2Tuple_PublicKeyCOption_SocketAddressZZ *NONNULL_PTR orig);
4647         public static native long C2Tuple_PublicKeyCOption_SocketAddressZZ_clone(long orig);
4648         // struct LDKC2Tuple_PublicKeyCOption_SocketAddressZZ C2Tuple_PublicKeyCOption_SocketAddressZZ_new(struct LDKPublicKey a, struct LDKCOption_SocketAddressZ b);
4649         public static native long C2Tuple_PublicKeyCOption_SocketAddressZZ_new(byte[] a, long b);
4650         // void C2Tuple_PublicKeyCOption_SocketAddressZZ_free(struct LDKC2Tuple_PublicKeyCOption_SocketAddressZZ _res);
4651         public static native void C2Tuple_PublicKeyCOption_SocketAddressZZ_free(long _res);
4652         // void CVec_C2Tuple_PublicKeyCOption_SocketAddressZZZ_free(struct LDKCVec_C2Tuple_PublicKeyCOption_SocketAddressZZZ _res);
4653         public static native void CVec_C2Tuple_PublicKeyCOption_SocketAddressZZZ_free(long[] _res);
4654         // struct LDKCResult_CVec_u8ZPeerHandleErrorZ CResult_CVec_u8ZPeerHandleErrorZ_ok(struct LDKCVec_u8Z o);
4655         public static native long CResult_CVec_u8ZPeerHandleErrorZ_ok(byte[] o);
4656         // struct LDKCResult_CVec_u8ZPeerHandleErrorZ CResult_CVec_u8ZPeerHandleErrorZ_err(struct LDKPeerHandleError e);
4657         public static native long CResult_CVec_u8ZPeerHandleErrorZ_err(long e);
4658         // bool CResult_CVec_u8ZPeerHandleErrorZ_is_ok(const struct LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR o);
4659         public static native boolean CResult_CVec_u8ZPeerHandleErrorZ_is_ok(long o);
4660         // void CResult_CVec_u8ZPeerHandleErrorZ_free(struct LDKCResult_CVec_u8ZPeerHandleErrorZ _res);
4661         public static native void CResult_CVec_u8ZPeerHandleErrorZ_free(long _res);
4662         // uint64_t CResult_CVec_u8ZPeerHandleErrorZ_clone_ptr(LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR arg);
4663         public static native long CResult_CVec_u8ZPeerHandleErrorZ_clone_ptr(long arg);
4664         // struct LDKCResult_CVec_u8ZPeerHandleErrorZ CResult_CVec_u8ZPeerHandleErrorZ_clone(const struct LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR orig);
4665         public static native long CResult_CVec_u8ZPeerHandleErrorZ_clone(long orig);
4666         // struct LDKCResult_NonePeerHandleErrorZ CResult_NonePeerHandleErrorZ_ok(void);
4667         public static native long CResult_NonePeerHandleErrorZ_ok();
4668         // struct LDKCResult_NonePeerHandleErrorZ CResult_NonePeerHandleErrorZ_err(struct LDKPeerHandleError e);
4669         public static native long CResult_NonePeerHandleErrorZ_err(long e);
4670         // bool CResult_NonePeerHandleErrorZ_is_ok(const struct LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR o);
4671         public static native boolean CResult_NonePeerHandleErrorZ_is_ok(long o);
4672         // void CResult_NonePeerHandleErrorZ_free(struct LDKCResult_NonePeerHandleErrorZ _res);
4673         public static native void CResult_NonePeerHandleErrorZ_free(long _res);
4674         // uint64_t CResult_NonePeerHandleErrorZ_clone_ptr(LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR arg);
4675         public static native long CResult_NonePeerHandleErrorZ_clone_ptr(long arg);
4676         // struct LDKCResult_NonePeerHandleErrorZ CResult_NonePeerHandleErrorZ_clone(const struct LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR orig);
4677         public static native long CResult_NonePeerHandleErrorZ_clone(long orig);
4678         // struct LDKCResult_boolPeerHandleErrorZ CResult_boolPeerHandleErrorZ_ok(bool o);
4679         public static native long CResult_boolPeerHandleErrorZ_ok(boolean o);
4680         // struct LDKCResult_boolPeerHandleErrorZ CResult_boolPeerHandleErrorZ_err(struct LDKPeerHandleError e);
4681         public static native long CResult_boolPeerHandleErrorZ_err(long e);
4682         // bool CResult_boolPeerHandleErrorZ_is_ok(const struct LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR o);
4683         public static native boolean CResult_boolPeerHandleErrorZ_is_ok(long o);
4684         // void CResult_boolPeerHandleErrorZ_free(struct LDKCResult_boolPeerHandleErrorZ _res);
4685         public static native void CResult_boolPeerHandleErrorZ_free(long _res);
4686         // uint64_t CResult_boolPeerHandleErrorZ_clone_ptr(LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR arg);
4687         public static native long CResult_boolPeerHandleErrorZ_clone_ptr(long arg);
4688         // struct LDKCResult_boolPeerHandleErrorZ CResult_boolPeerHandleErrorZ_clone(const struct LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR orig);
4689         public static native long CResult_boolPeerHandleErrorZ_clone(long orig);
4690         // struct LDKCResult_u32GraphSyncErrorZ CResult_u32GraphSyncErrorZ_ok(uint32_t o);
4691         public static native long CResult_u32GraphSyncErrorZ_ok(int o);
4692         // struct LDKCResult_u32GraphSyncErrorZ CResult_u32GraphSyncErrorZ_err(struct LDKGraphSyncError e);
4693         public static native long CResult_u32GraphSyncErrorZ_err(long e);
4694         // bool CResult_u32GraphSyncErrorZ_is_ok(const struct LDKCResult_u32GraphSyncErrorZ *NONNULL_PTR o);
4695         public static native boolean CResult_u32GraphSyncErrorZ_is_ok(long o);
4696         // void CResult_u32GraphSyncErrorZ_free(struct LDKCResult_u32GraphSyncErrorZ _res);
4697         public static native void CResult_u32GraphSyncErrorZ_free(long _res);
4698         // struct LDKCResult_CVec_u8ZIOErrorZ CResult_CVec_u8ZIOErrorZ_ok(struct LDKCVec_u8Z o);
4699         public static native long CResult_CVec_u8ZIOErrorZ_ok(byte[] o);
4700         // struct LDKCResult_CVec_u8ZIOErrorZ CResult_CVec_u8ZIOErrorZ_err(enum LDKIOError e);
4701         public static native long CResult_CVec_u8ZIOErrorZ_err(IOError e);
4702         // bool CResult_CVec_u8ZIOErrorZ_is_ok(const struct LDKCResult_CVec_u8ZIOErrorZ *NONNULL_PTR o);
4703         public static native boolean CResult_CVec_u8ZIOErrorZ_is_ok(long o);
4704         // void CResult_CVec_u8ZIOErrorZ_free(struct LDKCResult_CVec_u8ZIOErrorZ _res);
4705         public static native void CResult_CVec_u8ZIOErrorZ_free(long _res);
4706         // uint64_t CResult_CVec_u8ZIOErrorZ_clone_ptr(LDKCResult_CVec_u8ZIOErrorZ *NONNULL_PTR arg);
4707         public static native long CResult_CVec_u8ZIOErrorZ_clone_ptr(long arg);
4708         // struct LDKCResult_CVec_u8ZIOErrorZ CResult_CVec_u8ZIOErrorZ_clone(const struct LDKCResult_CVec_u8ZIOErrorZ *NONNULL_PTR orig);
4709         public static native long CResult_CVec_u8ZIOErrorZ_clone(long orig);
4710         // void CVec_StrZ_free(struct LDKCVec_StrZ _res);
4711         public static native void CVec_StrZ_free(String[] _res);
4712         // struct LDKCResult_CVec_StrZIOErrorZ CResult_CVec_StrZIOErrorZ_ok(struct LDKCVec_StrZ o);
4713         public static native long CResult_CVec_StrZIOErrorZ_ok(String[] o);
4714         // struct LDKCResult_CVec_StrZIOErrorZ CResult_CVec_StrZIOErrorZ_err(enum LDKIOError e);
4715         public static native long CResult_CVec_StrZIOErrorZ_err(IOError e);
4716         // bool CResult_CVec_StrZIOErrorZ_is_ok(const struct LDKCResult_CVec_StrZIOErrorZ *NONNULL_PTR o);
4717         public static native boolean CResult_CVec_StrZIOErrorZ_is_ok(long o);
4718         // void CResult_CVec_StrZIOErrorZ_free(struct LDKCResult_CVec_StrZIOErrorZ _res);
4719         public static native void CResult_CVec_StrZIOErrorZ_free(long _res);
4720         // uint64_t CResult_CVec_StrZIOErrorZ_clone_ptr(LDKCResult_CVec_StrZIOErrorZ *NONNULL_PTR arg);
4721         public static native long CResult_CVec_StrZIOErrorZ_clone_ptr(long arg);
4722         // struct LDKCResult_CVec_StrZIOErrorZ CResult_CVec_StrZIOErrorZ_clone(const struct LDKCResult_CVec_StrZIOErrorZ *NONNULL_PTR orig);
4723         public static native long CResult_CVec_StrZIOErrorZ_clone(long orig);
4724         // void CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZ_free(struct LDKCVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZ _res);
4725         public static native void CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZ_free(long[] _res);
4726         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_ok(struct LDKCVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZ o);
4727         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_ok(long[] o);
4728         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_err(enum LDKIOError e);
4729         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_err(IOError e);
4730         // bool CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_is_ok(const struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ *NONNULL_PTR o);
4731         public static native boolean CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_is_ok(long o);
4732         // void CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_free(struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ _res);
4733         public static native void CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_free(long _res);
4734         // uint64_t CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_clone_ptr(LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ *NONNULL_PTR arg);
4735         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_clone_ptr(long arg);
4736         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_clone(const struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ *NONNULL_PTR orig);
4737         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ_clone(long orig);
4738         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_ok(struct LDKC2Tuple_ThirtyTwoBytesChannelMonitorZ o);
4739         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_ok(long o);
4740         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_err(enum LDKIOError e);
4741         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_err(IOError e);
4742         // bool CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_is_ok(const struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ *NONNULL_PTR o);
4743         public static native boolean CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_is_ok(long o);
4744         // void CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_free(struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ _res);
4745         public static native void CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_free(long _res);
4746         // uint64_t CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_clone_ptr(LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ *NONNULL_PTR arg);
4747         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_clone_ptr(long arg);
4748         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_clone(const struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ *NONNULL_PTR orig);
4749         public static native long CResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ_clone(long orig);
4750         // struct LDKCOption_SecretKeyZ COption_SecretKeyZ_some(struct LDKSecretKey o);
4751         public static native long COption_SecretKeyZ_some(byte[] o);
4752         // struct LDKCOption_SecretKeyZ COption_SecretKeyZ_none(void);
4753         public static native long COption_SecretKeyZ_none();
4754         // void COption_SecretKeyZ_free(struct LDKCOption_SecretKeyZ _res);
4755         public static native void COption_SecretKeyZ_free(long _res);
4756         // uint64_t COption_SecretKeyZ_clone_ptr(LDKCOption_SecretKeyZ *NONNULL_PTR arg);
4757         public static native long COption_SecretKeyZ_clone_ptr(long arg);
4758         // struct LDKCOption_SecretKeyZ COption_SecretKeyZ_clone(const struct LDKCOption_SecretKeyZ *NONNULL_PTR orig);
4759         public static native long COption_SecretKeyZ_clone(long orig);
4760         // struct LDKCResult_VerifiedInvoiceRequestNoneZ CResult_VerifiedInvoiceRequestNoneZ_ok(struct LDKVerifiedInvoiceRequest o);
4761         public static native long CResult_VerifiedInvoiceRequestNoneZ_ok(long o);
4762         // struct LDKCResult_VerifiedInvoiceRequestNoneZ CResult_VerifiedInvoiceRequestNoneZ_err(void);
4763         public static native long CResult_VerifiedInvoiceRequestNoneZ_err();
4764         // bool CResult_VerifiedInvoiceRequestNoneZ_is_ok(const struct LDKCResult_VerifiedInvoiceRequestNoneZ *NONNULL_PTR o);
4765         public static native boolean CResult_VerifiedInvoiceRequestNoneZ_is_ok(long o);
4766         // void CResult_VerifiedInvoiceRequestNoneZ_free(struct LDKCResult_VerifiedInvoiceRequestNoneZ _res);
4767         public static native void CResult_VerifiedInvoiceRequestNoneZ_free(long _res);
4768         // uint64_t CResult_VerifiedInvoiceRequestNoneZ_clone_ptr(LDKCResult_VerifiedInvoiceRequestNoneZ *NONNULL_PTR arg);
4769         public static native long CResult_VerifiedInvoiceRequestNoneZ_clone_ptr(long arg);
4770         // struct LDKCResult_VerifiedInvoiceRequestNoneZ CResult_VerifiedInvoiceRequestNoneZ_clone(const struct LDKCResult_VerifiedInvoiceRequestNoneZ *NONNULL_PTR orig);
4771         public static native long CResult_VerifiedInvoiceRequestNoneZ_clone(long orig);
4772         // enum LDKCOption_NoneZ COption_NoneZ_some(void);
4773         public static native COption_NoneZ COption_NoneZ_some();
4774         // enum LDKCOption_NoneZ COption_NoneZ_none(void);
4775         public static native COption_NoneZ COption_NoneZ_none();
4776         // void COption_NoneZ_free(enum LDKCOption_NoneZ _res);
4777         public static native void COption_NoneZ_free(COption_NoneZ _res);
4778         // void CVec_WitnessZ_free(struct LDKCVec_WitnessZ _res);
4779         public static native void CVec_WitnessZ_free(byte[][] _res);
4780         // struct LDKCOption_i64Z COption_i64Z_some(int64_t o);
4781         public static native long COption_i64Z_some(long o);
4782         // struct LDKCOption_i64Z COption_i64Z_none(void);
4783         public static native long COption_i64Z_none();
4784         // void COption_i64Z_free(struct LDKCOption_i64Z _res);
4785         public static native void COption_i64Z_free(long _res);
4786         // uint64_t COption_i64Z_clone_ptr(LDKCOption_i64Z *NONNULL_PTR arg);
4787         public static native long COption_i64Z_clone_ptr(long arg);
4788         // struct LDKCOption_i64Z COption_i64Z_clone(const struct LDKCOption_i64Z *NONNULL_PTR orig);
4789         public static native long COption_i64Z_clone(long orig);
4790         // struct LDKCResult_SocketAddressDecodeErrorZ CResult_SocketAddressDecodeErrorZ_ok(struct LDKSocketAddress o);
4791         public static native long CResult_SocketAddressDecodeErrorZ_ok(long o);
4792         // struct LDKCResult_SocketAddressDecodeErrorZ CResult_SocketAddressDecodeErrorZ_err(struct LDKDecodeError e);
4793         public static native long CResult_SocketAddressDecodeErrorZ_err(long e);
4794         // bool CResult_SocketAddressDecodeErrorZ_is_ok(const struct LDKCResult_SocketAddressDecodeErrorZ *NONNULL_PTR o);
4795         public static native boolean CResult_SocketAddressDecodeErrorZ_is_ok(long o);
4796         // void CResult_SocketAddressDecodeErrorZ_free(struct LDKCResult_SocketAddressDecodeErrorZ _res);
4797         public static native void CResult_SocketAddressDecodeErrorZ_free(long _res);
4798         // uint64_t CResult_SocketAddressDecodeErrorZ_clone_ptr(LDKCResult_SocketAddressDecodeErrorZ *NONNULL_PTR arg);
4799         public static native long CResult_SocketAddressDecodeErrorZ_clone_ptr(long arg);
4800         // struct LDKCResult_SocketAddressDecodeErrorZ CResult_SocketAddressDecodeErrorZ_clone(const struct LDKCResult_SocketAddressDecodeErrorZ *NONNULL_PTR orig);
4801         public static native long CResult_SocketAddressDecodeErrorZ_clone(long orig);
4802         // struct LDKCResult_SocketAddressSocketAddressParseErrorZ CResult_SocketAddressSocketAddressParseErrorZ_ok(struct LDKSocketAddress o);
4803         public static native long CResult_SocketAddressSocketAddressParseErrorZ_ok(long o);
4804         // struct LDKCResult_SocketAddressSocketAddressParseErrorZ CResult_SocketAddressSocketAddressParseErrorZ_err(enum LDKSocketAddressParseError e);
4805         public static native long CResult_SocketAddressSocketAddressParseErrorZ_err(SocketAddressParseError e);
4806         // bool CResult_SocketAddressSocketAddressParseErrorZ_is_ok(const struct LDKCResult_SocketAddressSocketAddressParseErrorZ *NONNULL_PTR o);
4807         public static native boolean CResult_SocketAddressSocketAddressParseErrorZ_is_ok(long o);
4808         // void CResult_SocketAddressSocketAddressParseErrorZ_free(struct LDKCResult_SocketAddressSocketAddressParseErrorZ _res);
4809         public static native void CResult_SocketAddressSocketAddressParseErrorZ_free(long _res);
4810         // uint64_t CResult_SocketAddressSocketAddressParseErrorZ_clone_ptr(LDKCResult_SocketAddressSocketAddressParseErrorZ *NONNULL_PTR arg);
4811         public static native long CResult_SocketAddressSocketAddressParseErrorZ_clone_ptr(long arg);
4812         // struct LDKCResult_SocketAddressSocketAddressParseErrorZ CResult_SocketAddressSocketAddressParseErrorZ_clone(const struct LDKCResult_SocketAddressSocketAddressParseErrorZ *NONNULL_PTR orig);
4813         public static native long CResult_SocketAddressSocketAddressParseErrorZ_clone(long orig);
4814         // void CVec_UpdateAddHTLCZ_free(struct LDKCVec_UpdateAddHTLCZ _res);
4815         public static native void CVec_UpdateAddHTLCZ_free(long[] _res);
4816         // void CVec_UpdateFulfillHTLCZ_free(struct LDKCVec_UpdateFulfillHTLCZ _res);
4817         public static native void CVec_UpdateFulfillHTLCZ_free(long[] _res);
4818         // void CVec_UpdateFailHTLCZ_free(struct LDKCVec_UpdateFailHTLCZ _res);
4819         public static native void CVec_UpdateFailHTLCZ_free(long[] _res);
4820         // void CVec_UpdateFailMalformedHTLCZ_free(struct LDKCVec_UpdateFailMalformedHTLCZ _res);
4821         public static native void CVec_UpdateFailMalformedHTLCZ_free(long[] _res);
4822         // struct LDKCResult_AcceptChannelDecodeErrorZ CResult_AcceptChannelDecodeErrorZ_ok(struct LDKAcceptChannel o);
4823         public static native long CResult_AcceptChannelDecodeErrorZ_ok(long o);
4824         // struct LDKCResult_AcceptChannelDecodeErrorZ CResult_AcceptChannelDecodeErrorZ_err(struct LDKDecodeError e);
4825         public static native long CResult_AcceptChannelDecodeErrorZ_err(long e);
4826         // bool CResult_AcceptChannelDecodeErrorZ_is_ok(const struct LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR o);
4827         public static native boolean CResult_AcceptChannelDecodeErrorZ_is_ok(long o);
4828         // void CResult_AcceptChannelDecodeErrorZ_free(struct LDKCResult_AcceptChannelDecodeErrorZ _res);
4829         public static native void CResult_AcceptChannelDecodeErrorZ_free(long _res);
4830         // uint64_t CResult_AcceptChannelDecodeErrorZ_clone_ptr(LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR arg);
4831         public static native long CResult_AcceptChannelDecodeErrorZ_clone_ptr(long arg);
4832         // struct LDKCResult_AcceptChannelDecodeErrorZ CResult_AcceptChannelDecodeErrorZ_clone(const struct LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR orig);
4833         public static native long CResult_AcceptChannelDecodeErrorZ_clone(long orig);
4834         // struct LDKCResult_AcceptChannelV2DecodeErrorZ CResult_AcceptChannelV2DecodeErrorZ_ok(struct LDKAcceptChannelV2 o);
4835         public static native long CResult_AcceptChannelV2DecodeErrorZ_ok(long o);
4836         // struct LDKCResult_AcceptChannelV2DecodeErrorZ CResult_AcceptChannelV2DecodeErrorZ_err(struct LDKDecodeError e);
4837         public static native long CResult_AcceptChannelV2DecodeErrorZ_err(long e);
4838         // bool CResult_AcceptChannelV2DecodeErrorZ_is_ok(const struct LDKCResult_AcceptChannelV2DecodeErrorZ *NONNULL_PTR o);
4839         public static native boolean CResult_AcceptChannelV2DecodeErrorZ_is_ok(long o);
4840         // void CResult_AcceptChannelV2DecodeErrorZ_free(struct LDKCResult_AcceptChannelV2DecodeErrorZ _res);
4841         public static native void CResult_AcceptChannelV2DecodeErrorZ_free(long _res);
4842         // uint64_t CResult_AcceptChannelV2DecodeErrorZ_clone_ptr(LDKCResult_AcceptChannelV2DecodeErrorZ *NONNULL_PTR arg);
4843         public static native long CResult_AcceptChannelV2DecodeErrorZ_clone_ptr(long arg);
4844         // struct LDKCResult_AcceptChannelV2DecodeErrorZ CResult_AcceptChannelV2DecodeErrorZ_clone(const struct LDKCResult_AcceptChannelV2DecodeErrorZ *NONNULL_PTR orig);
4845         public static native long CResult_AcceptChannelV2DecodeErrorZ_clone(long orig);
4846         // struct LDKCResult_TxAddInputDecodeErrorZ CResult_TxAddInputDecodeErrorZ_ok(struct LDKTxAddInput o);
4847         public static native long CResult_TxAddInputDecodeErrorZ_ok(long o);
4848         // struct LDKCResult_TxAddInputDecodeErrorZ CResult_TxAddInputDecodeErrorZ_err(struct LDKDecodeError e);
4849         public static native long CResult_TxAddInputDecodeErrorZ_err(long e);
4850         // bool CResult_TxAddInputDecodeErrorZ_is_ok(const struct LDKCResult_TxAddInputDecodeErrorZ *NONNULL_PTR o);
4851         public static native boolean CResult_TxAddInputDecodeErrorZ_is_ok(long o);
4852         // void CResult_TxAddInputDecodeErrorZ_free(struct LDKCResult_TxAddInputDecodeErrorZ _res);
4853         public static native void CResult_TxAddInputDecodeErrorZ_free(long _res);
4854         // uint64_t CResult_TxAddInputDecodeErrorZ_clone_ptr(LDKCResult_TxAddInputDecodeErrorZ *NONNULL_PTR arg);
4855         public static native long CResult_TxAddInputDecodeErrorZ_clone_ptr(long arg);
4856         // struct LDKCResult_TxAddInputDecodeErrorZ CResult_TxAddInputDecodeErrorZ_clone(const struct LDKCResult_TxAddInputDecodeErrorZ *NONNULL_PTR orig);
4857         public static native long CResult_TxAddInputDecodeErrorZ_clone(long orig);
4858         // struct LDKCResult_TxAddOutputDecodeErrorZ CResult_TxAddOutputDecodeErrorZ_ok(struct LDKTxAddOutput o);
4859         public static native long CResult_TxAddOutputDecodeErrorZ_ok(long o);
4860         // struct LDKCResult_TxAddOutputDecodeErrorZ CResult_TxAddOutputDecodeErrorZ_err(struct LDKDecodeError e);
4861         public static native long CResult_TxAddOutputDecodeErrorZ_err(long e);
4862         // bool CResult_TxAddOutputDecodeErrorZ_is_ok(const struct LDKCResult_TxAddOutputDecodeErrorZ *NONNULL_PTR o);
4863         public static native boolean CResult_TxAddOutputDecodeErrorZ_is_ok(long o);
4864         // void CResult_TxAddOutputDecodeErrorZ_free(struct LDKCResult_TxAddOutputDecodeErrorZ _res);
4865         public static native void CResult_TxAddOutputDecodeErrorZ_free(long _res);
4866         // uint64_t CResult_TxAddOutputDecodeErrorZ_clone_ptr(LDKCResult_TxAddOutputDecodeErrorZ *NONNULL_PTR arg);
4867         public static native long CResult_TxAddOutputDecodeErrorZ_clone_ptr(long arg);
4868         // struct LDKCResult_TxAddOutputDecodeErrorZ CResult_TxAddOutputDecodeErrorZ_clone(const struct LDKCResult_TxAddOutputDecodeErrorZ *NONNULL_PTR orig);
4869         public static native long CResult_TxAddOutputDecodeErrorZ_clone(long orig);
4870         // struct LDKCResult_TxRemoveInputDecodeErrorZ CResult_TxRemoveInputDecodeErrorZ_ok(struct LDKTxRemoveInput o);
4871         public static native long CResult_TxRemoveInputDecodeErrorZ_ok(long o);
4872         // struct LDKCResult_TxRemoveInputDecodeErrorZ CResult_TxRemoveInputDecodeErrorZ_err(struct LDKDecodeError e);
4873         public static native long CResult_TxRemoveInputDecodeErrorZ_err(long e);
4874         // bool CResult_TxRemoveInputDecodeErrorZ_is_ok(const struct LDKCResult_TxRemoveInputDecodeErrorZ *NONNULL_PTR o);
4875         public static native boolean CResult_TxRemoveInputDecodeErrorZ_is_ok(long o);
4876         // void CResult_TxRemoveInputDecodeErrorZ_free(struct LDKCResult_TxRemoveInputDecodeErrorZ _res);
4877         public static native void CResult_TxRemoveInputDecodeErrorZ_free(long _res);
4878         // uint64_t CResult_TxRemoveInputDecodeErrorZ_clone_ptr(LDKCResult_TxRemoveInputDecodeErrorZ *NONNULL_PTR arg);
4879         public static native long CResult_TxRemoveInputDecodeErrorZ_clone_ptr(long arg);
4880         // struct LDKCResult_TxRemoveInputDecodeErrorZ CResult_TxRemoveInputDecodeErrorZ_clone(const struct LDKCResult_TxRemoveInputDecodeErrorZ *NONNULL_PTR orig);
4881         public static native long CResult_TxRemoveInputDecodeErrorZ_clone(long orig);
4882         // struct LDKCResult_TxRemoveOutputDecodeErrorZ CResult_TxRemoveOutputDecodeErrorZ_ok(struct LDKTxRemoveOutput o);
4883         public static native long CResult_TxRemoveOutputDecodeErrorZ_ok(long o);
4884         // struct LDKCResult_TxRemoveOutputDecodeErrorZ CResult_TxRemoveOutputDecodeErrorZ_err(struct LDKDecodeError e);
4885         public static native long CResult_TxRemoveOutputDecodeErrorZ_err(long e);
4886         // bool CResult_TxRemoveOutputDecodeErrorZ_is_ok(const struct LDKCResult_TxRemoveOutputDecodeErrorZ *NONNULL_PTR o);
4887         public static native boolean CResult_TxRemoveOutputDecodeErrorZ_is_ok(long o);
4888         // void CResult_TxRemoveOutputDecodeErrorZ_free(struct LDKCResult_TxRemoveOutputDecodeErrorZ _res);
4889         public static native void CResult_TxRemoveOutputDecodeErrorZ_free(long _res);
4890         // uint64_t CResult_TxRemoveOutputDecodeErrorZ_clone_ptr(LDKCResult_TxRemoveOutputDecodeErrorZ *NONNULL_PTR arg);
4891         public static native long CResult_TxRemoveOutputDecodeErrorZ_clone_ptr(long arg);
4892         // struct LDKCResult_TxRemoveOutputDecodeErrorZ CResult_TxRemoveOutputDecodeErrorZ_clone(const struct LDKCResult_TxRemoveOutputDecodeErrorZ *NONNULL_PTR orig);
4893         public static native long CResult_TxRemoveOutputDecodeErrorZ_clone(long orig);
4894         // struct LDKCResult_TxCompleteDecodeErrorZ CResult_TxCompleteDecodeErrorZ_ok(struct LDKTxComplete o);
4895         public static native long CResult_TxCompleteDecodeErrorZ_ok(long o);
4896         // struct LDKCResult_TxCompleteDecodeErrorZ CResult_TxCompleteDecodeErrorZ_err(struct LDKDecodeError e);
4897         public static native long CResult_TxCompleteDecodeErrorZ_err(long e);
4898         // bool CResult_TxCompleteDecodeErrorZ_is_ok(const struct LDKCResult_TxCompleteDecodeErrorZ *NONNULL_PTR o);
4899         public static native boolean CResult_TxCompleteDecodeErrorZ_is_ok(long o);
4900         // void CResult_TxCompleteDecodeErrorZ_free(struct LDKCResult_TxCompleteDecodeErrorZ _res);
4901         public static native void CResult_TxCompleteDecodeErrorZ_free(long _res);
4902         // uint64_t CResult_TxCompleteDecodeErrorZ_clone_ptr(LDKCResult_TxCompleteDecodeErrorZ *NONNULL_PTR arg);
4903         public static native long CResult_TxCompleteDecodeErrorZ_clone_ptr(long arg);
4904         // struct LDKCResult_TxCompleteDecodeErrorZ CResult_TxCompleteDecodeErrorZ_clone(const struct LDKCResult_TxCompleteDecodeErrorZ *NONNULL_PTR orig);
4905         public static native long CResult_TxCompleteDecodeErrorZ_clone(long orig);
4906         // struct LDKCResult_TxSignaturesDecodeErrorZ CResult_TxSignaturesDecodeErrorZ_ok(struct LDKTxSignatures o);
4907         public static native long CResult_TxSignaturesDecodeErrorZ_ok(long o);
4908         // struct LDKCResult_TxSignaturesDecodeErrorZ CResult_TxSignaturesDecodeErrorZ_err(struct LDKDecodeError e);
4909         public static native long CResult_TxSignaturesDecodeErrorZ_err(long e);
4910         // bool CResult_TxSignaturesDecodeErrorZ_is_ok(const struct LDKCResult_TxSignaturesDecodeErrorZ *NONNULL_PTR o);
4911         public static native boolean CResult_TxSignaturesDecodeErrorZ_is_ok(long o);
4912         // void CResult_TxSignaturesDecodeErrorZ_free(struct LDKCResult_TxSignaturesDecodeErrorZ _res);
4913         public static native void CResult_TxSignaturesDecodeErrorZ_free(long _res);
4914         // uint64_t CResult_TxSignaturesDecodeErrorZ_clone_ptr(LDKCResult_TxSignaturesDecodeErrorZ *NONNULL_PTR arg);
4915         public static native long CResult_TxSignaturesDecodeErrorZ_clone_ptr(long arg);
4916         // struct LDKCResult_TxSignaturesDecodeErrorZ CResult_TxSignaturesDecodeErrorZ_clone(const struct LDKCResult_TxSignaturesDecodeErrorZ *NONNULL_PTR orig);
4917         public static native long CResult_TxSignaturesDecodeErrorZ_clone(long orig);
4918         // struct LDKCResult_TxInitRbfDecodeErrorZ CResult_TxInitRbfDecodeErrorZ_ok(struct LDKTxInitRbf o);
4919         public static native long CResult_TxInitRbfDecodeErrorZ_ok(long o);
4920         // struct LDKCResult_TxInitRbfDecodeErrorZ CResult_TxInitRbfDecodeErrorZ_err(struct LDKDecodeError e);
4921         public static native long CResult_TxInitRbfDecodeErrorZ_err(long e);
4922         // bool CResult_TxInitRbfDecodeErrorZ_is_ok(const struct LDKCResult_TxInitRbfDecodeErrorZ *NONNULL_PTR o);
4923         public static native boolean CResult_TxInitRbfDecodeErrorZ_is_ok(long o);
4924         // void CResult_TxInitRbfDecodeErrorZ_free(struct LDKCResult_TxInitRbfDecodeErrorZ _res);
4925         public static native void CResult_TxInitRbfDecodeErrorZ_free(long _res);
4926         // uint64_t CResult_TxInitRbfDecodeErrorZ_clone_ptr(LDKCResult_TxInitRbfDecodeErrorZ *NONNULL_PTR arg);
4927         public static native long CResult_TxInitRbfDecodeErrorZ_clone_ptr(long arg);
4928         // struct LDKCResult_TxInitRbfDecodeErrorZ CResult_TxInitRbfDecodeErrorZ_clone(const struct LDKCResult_TxInitRbfDecodeErrorZ *NONNULL_PTR orig);
4929         public static native long CResult_TxInitRbfDecodeErrorZ_clone(long orig);
4930         // struct LDKCResult_TxAckRbfDecodeErrorZ CResult_TxAckRbfDecodeErrorZ_ok(struct LDKTxAckRbf o);
4931         public static native long CResult_TxAckRbfDecodeErrorZ_ok(long o);
4932         // struct LDKCResult_TxAckRbfDecodeErrorZ CResult_TxAckRbfDecodeErrorZ_err(struct LDKDecodeError e);
4933         public static native long CResult_TxAckRbfDecodeErrorZ_err(long e);
4934         // bool CResult_TxAckRbfDecodeErrorZ_is_ok(const struct LDKCResult_TxAckRbfDecodeErrorZ *NONNULL_PTR o);
4935         public static native boolean CResult_TxAckRbfDecodeErrorZ_is_ok(long o);
4936         // void CResult_TxAckRbfDecodeErrorZ_free(struct LDKCResult_TxAckRbfDecodeErrorZ _res);
4937         public static native void CResult_TxAckRbfDecodeErrorZ_free(long _res);
4938         // uint64_t CResult_TxAckRbfDecodeErrorZ_clone_ptr(LDKCResult_TxAckRbfDecodeErrorZ *NONNULL_PTR arg);
4939         public static native long CResult_TxAckRbfDecodeErrorZ_clone_ptr(long arg);
4940         // struct LDKCResult_TxAckRbfDecodeErrorZ CResult_TxAckRbfDecodeErrorZ_clone(const struct LDKCResult_TxAckRbfDecodeErrorZ *NONNULL_PTR orig);
4941         public static native long CResult_TxAckRbfDecodeErrorZ_clone(long orig);
4942         // struct LDKCResult_TxAbortDecodeErrorZ CResult_TxAbortDecodeErrorZ_ok(struct LDKTxAbort o);
4943         public static native long CResult_TxAbortDecodeErrorZ_ok(long o);
4944         // struct LDKCResult_TxAbortDecodeErrorZ CResult_TxAbortDecodeErrorZ_err(struct LDKDecodeError e);
4945         public static native long CResult_TxAbortDecodeErrorZ_err(long e);
4946         // bool CResult_TxAbortDecodeErrorZ_is_ok(const struct LDKCResult_TxAbortDecodeErrorZ *NONNULL_PTR o);
4947         public static native boolean CResult_TxAbortDecodeErrorZ_is_ok(long o);
4948         // void CResult_TxAbortDecodeErrorZ_free(struct LDKCResult_TxAbortDecodeErrorZ _res);
4949         public static native void CResult_TxAbortDecodeErrorZ_free(long _res);
4950         // uint64_t CResult_TxAbortDecodeErrorZ_clone_ptr(LDKCResult_TxAbortDecodeErrorZ *NONNULL_PTR arg);
4951         public static native long CResult_TxAbortDecodeErrorZ_clone_ptr(long arg);
4952         // struct LDKCResult_TxAbortDecodeErrorZ CResult_TxAbortDecodeErrorZ_clone(const struct LDKCResult_TxAbortDecodeErrorZ *NONNULL_PTR orig);
4953         public static native long CResult_TxAbortDecodeErrorZ_clone(long orig);
4954         // struct LDKCResult_AnnouncementSignaturesDecodeErrorZ CResult_AnnouncementSignaturesDecodeErrorZ_ok(struct LDKAnnouncementSignatures o);
4955         public static native long CResult_AnnouncementSignaturesDecodeErrorZ_ok(long o);
4956         // struct LDKCResult_AnnouncementSignaturesDecodeErrorZ CResult_AnnouncementSignaturesDecodeErrorZ_err(struct LDKDecodeError e);
4957         public static native long CResult_AnnouncementSignaturesDecodeErrorZ_err(long e);
4958         // bool CResult_AnnouncementSignaturesDecodeErrorZ_is_ok(const struct LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR o);
4959         public static native boolean CResult_AnnouncementSignaturesDecodeErrorZ_is_ok(long o);
4960         // void CResult_AnnouncementSignaturesDecodeErrorZ_free(struct LDKCResult_AnnouncementSignaturesDecodeErrorZ _res);
4961         public static native void CResult_AnnouncementSignaturesDecodeErrorZ_free(long _res);
4962         // uint64_t CResult_AnnouncementSignaturesDecodeErrorZ_clone_ptr(LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR arg);
4963         public static native long CResult_AnnouncementSignaturesDecodeErrorZ_clone_ptr(long arg);
4964         // struct LDKCResult_AnnouncementSignaturesDecodeErrorZ CResult_AnnouncementSignaturesDecodeErrorZ_clone(const struct LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR orig);
4965         public static native long CResult_AnnouncementSignaturesDecodeErrorZ_clone(long orig);
4966         // struct LDKCResult_ChannelReestablishDecodeErrorZ CResult_ChannelReestablishDecodeErrorZ_ok(struct LDKChannelReestablish o);
4967         public static native long CResult_ChannelReestablishDecodeErrorZ_ok(long o);
4968         // struct LDKCResult_ChannelReestablishDecodeErrorZ CResult_ChannelReestablishDecodeErrorZ_err(struct LDKDecodeError e);
4969         public static native long CResult_ChannelReestablishDecodeErrorZ_err(long e);
4970         // bool CResult_ChannelReestablishDecodeErrorZ_is_ok(const struct LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR o);
4971         public static native boolean CResult_ChannelReestablishDecodeErrorZ_is_ok(long o);
4972         // void CResult_ChannelReestablishDecodeErrorZ_free(struct LDKCResult_ChannelReestablishDecodeErrorZ _res);
4973         public static native void CResult_ChannelReestablishDecodeErrorZ_free(long _res);
4974         // uint64_t CResult_ChannelReestablishDecodeErrorZ_clone_ptr(LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR arg);
4975         public static native long CResult_ChannelReestablishDecodeErrorZ_clone_ptr(long arg);
4976         // struct LDKCResult_ChannelReestablishDecodeErrorZ CResult_ChannelReestablishDecodeErrorZ_clone(const struct LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR orig);
4977         public static native long CResult_ChannelReestablishDecodeErrorZ_clone(long orig);
4978         // struct LDKCResult_ClosingSignedDecodeErrorZ CResult_ClosingSignedDecodeErrorZ_ok(struct LDKClosingSigned o);
4979         public static native long CResult_ClosingSignedDecodeErrorZ_ok(long o);
4980         // struct LDKCResult_ClosingSignedDecodeErrorZ CResult_ClosingSignedDecodeErrorZ_err(struct LDKDecodeError e);
4981         public static native long CResult_ClosingSignedDecodeErrorZ_err(long e);
4982         // bool CResult_ClosingSignedDecodeErrorZ_is_ok(const struct LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR o);
4983         public static native boolean CResult_ClosingSignedDecodeErrorZ_is_ok(long o);
4984         // void CResult_ClosingSignedDecodeErrorZ_free(struct LDKCResult_ClosingSignedDecodeErrorZ _res);
4985         public static native void CResult_ClosingSignedDecodeErrorZ_free(long _res);
4986         // uint64_t CResult_ClosingSignedDecodeErrorZ_clone_ptr(LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR arg);
4987         public static native long CResult_ClosingSignedDecodeErrorZ_clone_ptr(long arg);
4988         // struct LDKCResult_ClosingSignedDecodeErrorZ CResult_ClosingSignedDecodeErrorZ_clone(const struct LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR orig);
4989         public static native long CResult_ClosingSignedDecodeErrorZ_clone(long orig);
4990         // struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ CResult_ClosingSignedFeeRangeDecodeErrorZ_ok(struct LDKClosingSignedFeeRange o);
4991         public static native long CResult_ClosingSignedFeeRangeDecodeErrorZ_ok(long o);
4992         // struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ CResult_ClosingSignedFeeRangeDecodeErrorZ_err(struct LDKDecodeError e);
4993         public static native long CResult_ClosingSignedFeeRangeDecodeErrorZ_err(long e);
4994         // bool CResult_ClosingSignedFeeRangeDecodeErrorZ_is_ok(const struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR o);
4995         public static native boolean CResult_ClosingSignedFeeRangeDecodeErrorZ_is_ok(long o);
4996         // void CResult_ClosingSignedFeeRangeDecodeErrorZ_free(struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ _res);
4997         public static native void CResult_ClosingSignedFeeRangeDecodeErrorZ_free(long _res);
4998         // uint64_t CResult_ClosingSignedFeeRangeDecodeErrorZ_clone_ptr(LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR arg);
4999         public static native long CResult_ClosingSignedFeeRangeDecodeErrorZ_clone_ptr(long arg);
5000         // struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ CResult_ClosingSignedFeeRangeDecodeErrorZ_clone(const struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR orig);
5001         public static native long CResult_ClosingSignedFeeRangeDecodeErrorZ_clone(long orig);
5002         // struct LDKCResult_CommitmentSignedDecodeErrorZ CResult_CommitmentSignedDecodeErrorZ_ok(struct LDKCommitmentSigned o);
5003         public static native long CResult_CommitmentSignedDecodeErrorZ_ok(long o);
5004         // struct LDKCResult_CommitmentSignedDecodeErrorZ CResult_CommitmentSignedDecodeErrorZ_err(struct LDKDecodeError e);
5005         public static native long CResult_CommitmentSignedDecodeErrorZ_err(long e);
5006         // bool CResult_CommitmentSignedDecodeErrorZ_is_ok(const struct LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR o);
5007         public static native boolean CResult_CommitmentSignedDecodeErrorZ_is_ok(long o);
5008         // void CResult_CommitmentSignedDecodeErrorZ_free(struct LDKCResult_CommitmentSignedDecodeErrorZ _res);
5009         public static native void CResult_CommitmentSignedDecodeErrorZ_free(long _res);
5010         // uint64_t CResult_CommitmentSignedDecodeErrorZ_clone_ptr(LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR arg);
5011         public static native long CResult_CommitmentSignedDecodeErrorZ_clone_ptr(long arg);
5012         // struct LDKCResult_CommitmentSignedDecodeErrorZ CResult_CommitmentSignedDecodeErrorZ_clone(const struct LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR orig);
5013         public static native long CResult_CommitmentSignedDecodeErrorZ_clone(long orig);
5014         // struct LDKCResult_FundingCreatedDecodeErrorZ CResult_FundingCreatedDecodeErrorZ_ok(struct LDKFundingCreated o);
5015         public static native long CResult_FundingCreatedDecodeErrorZ_ok(long o);
5016         // struct LDKCResult_FundingCreatedDecodeErrorZ CResult_FundingCreatedDecodeErrorZ_err(struct LDKDecodeError e);
5017         public static native long CResult_FundingCreatedDecodeErrorZ_err(long e);
5018         // bool CResult_FundingCreatedDecodeErrorZ_is_ok(const struct LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR o);
5019         public static native boolean CResult_FundingCreatedDecodeErrorZ_is_ok(long o);
5020         // void CResult_FundingCreatedDecodeErrorZ_free(struct LDKCResult_FundingCreatedDecodeErrorZ _res);
5021         public static native void CResult_FundingCreatedDecodeErrorZ_free(long _res);
5022         // uint64_t CResult_FundingCreatedDecodeErrorZ_clone_ptr(LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR arg);
5023         public static native long CResult_FundingCreatedDecodeErrorZ_clone_ptr(long arg);
5024         // struct LDKCResult_FundingCreatedDecodeErrorZ CResult_FundingCreatedDecodeErrorZ_clone(const struct LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR orig);
5025         public static native long CResult_FundingCreatedDecodeErrorZ_clone(long orig);
5026         // struct LDKCResult_FundingSignedDecodeErrorZ CResult_FundingSignedDecodeErrorZ_ok(struct LDKFundingSigned o);
5027         public static native long CResult_FundingSignedDecodeErrorZ_ok(long o);
5028         // struct LDKCResult_FundingSignedDecodeErrorZ CResult_FundingSignedDecodeErrorZ_err(struct LDKDecodeError e);
5029         public static native long CResult_FundingSignedDecodeErrorZ_err(long e);
5030         // bool CResult_FundingSignedDecodeErrorZ_is_ok(const struct LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR o);
5031         public static native boolean CResult_FundingSignedDecodeErrorZ_is_ok(long o);
5032         // void CResult_FundingSignedDecodeErrorZ_free(struct LDKCResult_FundingSignedDecodeErrorZ _res);
5033         public static native void CResult_FundingSignedDecodeErrorZ_free(long _res);
5034         // uint64_t CResult_FundingSignedDecodeErrorZ_clone_ptr(LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR arg);
5035         public static native long CResult_FundingSignedDecodeErrorZ_clone_ptr(long arg);
5036         // struct LDKCResult_FundingSignedDecodeErrorZ CResult_FundingSignedDecodeErrorZ_clone(const struct LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR orig);
5037         public static native long CResult_FundingSignedDecodeErrorZ_clone(long orig);
5038         // struct LDKCResult_ChannelReadyDecodeErrorZ CResult_ChannelReadyDecodeErrorZ_ok(struct LDKChannelReady o);
5039         public static native long CResult_ChannelReadyDecodeErrorZ_ok(long o);
5040         // struct LDKCResult_ChannelReadyDecodeErrorZ CResult_ChannelReadyDecodeErrorZ_err(struct LDKDecodeError e);
5041         public static native long CResult_ChannelReadyDecodeErrorZ_err(long e);
5042         // bool CResult_ChannelReadyDecodeErrorZ_is_ok(const struct LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR o);
5043         public static native boolean CResult_ChannelReadyDecodeErrorZ_is_ok(long o);
5044         // void CResult_ChannelReadyDecodeErrorZ_free(struct LDKCResult_ChannelReadyDecodeErrorZ _res);
5045         public static native void CResult_ChannelReadyDecodeErrorZ_free(long _res);
5046         // uint64_t CResult_ChannelReadyDecodeErrorZ_clone_ptr(LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR arg);
5047         public static native long CResult_ChannelReadyDecodeErrorZ_clone_ptr(long arg);
5048         // struct LDKCResult_ChannelReadyDecodeErrorZ CResult_ChannelReadyDecodeErrorZ_clone(const struct LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR orig);
5049         public static native long CResult_ChannelReadyDecodeErrorZ_clone(long orig);
5050         // struct LDKCResult_InitDecodeErrorZ CResult_InitDecodeErrorZ_ok(struct LDKInit o);
5051         public static native long CResult_InitDecodeErrorZ_ok(long o);
5052         // struct LDKCResult_InitDecodeErrorZ CResult_InitDecodeErrorZ_err(struct LDKDecodeError e);
5053         public static native long CResult_InitDecodeErrorZ_err(long e);
5054         // bool CResult_InitDecodeErrorZ_is_ok(const struct LDKCResult_InitDecodeErrorZ *NONNULL_PTR o);
5055         public static native boolean CResult_InitDecodeErrorZ_is_ok(long o);
5056         // void CResult_InitDecodeErrorZ_free(struct LDKCResult_InitDecodeErrorZ _res);
5057         public static native void CResult_InitDecodeErrorZ_free(long _res);
5058         // uint64_t CResult_InitDecodeErrorZ_clone_ptr(LDKCResult_InitDecodeErrorZ *NONNULL_PTR arg);
5059         public static native long CResult_InitDecodeErrorZ_clone_ptr(long arg);
5060         // struct LDKCResult_InitDecodeErrorZ CResult_InitDecodeErrorZ_clone(const struct LDKCResult_InitDecodeErrorZ *NONNULL_PTR orig);
5061         public static native long CResult_InitDecodeErrorZ_clone(long orig);
5062         // struct LDKCResult_OpenChannelDecodeErrorZ CResult_OpenChannelDecodeErrorZ_ok(struct LDKOpenChannel o);
5063         public static native long CResult_OpenChannelDecodeErrorZ_ok(long o);
5064         // struct LDKCResult_OpenChannelDecodeErrorZ CResult_OpenChannelDecodeErrorZ_err(struct LDKDecodeError e);
5065         public static native long CResult_OpenChannelDecodeErrorZ_err(long e);
5066         // bool CResult_OpenChannelDecodeErrorZ_is_ok(const struct LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR o);
5067         public static native boolean CResult_OpenChannelDecodeErrorZ_is_ok(long o);
5068         // void CResult_OpenChannelDecodeErrorZ_free(struct LDKCResult_OpenChannelDecodeErrorZ _res);
5069         public static native void CResult_OpenChannelDecodeErrorZ_free(long _res);
5070         // uint64_t CResult_OpenChannelDecodeErrorZ_clone_ptr(LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR arg);
5071         public static native long CResult_OpenChannelDecodeErrorZ_clone_ptr(long arg);
5072         // struct LDKCResult_OpenChannelDecodeErrorZ CResult_OpenChannelDecodeErrorZ_clone(const struct LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR orig);
5073         public static native long CResult_OpenChannelDecodeErrorZ_clone(long orig);
5074         // struct LDKCResult_OpenChannelV2DecodeErrorZ CResult_OpenChannelV2DecodeErrorZ_ok(struct LDKOpenChannelV2 o);
5075         public static native long CResult_OpenChannelV2DecodeErrorZ_ok(long o);
5076         // struct LDKCResult_OpenChannelV2DecodeErrorZ CResult_OpenChannelV2DecodeErrorZ_err(struct LDKDecodeError e);
5077         public static native long CResult_OpenChannelV2DecodeErrorZ_err(long e);
5078         // bool CResult_OpenChannelV2DecodeErrorZ_is_ok(const struct LDKCResult_OpenChannelV2DecodeErrorZ *NONNULL_PTR o);
5079         public static native boolean CResult_OpenChannelV2DecodeErrorZ_is_ok(long o);
5080         // void CResult_OpenChannelV2DecodeErrorZ_free(struct LDKCResult_OpenChannelV2DecodeErrorZ _res);
5081         public static native void CResult_OpenChannelV2DecodeErrorZ_free(long _res);
5082         // uint64_t CResult_OpenChannelV2DecodeErrorZ_clone_ptr(LDKCResult_OpenChannelV2DecodeErrorZ *NONNULL_PTR arg);
5083         public static native long CResult_OpenChannelV2DecodeErrorZ_clone_ptr(long arg);
5084         // struct LDKCResult_OpenChannelV2DecodeErrorZ CResult_OpenChannelV2DecodeErrorZ_clone(const struct LDKCResult_OpenChannelV2DecodeErrorZ *NONNULL_PTR orig);
5085         public static native long CResult_OpenChannelV2DecodeErrorZ_clone(long orig);
5086         // struct LDKCResult_RevokeAndACKDecodeErrorZ CResult_RevokeAndACKDecodeErrorZ_ok(struct LDKRevokeAndACK o);
5087         public static native long CResult_RevokeAndACKDecodeErrorZ_ok(long o);
5088         // struct LDKCResult_RevokeAndACKDecodeErrorZ CResult_RevokeAndACKDecodeErrorZ_err(struct LDKDecodeError e);
5089         public static native long CResult_RevokeAndACKDecodeErrorZ_err(long e);
5090         // bool CResult_RevokeAndACKDecodeErrorZ_is_ok(const struct LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR o);
5091         public static native boolean CResult_RevokeAndACKDecodeErrorZ_is_ok(long o);
5092         // void CResult_RevokeAndACKDecodeErrorZ_free(struct LDKCResult_RevokeAndACKDecodeErrorZ _res);
5093         public static native void CResult_RevokeAndACKDecodeErrorZ_free(long _res);
5094         // uint64_t CResult_RevokeAndACKDecodeErrorZ_clone_ptr(LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR arg);
5095         public static native long CResult_RevokeAndACKDecodeErrorZ_clone_ptr(long arg);
5096         // struct LDKCResult_RevokeAndACKDecodeErrorZ CResult_RevokeAndACKDecodeErrorZ_clone(const struct LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR orig);
5097         public static native long CResult_RevokeAndACKDecodeErrorZ_clone(long orig);
5098         // struct LDKCResult_ShutdownDecodeErrorZ CResult_ShutdownDecodeErrorZ_ok(struct LDKShutdown o);
5099         public static native long CResult_ShutdownDecodeErrorZ_ok(long o);
5100         // struct LDKCResult_ShutdownDecodeErrorZ CResult_ShutdownDecodeErrorZ_err(struct LDKDecodeError e);
5101         public static native long CResult_ShutdownDecodeErrorZ_err(long e);
5102         // bool CResult_ShutdownDecodeErrorZ_is_ok(const struct LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR o);
5103         public static native boolean CResult_ShutdownDecodeErrorZ_is_ok(long o);
5104         // void CResult_ShutdownDecodeErrorZ_free(struct LDKCResult_ShutdownDecodeErrorZ _res);
5105         public static native void CResult_ShutdownDecodeErrorZ_free(long _res);
5106         // uint64_t CResult_ShutdownDecodeErrorZ_clone_ptr(LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR arg);
5107         public static native long CResult_ShutdownDecodeErrorZ_clone_ptr(long arg);
5108         // struct LDKCResult_ShutdownDecodeErrorZ CResult_ShutdownDecodeErrorZ_clone(const struct LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR orig);
5109         public static native long CResult_ShutdownDecodeErrorZ_clone(long orig);
5110         // struct LDKCResult_UpdateFailHTLCDecodeErrorZ CResult_UpdateFailHTLCDecodeErrorZ_ok(struct LDKUpdateFailHTLC o);
5111         public static native long CResult_UpdateFailHTLCDecodeErrorZ_ok(long o);
5112         // struct LDKCResult_UpdateFailHTLCDecodeErrorZ CResult_UpdateFailHTLCDecodeErrorZ_err(struct LDKDecodeError e);
5113         public static native long CResult_UpdateFailHTLCDecodeErrorZ_err(long e);
5114         // bool CResult_UpdateFailHTLCDecodeErrorZ_is_ok(const struct LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR o);
5115         public static native boolean CResult_UpdateFailHTLCDecodeErrorZ_is_ok(long o);
5116         // void CResult_UpdateFailHTLCDecodeErrorZ_free(struct LDKCResult_UpdateFailHTLCDecodeErrorZ _res);
5117         public static native void CResult_UpdateFailHTLCDecodeErrorZ_free(long _res);
5118         // uint64_t CResult_UpdateFailHTLCDecodeErrorZ_clone_ptr(LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR arg);
5119         public static native long CResult_UpdateFailHTLCDecodeErrorZ_clone_ptr(long arg);
5120         // struct LDKCResult_UpdateFailHTLCDecodeErrorZ CResult_UpdateFailHTLCDecodeErrorZ_clone(const struct LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR orig);
5121         public static native long CResult_UpdateFailHTLCDecodeErrorZ_clone(long orig);
5122         // struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ CResult_UpdateFailMalformedHTLCDecodeErrorZ_ok(struct LDKUpdateFailMalformedHTLC o);
5123         public static native long CResult_UpdateFailMalformedHTLCDecodeErrorZ_ok(long o);
5124         // struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ CResult_UpdateFailMalformedHTLCDecodeErrorZ_err(struct LDKDecodeError e);
5125         public static native long CResult_UpdateFailMalformedHTLCDecodeErrorZ_err(long e);
5126         // bool CResult_UpdateFailMalformedHTLCDecodeErrorZ_is_ok(const struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR o);
5127         public static native boolean CResult_UpdateFailMalformedHTLCDecodeErrorZ_is_ok(long o);
5128         // void CResult_UpdateFailMalformedHTLCDecodeErrorZ_free(struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ _res);
5129         public static native void CResult_UpdateFailMalformedHTLCDecodeErrorZ_free(long _res);
5130         // uint64_t CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone_ptr(LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR arg);
5131         public static native long CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone_ptr(long arg);
5132         // struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone(const struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR orig);
5133         public static native long CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone(long orig);
5134         // struct LDKCResult_UpdateFeeDecodeErrorZ CResult_UpdateFeeDecodeErrorZ_ok(struct LDKUpdateFee o);
5135         public static native long CResult_UpdateFeeDecodeErrorZ_ok(long o);
5136         // struct LDKCResult_UpdateFeeDecodeErrorZ CResult_UpdateFeeDecodeErrorZ_err(struct LDKDecodeError e);
5137         public static native long CResult_UpdateFeeDecodeErrorZ_err(long e);
5138         // bool CResult_UpdateFeeDecodeErrorZ_is_ok(const struct LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR o);
5139         public static native boolean CResult_UpdateFeeDecodeErrorZ_is_ok(long o);
5140         // void CResult_UpdateFeeDecodeErrorZ_free(struct LDKCResult_UpdateFeeDecodeErrorZ _res);
5141         public static native void CResult_UpdateFeeDecodeErrorZ_free(long _res);
5142         // uint64_t CResult_UpdateFeeDecodeErrorZ_clone_ptr(LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR arg);
5143         public static native long CResult_UpdateFeeDecodeErrorZ_clone_ptr(long arg);
5144         // struct LDKCResult_UpdateFeeDecodeErrorZ CResult_UpdateFeeDecodeErrorZ_clone(const struct LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR orig);
5145         public static native long CResult_UpdateFeeDecodeErrorZ_clone(long orig);
5146         // struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ CResult_UpdateFulfillHTLCDecodeErrorZ_ok(struct LDKUpdateFulfillHTLC o);
5147         public static native long CResult_UpdateFulfillHTLCDecodeErrorZ_ok(long o);
5148         // struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ CResult_UpdateFulfillHTLCDecodeErrorZ_err(struct LDKDecodeError e);
5149         public static native long CResult_UpdateFulfillHTLCDecodeErrorZ_err(long e);
5150         // bool CResult_UpdateFulfillHTLCDecodeErrorZ_is_ok(const struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR o);
5151         public static native boolean CResult_UpdateFulfillHTLCDecodeErrorZ_is_ok(long o);
5152         // void CResult_UpdateFulfillHTLCDecodeErrorZ_free(struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ _res);
5153         public static native void CResult_UpdateFulfillHTLCDecodeErrorZ_free(long _res);
5154         // uint64_t CResult_UpdateFulfillHTLCDecodeErrorZ_clone_ptr(LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR arg);
5155         public static native long CResult_UpdateFulfillHTLCDecodeErrorZ_clone_ptr(long arg);
5156         // struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ CResult_UpdateFulfillHTLCDecodeErrorZ_clone(const struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR orig);
5157         public static native long CResult_UpdateFulfillHTLCDecodeErrorZ_clone(long orig);
5158         // struct LDKCResult_UpdateAddHTLCDecodeErrorZ CResult_UpdateAddHTLCDecodeErrorZ_ok(struct LDKUpdateAddHTLC o);
5159         public static native long CResult_UpdateAddHTLCDecodeErrorZ_ok(long o);
5160         // struct LDKCResult_UpdateAddHTLCDecodeErrorZ CResult_UpdateAddHTLCDecodeErrorZ_err(struct LDKDecodeError e);
5161         public static native long CResult_UpdateAddHTLCDecodeErrorZ_err(long e);
5162         // bool CResult_UpdateAddHTLCDecodeErrorZ_is_ok(const struct LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR o);
5163         public static native boolean CResult_UpdateAddHTLCDecodeErrorZ_is_ok(long o);
5164         // void CResult_UpdateAddHTLCDecodeErrorZ_free(struct LDKCResult_UpdateAddHTLCDecodeErrorZ _res);
5165         public static native void CResult_UpdateAddHTLCDecodeErrorZ_free(long _res);
5166         // uint64_t CResult_UpdateAddHTLCDecodeErrorZ_clone_ptr(LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR arg);
5167         public static native long CResult_UpdateAddHTLCDecodeErrorZ_clone_ptr(long arg);
5168         // struct LDKCResult_UpdateAddHTLCDecodeErrorZ CResult_UpdateAddHTLCDecodeErrorZ_clone(const struct LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR orig);
5169         public static native long CResult_UpdateAddHTLCDecodeErrorZ_clone(long orig);
5170         // struct LDKCResult_OnionMessageDecodeErrorZ CResult_OnionMessageDecodeErrorZ_ok(struct LDKOnionMessage o);
5171         public static native long CResult_OnionMessageDecodeErrorZ_ok(long o);
5172         // struct LDKCResult_OnionMessageDecodeErrorZ CResult_OnionMessageDecodeErrorZ_err(struct LDKDecodeError e);
5173         public static native long CResult_OnionMessageDecodeErrorZ_err(long e);
5174         // bool CResult_OnionMessageDecodeErrorZ_is_ok(const struct LDKCResult_OnionMessageDecodeErrorZ *NONNULL_PTR o);
5175         public static native boolean CResult_OnionMessageDecodeErrorZ_is_ok(long o);
5176         // void CResult_OnionMessageDecodeErrorZ_free(struct LDKCResult_OnionMessageDecodeErrorZ _res);
5177         public static native void CResult_OnionMessageDecodeErrorZ_free(long _res);
5178         // uint64_t CResult_OnionMessageDecodeErrorZ_clone_ptr(LDKCResult_OnionMessageDecodeErrorZ *NONNULL_PTR arg);
5179         public static native long CResult_OnionMessageDecodeErrorZ_clone_ptr(long arg);
5180         // struct LDKCResult_OnionMessageDecodeErrorZ CResult_OnionMessageDecodeErrorZ_clone(const struct LDKCResult_OnionMessageDecodeErrorZ *NONNULL_PTR orig);
5181         public static native long CResult_OnionMessageDecodeErrorZ_clone(long orig);
5182         // struct LDKCResult_PingDecodeErrorZ CResult_PingDecodeErrorZ_ok(struct LDKPing o);
5183         public static native long CResult_PingDecodeErrorZ_ok(long o);
5184         // struct LDKCResult_PingDecodeErrorZ CResult_PingDecodeErrorZ_err(struct LDKDecodeError e);
5185         public static native long CResult_PingDecodeErrorZ_err(long e);
5186         // bool CResult_PingDecodeErrorZ_is_ok(const struct LDKCResult_PingDecodeErrorZ *NONNULL_PTR o);
5187         public static native boolean CResult_PingDecodeErrorZ_is_ok(long o);
5188         // void CResult_PingDecodeErrorZ_free(struct LDKCResult_PingDecodeErrorZ _res);
5189         public static native void CResult_PingDecodeErrorZ_free(long _res);
5190         // uint64_t CResult_PingDecodeErrorZ_clone_ptr(LDKCResult_PingDecodeErrorZ *NONNULL_PTR arg);
5191         public static native long CResult_PingDecodeErrorZ_clone_ptr(long arg);
5192         // struct LDKCResult_PingDecodeErrorZ CResult_PingDecodeErrorZ_clone(const struct LDKCResult_PingDecodeErrorZ *NONNULL_PTR orig);
5193         public static native long CResult_PingDecodeErrorZ_clone(long orig);
5194         // struct LDKCResult_PongDecodeErrorZ CResult_PongDecodeErrorZ_ok(struct LDKPong o);
5195         public static native long CResult_PongDecodeErrorZ_ok(long o);
5196         // struct LDKCResult_PongDecodeErrorZ CResult_PongDecodeErrorZ_err(struct LDKDecodeError e);
5197         public static native long CResult_PongDecodeErrorZ_err(long e);
5198         // bool CResult_PongDecodeErrorZ_is_ok(const struct LDKCResult_PongDecodeErrorZ *NONNULL_PTR o);
5199         public static native boolean CResult_PongDecodeErrorZ_is_ok(long o);
5200         // void CResult_PongDecodeErrorZ_free(struct LDKCResult_PongDecodeErrorZ _res);
5201         public static native void CResult_PongDecodeErrorZ_free(long _res);
5202         // uint64_t CResult_PongDecodeErrorZ_clone_ptr(LDKCResult_PongDecodeErrorZ *NONNULL_PTR arg);
5203         public static native long CResult_PongDecodeErrorZ_clone_ptr(long arg);
5204         // struct LDKCResult_PongDecodeErrorZ CResult_PongDecodeErrorZ_clone(const struct LDKCResult_PongDecodeErrorZ *NONNULL_PTR orig);
5205         public static native long CResult_PongDecodeErrorZ_clone(long orig);
5206         // struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ CResult_UnsignedChannelAnnouncementDecodeErrorZ_ok(struct LDKUnsignedChannelAnnouncement o);
5207         public static native long CResult_UnsignedChannelAnnouncementDecodeErrorZ_ok(long o);
5208         // struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ CResult_UnsignedChannelAnnouncementDecodeErrorZ_err(struct LDKDecodeError e);
5209         public static native long CResult_UnsignedChannelAnnouncementDecodeErrorZ_err(long e);
5210         // bool CResult_UnsignedChannelAnnouncementDecodeErrorZ_is_ok(const struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR o);
5211         public static native boolean CResult_UnsignedChannelAnnouncementDecodeErrorZ_is_ok(long o);
5212         // void CResult_UnsignedChannelAnnouncementDecodeErrorZ_free(struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ _res);
5213         public static native void CResult_UnsignedChannelAnnouncementDecodeErrorZ_free(long _res);
5214         // uint64_t CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone_ptr(LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR arg);
5215         public static native long CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone_ptr(long arg);
5216         // struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone(const struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR orig);
5217         public static native long CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone(long orig);
5218         // struct LDKCResult_ChannelAnnouncementDecodeErrorZ CResult_ChannelAnnouncementDecodeErrorZ_ok(struct LDKChannelAnnouncement o);
5219         public static native long CResult_ChannelAnnouncementDecodeErrorZ_ok(long o);
5220         // struct LDKCResult_ChannelAnnouncementDecodeErrorZ CResult_ChannelAnnouncementDecodeErrorZ_err(struct LDKDecodeError e);
5221         public static native long CResult_ChannelAnnouncementDecodeErrorZ_err(long e);
5222         // bool CResult_ChannelAnnouncementDecodeErrorZ_is_ok(const struct LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR o);
5223         public static native boolean CResult_ChannelAnnouncementDecodeErrorZ_is_ok(long o);
5224         // void CResult_ChannelAnnouncementDecodeErrorZ_free(struct LDKCResult_ChannelAnnouncementDecodeErrorZ _res);
5225         public static native void CResult_ChannelAnnouncementDecodeErrorZ_free(long _res);
5226         // uint64_t CResult_ChannelAnnouncementDecodeErrorZ_clone_ptr(LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR arg);
5227         public static native long CResult_ChannelAnnouncementDecodeErrorZ_clone_ptr(long arg);
5228         // struct LDKCResult_ChannelAnnouncementDecodeErrorZ CResult_ChannelAnnouncementDecodeErrorZ_clone(const struct LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR orig);
5229         public static native long CResult_ChannelAnnouncementDecodeErrorZ_clone(long orig);
5230         // struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ CResult_UnsignedChannelUpdateDecodeErrorZ_ok(struct LDKUnsignedChannelUpdate o);
5231         public static native long CResult_UnsignedChannelUpdateDecodeErrorZ_ok(long o);
5232         // struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ CResult_UnsignedChannelUpdateDecodeErrorZ_err(struct LDKDecodeError e);
5233         public static native long CResult_UnsignedChannelUpdateDecodeErrorZ_err(long e);
5234         // bool CResult_UnsignedChannelUpdateDecodeErrorZ_is_ok(const struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR o);
5235         public static native boolean CResult_UnsignedChannelUpdateDecodeErrorZ_is_ok(long o);
5236         // void CResult_UnsignedChannelUpdateDecodeErrorZ_free(struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ _res);
5237         public static native void CResult_UnsignedChannelUpdateDecodeErrorZ_free(long _res);
5238         // uint64_t CResult_UnsignedChannelUpdateDecodeErrorZ_clone_ptr(LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR arg);
5239         public static native long CResult_UnsignedChannelUpdateDecodeErrorZ_clone_ptr(long arg);
5240         // struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ CResult_UnsignedChannelUpdateDecodeErrorZ_clone(const struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR orig);
5241         public static native long CResult_UnsignedChannelUpdateDecodeErrorZ_clone(long orig);
5242         // struct LDKCResult_ChannelUpdateDecodeErrorZ CResult_ChannelUpdateDecodeErrorZ_ok(struct LDKChannelUpdate o);
5243         public static native long CResult_ChannelUpdateDecodeErrorZ_ok(long o);
5244         // struct LDKCResult_ChannelUpdateDecodeErrorZ CResult_ChannelUpdateDecodeErrorZ_err(struct LDKDecodeError e);
5245         public static native long CResult_ChannelUpdateDecodeErrorZ_err(long e);
5246         // bool CResult_ChannelUpdateDecodeErrorZ_is_ok(const struct LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR o);
5247         public static native boolean CResult_ChannelUpdateDecodeErrorZ_is_ok(long o);
5248         // void CResult_ChannelUpdateDecodeErrorZ_free(struct LDKCResult_ChannelUpdateDecodeErrorZ _res);
5249         public static native void CResult_ChannelUpdateDecodeErrorZ_free(long _res);
5250         // uint64_t CResult_ChannelUpdateDecodeErrorZ_clone_ptr(LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR arg);
5251         public static native long CResult_ChannelUpdateDecodeErrorZ_clone_ptr(long arg);
5252         // struct LDKCResult_ChannelUpdateDecodeErrorZ CResult_ChannelUpdateDecodeErrorZ_clone(const struct LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR orig);
5253         public static native long CResult_ChannelUpdateDecodeErrorZ_clone(long orig);
5254         // struct LDKCResult_ErrorMessageDecodeErrorZ CResult_ErrorMessageDecodeErrorZ_ok(struct LDKErrorMessage o);
5255         public static native long CResult_ErrorMessageDecodeErrorZ_ok(long o);
5256         // struct LDKCResult_ErrorMessageDecodeErrorZ CResult_ErrorMessageDecodeErrorZ_err(struct LDKDecodeError e);
5257         public static native long CResult_ErrorMessageDecodeErrorZ_err(long e);
5258         // bool CResult_ErrorMessageDecodeErrorZ_is_ok(const struct LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR o);
5259         public static native boolean CResult_ErrorMessageDecodeErrorZ_is_ok(long o);
5260         // void CResult_ErrorMessageDecodeErrorZ_free(struct LDKCResult_ErrorMessageDecodeErrorZ _res);
5261         public static native void CResult_ErrorMessageDecodeErrorZ_free(long _res);
5262         // uint64_t CResult_ErrorMessageDecodeErrorZ_clone_ptr(LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR arg);
5263         public static native long CResult_ErrorMessageDecodeErrorZ_clone_ptr(long arg);
5264         // struct LDKCResult_ErrorMessageDecodeErrorZ CResult_ErrorMessageDecodeErrorZ_clone(const struct LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR orig);
5265         public static native long CResult_ErrorMessageDecodeErrorZ_clone(long orig);
5266         // struct LDKCResult_WarningMessageDecodeErrorZ CResult_WarningMessageDecodeErrorZ_ok(struct LDKWarningMessage o);
5267         public static native long CResult_WarningMessageDecodeErrorZ_ok(long o);
5268         // struct LDKCResult_WarningMessageDecodeErrorZ CResult_WarningMessageDecodeErrorZ_err(struct LDKDecodeError e);
5269         public static native long CResult_WarningMessageDecodeErrorZ_err(long e);
5270         // bool CResult_WarningMessageDecodeErrorZ_is_ok(const struct LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR o);
5271         public static native boolean CResult_WarningMessageDecodeErrorZ_is_ok(long o);
5272         // void CResult_WarningMessageDecodeErrorZ_free(struct LDKCResult_WarningMessageDecodeErrorZ _res);
5273         public static native void CResult_WarningMessageDecodeErrorZ_free(long _res);
5274         // uint64_t CResult_WarningMessageDecodeErrorZ_clone_ptr(LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR arg);
5275         public static native long CResult_WarningMessageDecodeErrorZ_clone_ptr(long arg);
5276         // struct LDKCResult_WarningMessageDecodeErrorZ CResult_WarningMessageDecodeErrorZ_clone(const struct LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR orig);
5277         public static native long CResult_WarningMessageDecodeErrorZ_clone(long orig);
5278         // struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ CResult_UnsignedNodeAnnouncementDecodeErrorZ_ok(struct LDKUnsignedNodeAnnouncement o);
5279         public static native long CResult_UnsignedNodeAnnouncementDecodeErrorZ_ok(long o);
5280         // struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ CResult_UnsignedNodeAnnouncementDecodeErrorZ_err(struct LDKDecodeError e);
5281         public static native long CResult_UnsignedNodeAnnouncementDecodeErrorZ_err(long e);
5282         // bool CResult_UnsignedNodeAnnouncementDecodeErrorZ_is_ok(const struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR o);
5283         public static native boolean CResult_UnsignedNodeAnnouncementDecodeErrorZ_is_ok(long o);
5284         // void CResult_UnsignedNodeAnnouncementDecodeErrorZ_free(struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ _res);
5285         public static native void CResult_UnsignedNodeAnnouncementDecodeErrorZ_free(long _res);
5286         // uint64_t CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone_ptr(LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR arg);
5287         public static native long CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone_ptr(long arg);
5288         // struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone(const struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR orig);
5289         public static native long CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone(long orig);
5290         // struct LDKCResult_NodeAnnouncementDecodeErrorZ CResult_NodeAnnouncementDecodeErrorZ_ok(struct LDKNodeAnnouncement o);
5291         public static native long CResult_NodeAnnouncementDecodeErrorZ_ok(long o);
5292         // struct LDKCResult_NodeAnnouncementDecodeErrorZ CResult_NodeAnnouncementDecodeErrorZ_err(struct LDKDecodeError e);
5293         public static native long CResult_NodeAnnouncementDecodeErrorZ_err(long e);
5294         // bool CResult_NodeAnnouncementDecodeErrorZ_is_ok(const struct LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR o);
5295         public static native boolean CResult_NodeAnnouncementDecodeErrorZ_is_ok(long o);
5296         // void CResult_NodeAnnouncementDecodeErrorZ_free(struct LDKCResult_NodeAnnouncementDecodeErrorZ _res);
5297         public static native void CResult_NodeAnnouncementDecodeErrorZ_free(long _res);
5298         // uint64_t CResult_NodeAnnouncementDecodeErrorZ_clone_ptr(LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR arg);
5299         public static native long CResult_NodeAnnouncementDecodeErrorZ_clone_ptr(long arg);
5300         // struct LDKCResult_NodeAnnouncementDecodeErrorZ CResult_NodeAnnouncementDecodeErrorZ_clone(const struct LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR orig);
5301         public static native long CResult_NodeAnnouncementDecodeErrorZ_clone(long orig);
5302         // struct LDKCResult_QueryShortChannelIdsDecodeErrorZ CResult_QueryShortChannelIdsDecodeErrorZ_ok(struct LDKQueryShortChannelIds o);
5303         public static native long CResult_QueryShortChannelIdsDecodeErrorZ_ok(long o);
5304         // struct LDKCResult_QueryShortChannelIdsDecodeErrorZ CResult_QueryShortChannelIdsDecodeErrorZ_err(struct LDKDecodeError e);
5305         public static native long CResult_QueryShortChannelIdsDecodeErrorZ_err(long e);
5306         // bool CResult_QueryShortChannelIdsDecodeErrorZ_is_ok(const struct LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR o);
5307         public static native boolean CResult_QueryShortChannelIdsDecodeErrorZ_is_ok(long o);
5308         // void CResult_QueryShortChannelIdsDecodeErrorZ_free(struct LDKCResult_QueryShortChannelIdsDecodeErrorZ _res);
5309         public static native void CResult_QueryShortChannelIdsDecodeErrorZ_free(long _res);
5310         // uint64_t CResult_QueryShortChannelIdsDecodeErrorZ_clone_ptr(LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR arg);
5311         public static native long CResult_QueryShortChannelIdsDecodeErrorZ_clone_ptr(long arg);
5312         // struct LDKCResult_QueryShortChannelIdsDecodeErrorZ CResult_QueryShortChannelIdsDecodeErrorZ_clone(const struct LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR orig);
5313         public static native long CResult_QueryShortChannelIdsDecodeErrorZ_clone(long orig);
5314         // struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ CResult_ReplyShortChannelIdsEndDecodeErrorZ_ok(struct LDKReplyShortChannelIdsEnd o);
5315         public static native long CResult_ReplyShortChannelIdsEndDecodeErrorZ_ok(long o);
5316         // struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ CResult_ReplyShortChannelIdsEndDecodeErrorZ_err(struct LDKDecodeError e);
5317         public static native long CResult_ReplyShortChannelIdsEndDecodeErrorZ_err(long e);
5318         // bool CResult_ReplyShortChannelIdsEndDecodeErrorZ_is_ok(const struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR o);
5319         public static native boolean CResult_ReplyShortChannelIdsEndDecodeErrorZ_is_ok(long o);
5320         // void CResult_ReplyShortChannelIdsEndDecodeErrorZ_free(struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ _res);
5321         public static native void CResult_ReplyShortChannelIdsEndDecodeErrorZ_free(long _res);
5322         // uint64_t CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone_ptr(LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR arg);
5323         public static native long CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone_ptr(long arg);
5324         // struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone(const struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR orig);
5325         public static native long CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone(long orig);
5326         // struct LDKCResult_QueryChannelRangeDecodeErrorZ CResult_QueryChannelRangeDecodeErrorZ_ok(struct LDKQueryChannelRange o);
5327         public static native long CResult_QueryChannelRangeDecodeErrorZ_ok(long o);
5328         // struct LDKCResult_QueryChannelRangeDecodeErrorZ CResult_QueryChannelRangeDecodeErrorZ_err(struct LDKDecodeError e);
5329         public static native long CResult_QueryChannelRangeDecodeErrorZ_err(long e);
5330         // bool CResult_QueryChannelRangeDecodeErrorZ_is_ok(const struct LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR o);
5331         public static native boolean CResult_QueryChannelRangeDecodeErrorZ_is_ok(long o);
5332         // void CResult_QueryChannelRangeDecodeErrorZ_free(struct LDKCResult_QueryChannelRangeDecodeErrorZ _res);
5333         public static native void CResult_QueryChannelRangeDecodeErrorZ_free(long _res);
5334         // uint64_t CResult_QueryChannelRangeDecodeErrorZ_clone_ptr(LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR arg);
5335         public static native long CResult_QueryChannelRangeDecodeErrorZ_clone_ptr(long arg);
5336         // struct LDKCResult_QueryChannelRangeDecodeErrorZ CResult_QueryChannelRangeDecodeErrorZ_clone(const struct LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR orig);
5337         public static native long CResult_QueryChannelRangeDecodeErrorZ_clone(long orig);
5338         // struct LDKCResult_ReplyChannelRangeDecodeErrorZ CResult_ReplyChannelRangeDecodeErrorZ_ok(struct LDKReplyChannelRange o);
5339         public static native long CResult_ReplyChannelRangeDecodeErrorZ_ok(long o);
5340         // struct LDKCResult_ReplyChannelRangeDecodeErrorZ CResult_ReplyChannelRangeDecodeErrorZ_err(struct LDKDecodeError e);
5341         public static native long CResult_ReplyChannelRangeDecodeErrorZ_err(long e);
5342         // bool CResult_ReplyChannelRangeDecodeErrorZ_is_ok(const struct LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR o);
5343         public static native boolean CResult_ReplyChannelRangeDecodeErrorZ_is_ok(long o);
5344         // void CResult_ReplyChannelRangeDecodeErrorZ_free(struct LDKCResult_ReplyChannelRangeDecodeErrorZ _res);
5345         public static native void CResult_ReplyChannelRangeDecodeErrorZ_free(long _res);
5346         // uint64_t CResult_ReplyChannelRangeDecodeErrorZ_clone_ptr(LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR arg);
5347         public static native long CResult_ReplyChannelRangeDecodeErrorZ_clone_ptr(long arg);
5348         // struct LDKCResult_ReplyChannelRangeDecodeErrorZ CResult_ReplyChannelRangeDecodeErrorZ_clone(const struct LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR orig);
5349         public static native long CResult_ReplyChannelRangeDecodeErrorZ_clone(long orig);
5350         // struct LDKCResult_GossipTimestampFilterDecodeErrorZ CResult_GossipTimestampFilterDecodeErrorZ_ok(struct LDKGossipTimestampFilter o);
5351         public static native long CResult_GossipTimestampFilterDecodeErrorZ_ok(long o);
5352         // struct LDKCResult_GossipTimestampFilterDecodeErrorZ CResult_GossipTimestampFilterDecodeErrorZ_err(struct LDKDecodeError e);
5353         public static native long CResult_GossipTimestampFilterDecodeErrorZ_err(long e);
5354         // bool CResult_GossipTimestampFilterDecodeErrorZ_is_ok(const struct LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR o);
5355         public static native boolean CResult_GossipTimestampFilterDecodeErrorZ_is_ok(long o);
5356         // void CResult_GossipTimestampFilterDecodeErrorZ_free(struct LDKCResult_GossipTimestampFilterDecodeErrorZ _res);
5357         public static native void CResult_GossipTimestampFilterDecodeErrorZ_free(long _res);
5358         // uint64_t CResult_GossipTimestampFilterDecodeErrorZ_clone_ptr(LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR arg);
5359         public static native long CResult_GossipTimestampFilterDecodeErrorZ_clone_ptr(long arg);
5360         // struct LDKCResult_GossipTimestampFilterDecodeErrorZ CResult_GossipTimestampFilterDecodeErrorZ_clone(const struct LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR orig);
5361         public static native long CResult_GossipTimestampFilterDecodeErrorZ_clone(long orig);
5362         // void CVec_PhantomRouteHintsZ_free(struct LDKCVec_PhantomRouteHintsZ _res);
5363         public static native void CVec_PhantomRouteHintsZ_free(long[] _res);
5364         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ CResult_Bolt11InvoiceSignOrCreationErrorZ_ok(struct LDKBolt11Invoice o);
5365         public static native long CResult_Bolt11InvoiceSignOrCreationErrorZ_ok(long o);
5366         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ CResult_Bolt11InvoiceSignOrCreationErrorZ_err(struct LDKSignOrCreationError e);
5367         public static native long CResult_Bolt11InvoiceSignOrCreationErrorZ_err(long e);
5368         // bool CResult_Bolt11InvoiceSignOrCreationErrorZ_is_ok(const struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ *NONNULL_PTR o);
5369         public static native boolean CResult_Bolt11InvoiceSignOrCreationErrorZ_is_ok(long o);
5370         // void CResult_Bolt11InvoiceSignOrCreationErrorZ_free(struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ _res);
5371         public static native void CResult_Bolt11InvoiceSignOrCreationErrorZ_free(long _res);
5372         // uint64_t CResult_Bolt11InvoiceSignOrCreationErrorZ_clone_ptr(LDKCResult_Bolt11InvoiceSignOrCreationErrorZ *NONNULL_PTR arg);
5373         public static native long CResult_Bolt11InvoiceSignOrCreationErrorZ_clone_ptr(long arg);
5374         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ CResult_Bolt11InvoiceSignOrCreationErrorZ_clone(const struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ *NONNULL_PTR orig);
5375         public static native long CResult_Bolt11InvoiceSignOrCreationErrorZ_clone(long orig);
5376         // void CVec_FutureZ_free(struct LDKCVec_FutureZ _res);
5377         public static native void CVec_FutureZ_free(long[] _res);
5378         // struct LDKCResult_OffersMessageDecodeErrorZ CResult_OffersMessageDecodeErrorZ_ok(struct LDKOffersMessage o);
5379         public static native long CResult_OffersMessageDecodeErrorZ_ok(long o);
5380         // struct LDKCResult_OffersMessageDecodeErrorZ CResult_OffersMessageDecodeErrorZ_err(struct LDKDecodeError e);
5381         public static native long CResult_OffersMessageDecodeErrorZ_err(long e);
5382         // bool CResult_OffersMessageDecodeErrorZ_is_ok(const struct LDKCResult_OffersMessageDecodeErrorZ *NONNULL_PTR o);
5383         public static native boolean CResult_OffersMessageDecodeErrorZ_is_ok(long o);
5384         // void CResult_OffersMessageDecodeErrorZ_free(struct LDKCResult_OffersMessageDecodeErrorZ _res);
5385         public static native void CResult_OffersMessageDecodeErrorZ_free(long _res);
5386         // uint64_t CResult_OffersMessageDecodeErrorZ_clone_ptr(LDKCResult_OffersMessageDecodeErrorZ *NONNULL_PTR arg);
5387         public static native long CResult_OffersMessageDecodeErrorZ_clone_ptr(long arg);
5388         // struct LDKCResult_OffersMessageDecodeErrorZ CResult_OffersMessageDecodeErrorZ_clone(const struct LDKCResult_OffersMessageDecodeErrorZ *NONNULL_PTR orig);
5389         public static native long CResult_OffersMessageDecodeErrorZ_clone(long orig);
5390         // struct LDKCOption_HTLCClaimZ COption_HTLCClaimZ_some(enum LDKHTLCClaim o);
5391         public static native long COption_HTLCClaimZ_some(HTLCClaim o);
5392         // struct LDKCOption_HTLCClaimZ COption_HTLCClaimZ_none(void);
5393         public static native long COption_HTLCClaimZ_none();
5394         // void COption_HTLCClaimZ_free(struct LDKCOption_HTLCClaimZ _res);
5395         public static native void COption_HTLCClaimZ_free(long _res);
5396         // struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ CResult_CounterpartyCommitmentSecretsDecodeErrorZ_ok(struct LDKCounterpartyCommitmentSecrets o);
5397         public static native long CResult_CounterpartyCommitmentSecretsDecodeErrorZ_ok(long o);
5398         // struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ CResult_CounterpartyCommitmentSecretsDecodeErrorZ_err(struct LDKDecodeError e);
5399         public static native long CResult_CounterpartyCommitmentSecretsDecodeErrorZ_err(long e);
5400         // bool CResult_CounterpartyCommitmentSecretsDecodeErrorZ_is_ok(const struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR o);
5401         public static native boolean CResult_CounterpartyCommitmentSecretsDecodeErrorZ_is_ok(long o);
5402         // void CResult_CounterpartyCommitmentSecretsDecodeErrorZ_free(struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ _res);
5403         public static native void CResult_CounterpartyCommitmentSecretsDecodeErrorZ_free(long _res);
5404         // uint64_t CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone_ptr(LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR arg);
5405         public static native long CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone_ptr(long arg);
5406         // struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone(const struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR orig);
5407         public static native long CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone(long orig);
5408         // struct LDKCResult_TxCreationKeysDecodeErrorZ CResult_TxCreationKeysDecodeErrorZ_ok(struct LDKTxCreationKeys o);
5409         public static native long CResult_TxCreationKeysDecodeErrorZ_ok(long o);
5410         // struct LDKCResult_TxCreationKeysDecodeErrorZ CResult_TxCreationKeysDecodeErrorZ_err(struct LDKDecodeError e);
5411         public static native long CResult_TxCreationKeysDecodeErrorZ_err(long e);
5412         // bool CResult_TxCreationKeysDecodeErrorZ_is_ok(const struct LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR o);
5413         public static native boolean CResult_TxCreationKeysDecodeErrorZ_is_ok(long o);
5414         // void CResult_TxCreationKeysDecodeErrorZ_free(struct LDKCResult_TxCreationKeysDecodeErrorZ _res);
5415         public static native void CResult_TxCreationKeysDecodeErrorZ_free(long _res);
5416         // uint64_t CResult_TxCreationKeysDecodeErrorZ_clone_ptr(LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR arg);
5417         public static native long CResult_TxCreationKeysDecodeErrorZ_clone_ptr(long arg);
5418         // struct LDKCResult_TxCreationKeysDecodeErrorZ CResult_TxCreationKeysDecodeErrorZ_clone(const struct LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR orig);
5419         public static native long CResult_TxCreationKeysDecodeErrorZ_clone(long orig);
5420         // struct LDKCResult_ChannelPublicKeysDecodeErrorZ CResult_ChannelPublicKeysDecodeErrorZ_ok(struct LDKChannelPublicKeys o);
5421         public static native long CResult_ChannelPublicKeysDecodeErrorZ_ok(long o);
5422         // struct LDKCResult_ChannelPublicKeysDecodeErrorZ CResult_ChannelPublicKeysDecodeErrorZ_err(struct LDKDecodeError e);
5423         public static native long CResult_ChannelPublicKeysDecodeErrorZ_err(long e);
5424         // bool CResult_ChannelPublicKeysDecodeErrorZ_is_ok(const struct LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR o);
5425         public static native boolean CResult_ChannelPublicKeysDecodeErrorZ_is_ok(long o);
5426         // void CResult_ChannelPublicKeysDecodeErrorZ_free(struct LDKCResult_ChannelPublicKeysDecodeErrorZ _res);
5427         public static native void CResult_ChannelPublicKeysDecodeErrorZ_free(long _res);
5428         // uint64_t CResult_ChannelPublicKeysDecodeErrorZ_clone_ptr(LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR arg);
5429         public static native long CResult_ChannelPublicKeysDecodeErrorZ_clone_ptr(long arg);
5430         // struct LDKCResult_ChannelPublicKeysDecodeErrorZ CResult_ChannelPublicKeysDecodeErrorZ_clone(const struct LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR orig);
5431         public static native long CResult_ChannelPublicKeysDecodeErrorZ_clone(long orig);
5432         // struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ CResult_HTLCOutputInCommitmentDecodeErrorZ_ok(struct LDKHTLCOutputInCommitment o);
5433         public static native long CResult_HTLCOutputInCommitmentDecodeErrorZ_ok(long o);
5434         // struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ CResult_HTLCOutputInCommitmentDecodeErrorZ_err(struct LDKDecodeError e);
5435         public static native long CResult_HTLCOutputInCommitmentDecodeErrorZ_err(long e);
5436         // bool CResult_HTLCOutputInCommitmentDecodeErrorZ_is_ok(const struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR o);
5437         public static native boolean CResult_HTLCOutputInCommitmentDecodeErrorZ_is_ok(long o);
5438         // void CResult_HTLCOutputInCommitmentDecodeErrorZ_free(struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ _res);
5439         public static native void CResult_HTLCOutputInCommitmentDecodeErrorZ_free(long _res);
5440         // uint64_t CResult_HTLCOutputInCommitmentDecodeErrorZ_clone_ptr(LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR arg);
5441         public static native long CResult_HTLCOutputInCommitmentDecodeErrorZ_clone_ptr(long arg);
5442         // struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ CResult_HTLCOutputInCommitmentDecodeErrorZ_clone(const struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR orig);
5443         public static native long CResult_HTLCOutputInCommitmentDecodeErrorZ_clone(long orig);
5444         // struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_ok(struct LDKCounterpartyChannelTransactionParameters o);
5445         public static native long CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_ok(long o);
5446         // struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_err(struct LDKDecodeError e);
5447         public static native long CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_err(long e);
5448         // bool CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_is_ok(const struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR o);
5449         public static native boolean CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_is_ok(long o);
5450         // void CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_free(struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ _res);
5451         public static native void CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_free(long _res);
5452         // uint64_t CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone_ptr(LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR arg);
5453         public static native long CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone_ptr(long arg);
5454         // struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone(const struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR orig);
5455         public static native long CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone(long orig);
5456         // struct LDKCResult_ChannelTransactionParametersDecodeErrorZ CResult_ChannelTransactionParametersDecodeErrorZ_ok(struct LDKChannelTransactionParameters o);
5457         public static native long CResult_ChannelTransactionParametersDecodeErrorZ_ok(long o);
5458         // struct LDKCResult_ChannelTransactionParametersDecodeErrorZ CResult_ChannelTransactionParametersDecodeErrorZ_err(struct LDKDecodeError e);
5459         public static native long CResult_ChannelTransactionParametersDecodeErrorZ_err(long e);
5460         // bool CResult_ChannelTransactionParametersDecodeErrorZ_is_ok(const struct LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR o);
5461         public static native boolean CResult_ChannelTransactionParametersDecodeErrorZ_is_ok(long o);
5462         // void CResult_ChannelTransactionParametersDecodeErrorZ_free(struct LDKCResult_ChannelTransactionParametersDecodeErrorZ _res);
5463         public static native void CResult_ChannelTransactionParametersDecodeErrorZ_free(long _res);
5464         // uint64_t CResult_ChannelTransactionParametersDecodeErrorZ_clone_ptr(LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR arg);
5465         public static native long CResult_ChannelTransactionParametersDecodeErrorZ_clone_ptr(long arg);
5466         // struct LDKCResult_ChannelTransactionParametersDecodeErrorZ CResult_ChannelTransactionParametersDecodeErrorZ_clone(const struct LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR orig);
5467         public static native long CResult_ChannelTransactionParametersDecodeErrorZ_clone(long orig);
5468         // struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ CResult_HolderCommitmentTransactionDecodeErrorZ_ok(struct LDKHolderCommitmentTransaction o);
5469         public static native long CResult_HolderCommitmentTransactionDecodeErrorZ_ok(long o);
5470         // struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ CResult_HolderCommitmentTransactionDecodeErrorZ_err(struct LDKDecodeError e);
5471         public static native long CResult_HolderCommitmentTransactionDecodeErrorZ_err(long e);
5472         // bool CResult_HolderCommitmentTransactionDecodeErrorZ_is_ok(const struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR o);
5473         public static native boolean CResult_HolderCommitmentTransactionDecodeErrorZ_is_ok(long o);
5474         // void CResult_HolderCommitmentTransactionDecodeErrorZ_free(struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ _res);
5475         public static native void CResult_HolderCommitmentTransactionDecodeErrorZ_free(long _res);
5476         // uint64_t CResult_HolderCommitmentTransactionDecodeErrorZ_clone_ptr(LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR arg);
5477         public static native long CResult_HolderCommitmentTransactionDecodeErrorZ_clone_ptr(long arg);
5478         // struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ CResult_HolderCommitmentTransactionDecodeErrorZ_clone(const struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR orig);
5479         public static native long CResult_HolderCommitmentTransactionDecodeErrorZ_clone(long orig);
5480         // struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ CResult_BuiltCommitmentTransactionDecodeErrorZ_ok(struct LDKBuiltCommitmentTransaction o);
5481         public static native long CResult_BuiltCommitmentTransactionDecodeErrorZ_ok(long o);
5482         // struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ CResult_BuiltCommitmentTransactionDecodeErrorZ_err(struct LDKDecodeError e);
5483         public static native long CResult_BuiltCommitmentTransactionDecodeErrorZ_err(long e);
5484         // bool CResult_BuiltCommitmentTransactionDecodeErrorZ_is_ok(const struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR o);
5485         public static native boolean CResult_BuiltCommitmentTransactionDecodeErrorZ_is_ok(long o);
5486         // void CResult_BuiltCommitmentTransactionDecodeErrorZ_free(struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ _res);
5487         public static native void CResult_BuiltCommitmentTransactionDecodeErrorZ_free(long _res);
5488         // uint64_t CResult_BuiltCommitmentTransactionDecodeErrorZ_clone_ptr(LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR arg);
5489         public static native long CResult_BuiltCommitmentTransactionDecodeErrorZ_clone_ptr(long arg);
5490         // struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ CResult_BuiltCommitmentTransactionDecodeErrorZ_clone(const struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR orig);
5491         public static native long CResult_BuiltCommitmentTransactionDecodeErrorZ_clone(long orig);
5492         // struct LDKCResult_TrustedClosingTransactionNoneZ CResult_TrustedClosingTransactionNoneZ_ok(struct LDKTrustedClosingTransaction o);
5493         public static native long CResult_TrustedClosingTransactionNoneZ_ok(long o);
5494         // struct LDKCResult_TrustedClosingTransactionNoneZ CResult_TrustedClosingTransactionNoneZ_err(void);
5495         public static native long CResult_TrustedClosingTransactionNoneZ_err();
5496         // bool CResult_TrustedClosingTransactionNoneZ_is_ok(const struct LDKCResult_TrustedClosingTransactionNoneZ *NONNULL_PTR o);
5497         public static native boolean CResult_TrustedClosingTransactionNoneZ_is_ok(long o);
5498         // void CResult_TrustedClosingTransactionNoneZ_free(struct LDKCResult_TrustedClosingTransactionNoneZ _res);
5499         public static native void CResult_TrustedClosingTransactionNoneZ_free(long _res);
5500         // struct LDKCResult_CommitmentTransactionDecodeErrorZ CResult_CommitmentTransactionDecodeErrorZ_ok(struct LDKCommitmentTransaction o);
5501         public static native long CResult_CommitmentTransactionDecodeErrorZ_ok(long o);
5502         // struct LDKCResult_CommitmentTransactionDecodeErrorZ CResult_CommitmentTransactionDecodeErrorZ_err(struct LDKDecodeError e);
5503         public static native long CResult_CommitmentTransactionDecodeErrorZ_err(long e);
5504         // bool CResult_CommitmentTransactionDecodeErrorZ_is_ok(const struct LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR o);
5505         public static native boolean CResult_CommitmentTransactionDecodeErrorZ_is_ok(long o);
5506         // void CResult_CommitmentTransactionDecodeErrorZ_free(struct LDKCResult_CommitmentTransactionDecodeErrorZ _res);
5507         public static native void CResult_CommitmentTransactionDecodeErrorZ_free(long _res);
5508         // uint64_t CResult_CommitmentTransactionDecodeErrorZ_clone_ptr(LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR arg);
5509         public static native long CResult_CommitmentTransactionDecodeErrorZ_clone_ptr(long arg);
5510         // struct LDKCResult_CommitmentTransactionDecodeErrorZ CResult_CommitmentTransactionDecodeErrorZ_clone(const struct LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR orig);
5511         public static native long CResult_CommitmentTransactionDecodeErrorZ_clone(long orig);
5512         // struct LDKCResult_TrustedCommitmentTransactionNoneZ CResult_TrustedCommitmentTransactionNoneZ_ok(struct LDKTrustedCommitmentTransaction o);
5513         public static native long CResult_TrustedCommitmentTransactionNoneZ_ok(long o);
5514         // struct LDKCResult_TrustedCommitmentTransactionNoneZ CResult_TrustedCommitmentTransactionNoneZ_err(void);
5515         public static native long CResult_TrustedCommitmentTransactionNoneZ_err();
5516         // bool CResult_TrustedCommitmentTransactionNoneZ_is_ok(const struct LDKCResult_TrustedCommitmentTransactionNoneZ *NONNULL_PTR o);
5517         public static native boolean CResult_TrustedCommitmentTransactionNoneZ_is_ok(long o);
5518         // void CResult_TrustedCommitmentTransactionNoneZ_free(struct LDKCResult_TrustedCommitmentTransactionNoneZ _res);
5519         public static native void CResult_TrustedCommitmentTransactionNoneZ_free(long _res);
5520         // struct LDKCResult_CVec_ECDSASignatureZNoneZ CResult_CVec_ECDSASignatureZNoneZ_ok(struct LDKCVec_ECDSASignatureZ o);
5521         public static native long CResult_CVec_ECDSASignatureZNoneZ_ok(byte[][] o);
5522         // struct LDKCResult_CVec_ECDSASignatureZNoneZ CResult_CVec_ECDSASignatureZNoneZ_err(void);
5523         public static native long CResult_CVec_ECDSASignatureZNoneZ_err();
5524         // bool CResult_CVec_ECDSASignatureZNoneZ_is_ok(const struct LDKCResult_CVec_ECDSASignatureZNoneZ *NONNULL_PTR o);
5525         public static native boolean CResult_CVec_ECDSASignatureZNoneZ_is_ok(long o);
5526         // void CResult_CVec_ECDSASignatureZNoneZ_free(struct LDKCResult_CVec_ECDSASignatureZNoneZ _res);
5527         public static native void CResult_CVec_ECDSASignatureZNoneZ_free(long _res);
5528         // uint64_t CResult_CVec_ECDSASignatureZNoneZ_clone_ptr(LDKCResult_CVec_ECDSASignatureZNoneZ *NONNULL_PTR arg);
5529         public static native long CResult_CVec_ECDSASignatureZNoneZ_clone_ptr(long arg);
5530         // struct LDKCResult_CVec_ECDSASignatureZNoneZ CResult_CVec_ECDSASignatureZNoneZ_clone(const struct LDKCResult_CVec_ECDSASignatureZNoneZ *NONNULL_PTR orig);
5531         public static native long CResult_CVec_ECDSASignatureZNoneZ_clone(long orig);
5532         // struct LDKCOption_usizeZ COption_usizeZ_some(uintptr_t o);
5533         public static native long COption_usizeZ_some(long o);
5534         // struct LDKCOption_usizeZ COption_usizeZ_none(void);
5535         public static native long COption_usizeZ_none();
5536         // void COption_usizeZ_free(struct LDKCOption_usizeZ _res);
5537         public static native void COption_usizeZ_free(long _res);
5538         // uint64_t COption_usizeZ_clone_ptr(LDKCOption_usizeZ *NONNULL_PTR arg);
5539         public static native long COption_usizeZ_clone_ptr(long arg);
5540         // struct LDKCOption_usizeZ COption_usizeZ_clone(const struct LDKCOption_usizeZ *NONNULL_PTR orig);
5541         public static native long COption_usizeZ_clone(long orig);
5542         // struct LDKCResult_ShutdownScriptDecodeErrorZ CResult_ShutdownScriptDecodeErrorZ_ok(struct LDKShutdownScript o);
5543         public static native long CResult_ShutdownScriptDecodeErrorZ_ok(long o);
5544         // struct LDKCResult_ShutdownScriptDecodeErrorZ CResult_ShutdownScriptDecodeErrorZ_err(struct LDKDecodeError e);
5545         public static native long CResult_ShutdownScriptDecodeErrorZ_err(long e);
5546         // bool CResult_ShutdownScriptDecodeErrorZ_is_ok(const struct LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR o);
5547         public static native boolean CResult_ShutdownScriptDecodeErrorZ_is_ok(long o);
5548         // void CResult_ShutdownScriptDecodeErrorZ_free(struct LDKCResult_ShutdownScriptDecodeErrorZ _res);
5549         public static native void CResult_ShutdownScriptDecodeErrorZ_free(long _res);
5550         // uint64_t CResult_ShutdownScriptDecodeErrorZ_clone_ptr(LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR arg);
5551         public static native long CResult_ShutdownScriptDecodeErrorZ_clone_ptr(long arg);
5552         // struct LDKCResult_ShutdownScriptDecodeErrorZ CResult_ShutdownScriptDecodeErrorZ_clone(const struct LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR orig);
5553         public static native long CResult_ShutdownScriptDecodeErrorZ_clone(long orig);
5554         // struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ CResult_ShutdownScriptInvalidShutdownScriptZ_ok(struct LDKShutdownScript o);
5555         public static native long CResult_ShutdownScriptInvalidShutdownScriptZ_ok(long o);
5556         // struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ CResult_ShutdownScriptInvalidShutdownScriptZ_err(struct LDKInvalidShutdownScript e);
5557         public static native long CResult_ShutdownScriptInvalidShutdownScriptZ_err(long e);
5558         // bool CResult_ShutdownScriptInvalidShutdownScriptZ_is_ok(const struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR o);
5559         public static native boolean CResult_ShutdownScriptInvalidShutdownScriptZ_is_ok(long o);
5560         // void CResult_ShutdownScriptInvalidShutdownScriptZ_free(struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ _res);
5561         public static native void CResult_ShutdownScriptInvalidShutdownScriptZ_free(long _res);
5562         // uint64_t CResult_ShutdownScriptInvalidShutdownScriptZ_clone_ptr(LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR arg);
5563         public static native long CResult_ShutdownScriptInvalidShutdownScriptZ_clone_ptr(long arg);
5564         // struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ CResult_ShutdownScriptInvalidShutdownScriptZ_clone(const struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR orig);
5565         public static native long CResult_ShutdownScriptInvalidShutdownScriptZ_clone(long orig);
5566         // struct LDKCResult_PaymentPurposeDecodeErrorZ CResult_PaymentPurposeDecodeErrorZ_ok(struct LDKPaymentPurpose o);
5567         public static native long CResult_PaymentPurposeDecodeErrorZ_ok(long o);
5568         // struct LDKCResult_PaymentPurposeDecodeErrorZ CResult_PaymentPurposeDecodeErrorZ_err(struct LDKDecodeError e);
5569         public static native long CResult_PaymentPurposeDecodeErrorZ_err(long e);
5570         // bool CResult_PaymentPurposeDecodeErrorZ_is_ok(const struct LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR o);
5571         public static native boolean CResult_PaymentPurposeDecodeErrorZ_is_ok(long o);
5572         // void CResult_PaymentPurposeDecodeErrorZ_free(struct LDKCResult_PaymentPurposeDecodeErrorZ _res);
5573         public static native void CResult_PaymentPurposeDecodeErrorZ_free(long _res);
5574         // uint64_t CResult_PaymentPurposeDecodeErrorZ_clone_ptr(LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR arg);
5575         public static native long CResult_PaymentPurposeDecodeErrorZ_clone_ptr(long arg);
5576         // struct LDKCResult_PaymentPurposeDecodeErrorZ CResult_PaymentPurposeDecodeErrorZ_clone(const struct LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR orig);
5577         public static native long CResult_PaymentPurposeDecodeErrorZ_clone(long orig);
5578         // struct LDKCResult_ClaimedHTLCDecodeErrorZ CResult_ClaimedHTLCDecodeErrorZ_ok(struct LDKClaimedHTLC o);
5579         public static native long CResult_ClaimedHTLCDecodeErrorZ_ok(long o);
5580         // struct LDKCResult_ClaimedHTLCDecodeErrorZ CResult_ClaimedHTLCDecodeErrorZ_err(struct LDKDecodeError e);
5581         public static native long CResult_ClaimedHTLCDecodeErrorZ_err(long e);
5582         // bool CResult_ClaimedHTLCDecodeErrorZ_is_ok(const struct LDKCResult_ClaimedHTLCDecodeErrorZ *NONNULL_PTR o);
5583         public static native boolean CResult_ClaimedHTLCDecodeErrorZ_is_ok(long o);
5584         // void CResult_ClaimedHTLCDecodeErrorZ_free(struct LDKCResult_ClaimedHTLCDecodeErrorZ _res);
5585         public static native void CResult_ClaimedHTLCDecodeErrorZ_free(long _res);
5586         // uint64_t CResult_ClaimedHTLCDecodeErrorZ_clone_ptr(LDKCResult_ClaimedHTLCDecodeErrorZ *NONNULL_PTR arg);
5587         public static native long CResult_ClaimedHTLCDecodeErrorZ_clone_ptr(long arg);
5588         // struct LDKCResult_ClaimedHTLCDecodeErrorZ CResult_ClaimedHTLCDecodeErrorZ_clone(const struct LDKCResult_ClaimedHTLCDecodeErrorZ *NONNULL_PTR orig);
5589         public static native long CResult_ClaimedHTLCDecodeErrorZ_clone(long orig);
5590         // struct LDKCOption_PathFailureZ COption_PathFailureZ_some(struct LDKPathFailure o);
5591         public static native long COption_PathFailureZ_some(long o);
5592         // struct LDKCOption_PathFailureZ COption_PathFailureZ_none(void);
5593         public static native long COption_PathFailureZ_none();
5594         // void COption_PathFailureZ_free(struct LDKCOption_PathFailureZ _res);
5595         public static native void COption_PathFailureZ_free(long _res);
5596         // uint64_t COption_PathFailureZ_clone_ptr(LDKCOption_PathFailureZ *NONNULL_PTR arg);
5597         public static native long COption_PathFailureZ_clone_ptr(long arg);
5598         // struct LDKCOption_PathFailureZ COption_PathFailureZ_clone(const struct LDKCOption_PathFailureZ *NONNULL_PTR orig);
5599         public static native long COption_PathFailureZ_clone(long orig);
5600         // struct LDKCResult_COption_PathFailureZDecodeErrorZ CResult_COption_PathFailureZDecodeErrorZ_ok(struct LDKCOption_PathFailureZ o);
5601         public static native long CResult_COption_PathFailureZDecodeErrorZ_ok(long o);
5602         // struct LDKCResult_COption_PathFailureZDecodeErrorZ CResult_COption_PathFailureZDecodeErrorZ_err(struct LDKDecodeError e);
5603         public static native long CResult_COption_PathFailureZDecodeErrorZ_err(long e);
5604         // bool CResult_COption_PathFailureZDecodeErrorZ_is_ok(const struct LDKCResult_COption_PathFailureZDecodeErrorZ *NONNULL_PTR o);
5605         public static native boolean CResult_COption_PathFailureZDecodeErrorZ_is_ok(long o);
5606         // void CResult_COption_PathFailureZDecodeErrorZ_free(struct LDKCResult_COption_PathFailureZDecodeErrorZ _res);
5607         public static native void CResult_COption_PathFailureZDecodeErrorZ_free(long _res);
5608         // uint64_t CResult_COption_PathFailureZDecodeErrorZ_clone_ptr(LDKCResult_COption_PathFailureZDecodeErrorZ *NONNULL_PTR arg);
5609         public static native long CResult_COption_PathFailureZDecodeErrorZ_clone_ptr(long arg);
5610         // struct LDKCResult_COption_PathFailureZDecodeErrorZ CResult_COption_PathFailureZDecodeErrorZ_clone(const struct LDKCResult_COption_PathFailureZDecodeErrorZ *NONNULL_PTR orig);
5611         public static native long CResult_COption_PathFailureZDecodeErrorZ_clone(long orig);
5612         // struct LDKCOption_ClosureReasonZ COption_ClosureReasonZ_some(struct LDKClosureReason o);
5613         public static native long COption_ClosureReasonZ_some(long o);
5614         // struct LDKCOption_ClosureReasonZ COption_ClosureReasonZ_none(void);
5615         public static native long COption_ClosureReasonZ_none();
5616         // void COption_ClosureReasonZ_free(struct LDKCOption_ClosureReasonZ _res);
5617         public static native void COption_ClosureReasonZ_free(long _res);
5618         // uint64_t COption_ClosureReasonZ_clone_ptr(LDKCOption_ClosureReasonZ *NONNULL_PTR arg);
5619         public static native long COption_ClosureReasonZ_clone_ptr(long arg);
5620         // struct LDKCOption_ClosureReasonZ COption_ClosureReasonZ_clone(const struct LDKCOption_ClosureReasonZ *NONNULL_PTR orig);
5621         public static native long COption_ClosureReasonZ_clone(long orig);
5622         // struct LDKCResult_COption_ClosureReasonZDecodeErrorZ CResult_COption_ClosureReasonZDecodeErrorZ_ok(struct LDKCOption_ClosureReasonZ o);
5623         public static native long CResult_COption_ClosureReasonZDecodeErrorZ_ok(long o);
5624         // struct LDKCResult_COption_ClosureReasonZDecodeErrorZ CResult_COption_ClosureReasonZDecodeErrorZ_err(struct LDKDecodeError e);
5625         public static native long CResult_COption_ClosureReasonZDecodeErrorZ_err(long e);
5626         // bool CResult_COption_ClosureReasonZDecodeErrorZ_is_ok(const struct LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR o);
5627         public static native boolean CResult_COption_ClosureReasonZDecodeErrorZ_is_ok(long o);
5628         // void CResult_COption_ClosureReasonZDecodeErrorZ_free(struct LDKCResult_COption_ClosureReasonZDecodeErrorZ _res);
5629         public static native void CResult_COption_ClosureReasonZDecodeErrorZ_free(long _res);
5630         // uint64_t CResult_COption_ClosureReasonZDecodeErrorZ_clone_ptr(LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR arg);
5631         public static native long CResult_COption_ClosureReasonZDecodeErrorZ_clone_ptr(long arg);
5632         // struct LDKCResult_COption_ClosureReasonZDecodeErrorZ CResult_COption_ClosureReasonZDecodeErrorZ_clone(const struct LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR orig);
5633         public static native long CResult_COption_ClosureReasonZDecodeErrorZ_clone(long orig);
5634         // struct LDKCOption_HTLCDestinationZ COption_HTLCDestinationZ_some(struct LDKHTLCDestination o);
5635         public static native long COption_HTLCDestinationZ_some(long o);
5636         // struct LDKCOption_HTLCDestinationZ COption_HTLCDestinationZ_none(void);
5637         public static native long COption_HTLCDestinationZ_none();
5638         // void COption_HTLCDestinationZ_free(struct LDKCOption_HTLCDestinationZ _res);
5639         public static native void COption_HTLCDestinationZ_free(long _res);
5640         // uint64_t COption_HTLCDestinationZ_clone_ptr(LDKCOption_HTLCDestinationZ *NONNULL_PTR arg);
5641         public static native long COption_HTLCDestinationZ_clone_ptr(long arg);
5642         // struct LDKCOption_HTLCDestinationZ COption_HTLCDestinationZ_clone(const struct LDKCOption_HTLCDestinationZ *NONNULL_PTR orig);
5643         public static native long COption_HTLCDestinationZ_clone(long orig);
5644         // struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ CResult_COption_HTLCDestinationZDecodeErrorZ_ok(struct LDKCOption_HTLCDestinationZ o);
5645         public static native long CResult_COption_HTLCDestinationZDecodeErrorZ_ok(long o);
5646         // struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ CResult_COption_HTLCDestinationZDecodeErrorZ_err(struct LDKDecodeError e);
5647         public static native long CResult_COption_HTLCDestinationZDecodeErrorZ_err(long e);
5648         // bool CResult_COption_HTLCDestinationZDecodeErrorZ_is_ok(const struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR o);
5649         public static native boolean CResult_COption_HTLCDestinationZDecodeErrorZ_is_ok(long o);
5650         // void CResult_COption_HTLCDestinationZDecodeErrorZ_free(struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ _res);
5651         public static native void CResult_COption_HTLCDestinationZDecodeErrorZ_free(long _res);
5652         // uint64_t CResult_COption_HTLCDestinationZDecodeErrorZ_clone_ptr(LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR arg);
5653         public static native long CResult_COption_HTLCDestinationZDecodeErrorZ_clone_ptr(long arg);
5654         // struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ CResult_COption_HTLCDestinationZDecodeErrorZ_clone(const struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR orig);
5655         public static native long CResult_COption_HTLCDestinationZDecodeErrorZ_clone(long orig);
5656         // struct LDKCResult_PaymentFailureReasonDecodeErrorZ CResult_PaymentFailureReasonDecodeErrorZ_ok(enum LDKPaymentFailureReason o);
5657         public static native long CResult_PaymentFailureReasonDecodeErrorZ_ok(PaymentFailureReason o);
5658         // struct LDKCResult_PaymentFailureReasonDecodeErrorZ CResult_PaymentFailureReasonDecodeErrorZ_err(struct LDKDecodeError e);
5659         public static native long CResult_PaymentFailureReasonDecodeErrorZ_err(long e);
5660         // bool CResult_PaymentFailureReasonDecodeErrorZ_is_ok(const struct LDKCResult_PaymentFailureReasonDecodeErrorZ *NONNULL_PTR o);
5661         public static native boolean CResult_PaymentFailureReasonDecodeErrorZ_is_ok(long o);
5662         // void CResult_PaymentFailureReasonDecodeErrorZ_free(struct LDKCResult_PaymentFailureReasonDecodeErrorZ _res);
5663         public static native void CResult_PaymentFailureReasonDecodeErrorZ_free(long _res);
5664         // uint64_t CResult_PaymentFailureReasonDecodeErrorZ_clone_ptr(LDKCResult_PaymentFailureReasonDecodeErrorZ *NONNULL_PTR arg);
5665         public static native long CResult_PaymentFailureReasonDecodeErrorZ_clone_ptr(long arg);
5666         // struct LDKCResult_PaymentFailureReasonDecodeErrorZ CResult_PaymentFailureReasonDecodeErrorZ_clone(const struct LDKCResult_PaymentFailureReasonDecodeErrorZ *NONNULL_PTR orig);
5667         public static native long CResult_PaymentFailureReasonDecodeErrorZ_clone(long orig);
5668         // struct LDKCOption_U128Z COption_U128Z_some(struct LDKU128 o);
5669         public static native long COption_U128Z_some(byte[] o);
5670         // struct LDKCOption_U128Z COption_U128Z_none(void);
5671         public static native long COption_U128Z_none();
5672         // void COption_U128Z_free(struct LDKCOption_U128Z _res);
5673         public static native void COption_U128Z_free(long _res);
5674         // uint64_t COption_U128Z_clone_ptr(LDKCOption_U128Z *NONNULL_PTR arg);
5675         public static native long COption_U128Z_clone_ptr(long arg);
5676         // struct LDKCOption_U128Z COption_U128Z_clone(const struct LDKCOption_U128Z *NONNULL_PTR orig);
5677         public static native long COption_U128Z_clone(long orig);
5678         // void CVec_ClaimedHTLCZ_free(struct LDKCVec_ClaimedHTLCZ _res);
5679         public static native void CVec_ClaimedHTLCZ_free(long[] _res);
5680         // struct LDKCOption_PaymentFailureReasonZ COption_PaymentFailureReasonZ_some(enum LDKPaymentFailureReason o);
5681         public static native long COption_PaymentFailureReasonZ_some(PaymentFailureReason o);
5682         // struct LDKCOption_PaymentFailureReasonZ COption_PaymentFailureReasonZ_none(void);
5683         public static native long COption_PaymentFailureReasonZ_none();
5684         // void COption_PaymentFailureReasonZ_free(struct LDKCOption_PaymentFailureReasonZ _res);
5685         public static native void COption_PaymentFailureReasonZ_free(long _res);
5686         // uint64_t COption_PaymentFailureReasonZ_clone_ptr(LDKCOption_PaymentFailureReasonZ *NONNULL_PTR arg);
5687         public static native long COption_PaymentFailureReasonZ_clone_ptr(long arg);
5688         // struct LDKCOption_PaymentFailureReasonZ COption_PaymentFailureReasonZ_clone(const struct LDKCOption_PaymentFailureReasonZ *NONNULL_PTR orig);
5689         public static native long COption_PaymentFailureReasonZ_clone(long orig);
5690         // struct LDKCOption_EventZ COption_EventZ_some(struct LDKEvent o);
5691         public static native long COption_EventZ_some(long o);
5692         // struct LDKCOption_EventZ COption_EventZ_none(void);
5693         public static native long COption_EventZ_none();
5694         // void COption_EventZ_free(struct LDKCOption_EventZ _res);
5695         public static native void COption_EventZ_free(long _res);
5696         // uint64_t COption_EventZ_clone_ptr(LDKCOption_EventZ *NONNULL_PTR arg);
5697         public static native long COption_EventZ_clone_ptr(long arg);
5698         // struct LDKCOption_EventZ COption_EventZ_clone(const struct LDKCOption_EventZ *NONNULL_PTR orig);
5699         public static native long COption_EventZ_clone(long orig);
5700         // struct LDKCResult_COption_EventZDecodeErrorZ CResult_COption_EventZDecodeErrorZ_ok(struct LDKCOption_EventZ o);
5701         public static native long CResult_COption_EventZDecodeErrorZ_ok(long o);
5702         // struct LDKCResult_COption_EventZDecodeErrorZ CResult_COption_EventZDecodeErrorZ_err(struct LDKDecodeError e);
5703         public static native long CResult_COption_EventZDecodeErrorZ_err(long e);
5704         // bool CResult_COption_EventZDecodeErrorZ_is_ok(const struct LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR o);
5705         public static native boolean CResult_COption_EventZDecodeErrorZ_is_ok(long o);
5706         // void CResult_COption_EventZDecodeErrorZ_free(struct LDKCResult_COption_EventZDecodeErrorZ _res);
5707         public static native void CResult_COption_EventZDecodeErrorZ_free(long _res);
5708         // uint64_t CResult_COption_EventZDecodeErrorZ_clone_ptr(LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR arg);
5709         public static native long CResult_COption_EventZDecodeErrorZ_clone_ptr(long arg);
5710         // struct LDKCResult_COption_EventZDecodeErrorZ CResult_COption_EventZDecodeErrorZ_clone(const struct LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR orig);
5711         public static native long CResult_COption_EventZDecodeErrorZ_clone(long orig);
5712         // struct LDKCResult_SiPrefixBolt11ParseErrorZ CResult_SiPrefixBolt11ParseErrorZ_ok(enum LDKSiPrefix o);
5713         public static native long CResult_SiPrefixBolt11ParseErrorZ_ok(SiPrefix o);
5714         // struct LDKCResult_SiPrefixBolt11ParseErrorZ CResult_SiPrefixBolt11ParseErrorZ_err(struct LDKBolt11ParseError e);
5715         public static native long CResult_SiPrefixBolt11ParseErrorZ_err(long e);
5716         // bool CResult_SiPrefixBolt11ParseErrorZ_is_ok(const struct LDKCResult_SiPrefixBolt11ParseErrorZ *NONNULL_PTR o);
5717         public static native boolean CResult_SiPrefixBolt11ParseErrorZ_is_ok(long o);
5718         // void CResult_SiPrefixBolt11ParseErrorZ_free(struct LDKCResult_SiPrefixBolt11ParseErrorZ _res);
5719         public static native void CResult_SiPrefixBolt11ParseErrorZ_free(long _res);
5720         // uint64_t CResult_SiPrefixBolt11ParseErrorZ_clone_ptr(LDKCResult_SiPrefixBolt11ParseErrorZ *NONNULL_PTR arg);
5721         public static native long CResult_SiPrefixBolt11ParseErrorZ_clone_ptr(long arg);
5722         // struct LDKCResult_SiPrefixBolt11ParseErrorZ CResult_SiPrefixBolt11ParseErrorZ_clone(const struct LDKCResult_SiPrefixBolt11ParseErrorZ *NONNULL_PTR orig);
5723         public static native long CResult_SiPrefixBolt11ParseErrorZ_clone(long orig);
5724         // struct LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ CResult_Bolt11InvoiceParseOrSemanticErrorZ_ok(struct LDKBolt11Invoice o);
5725         public static native long CResult_Bolt11InvoiceParseOrSemanticErrorZ_ok(long o);
5726         // struct LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ CResult_Bolt11InvoiceParseOrSemanticErrorZ_err(struct LDKParseOrSemanticError e);
5727         public static native long CResult_Bolt11InvoiceParseOrSemanticErrorZ_err(long e);
5728         // bool CResult_Bolt11InvoiceParseOrSemanticErrorZ_is_ok(const struct LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ *NONNULL_PTR o);
5729         public static native boolean CResult_Bolt11InvoiceParseOrSemanticErrorZ_is_ok(long o);
5730         // void CResult_Bolt11InvoiceParseOrSemanticErrorZ_free(struct LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ _res);
5731         public static native void CResult_Bolt11InvoiceParseOrSemanticErrorZ_free(long _res);
5732         // uint64_t CResult_Bolt11InvoiceParseOrSemanticErrorZ_clone_ptr(LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ *NONNULL_PTR arg);
5733         public static native long CResult_Bolt11InvoiceParseOrSemanticErrorZ_clone_ptr(long arg);
5734         // struct LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ CResult_Bolt11InvoiceParseOrSemanticErrorZ_clone(const struct LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ *NONNULL_PTR orig);
5735         public static native long CResult_Bolt11InvoiceParseOrSemanticErrorZ_clone(long orig);
5736         // struct LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_ok(struct LDKSignedRawBolt11Invoice o);
5737         public static native long CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_ok(long o);
5738         // struct LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_err(struct LDKBolt11ParseError e);
5739         public static native long CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_err(long e);
5740         // bool CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_is_ok(const struct LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ *NONNULL_PTR o);
5741         public static native boolean CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_is_ok(long o);
5742         // void CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_free(struct LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ _res);
5743         public static native void CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_free(long _res);
5744         // uint64_t CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_clone_ptr(LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ *NONNULL_PTR arg);
5745         public static native long CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_clone_ptr(long arg);
5746         // struct LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_clone(const struct LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ *NONNULL_PTR orig);
5747         public static native long CResult_SignedRawBolt11InvoiceBolt11ParseErrorZ_clone(long orig);
5748         // uint64_t C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_clone_ptr(LDKC3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ *NONNULL_PTR arg);
5749         public static native long C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_clone_ptr(long arg);
5750         // struct LDKC3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_clone(const struct LDKC3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ *NONNULL_PTR orig);
5751         public static native long C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_clone(long orig);
5752         // struct LDKC3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_new(struct LDKRawBolt11Invoice a, struct LDKThirtyTwoBytes b, struct LDKBolt11InvoiceSignature c);
5753         public static native long C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_new(long a, byte[] b, long c);
5754         // void C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_free(struct LDKC3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ _res);
5755         public static native void C3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ_free(long _res);
5756         // struct LDKCResult_PayeePubKeySecp256k1ErrorZ CResult_PayeePubKeySecp256k1ErrorZ_ok(struct LDKPayeePubKey o);
5757         public static native long CResult_PayeePubKeySecp256k1ErrorZ_ok(long o);
5758         // struct LDKCResult_PayeePubKeySecp256k1ErrorZ CResult_PayeePubKeySecp256k1ErrorZ_err(enum LDKSecp256k1Error e);
5759         public static native long CResult_PayeePubKeySecp256k1ErrorZ_err(Secp256k1Error e);
5760         // bool CResult_PayeePubKeySecp256k1ErrorZ_is_ok(const struct LDKCResult_PayeePubKeySecp256k1ErrorZ *NONNULL_PTR o);
5761         public static native boolean CResult_PayeePubKeySecp256k1ErrorZ_is_ok(long o);
5762         // void CResult_PayeePubKeySecp256k1ErrorZ_free(struct LDKCResult_PayeePubKeySecp256k1ErrorZ _res);
5763         public static native void CResult_PayeePubKeySecp256k1ErrorZ_free(long _res);
5764         // uint64_t CResult_PayeePubKeySecp256k1ErrorZ_clone_ptr(LDKCResult_PayeePubKeySecp256k1ErrorZ *NONNULL_PTR arg);
5765         public static native long CResult_PayeePubKeySecp256k1ErrorZ_clone_ptr(long arg);
5766         // struct LDKCResult_PayeePubKeySecp256k1ErrorZ CResult_PayeePubKeySecp256k1ErrorZ_clone(const struct LDKCResult_PayeePubKeySecp256k1ErrorZ *NONNULL_PTR orig);
5767         public static native long CResult_PayeePubKeySecp256k1ErrorZ_clone(long orig);
5768         // void CVec_PrivateRouteZ_free(struct LDKCVec_PrivateRouteZ _res);
5769         public static native void CVec_PrivateRouteZ_free(long[] _res);
5770         // struct LDKCResult_PositiveTimestampCreationErrorZ CResult_PositiveTimestampCreationErrorZ_ok(struct LDKPositiveTimestamp o);
5771         public static native long CResult_PositiveTimestampCreationErrorZ_ok(long o);
5772         // struct LDKCResult_PositiveTimestampCreationErrorZ CResult_PositiveTimestampCreationErrorZ_err(enum LDKCreationError e);
5773         public static native long CResult_PositiveTimestampCreationErrorZ_err(CreationError e);
5774         // bool CResult_PositiveTimestampCreationErrorZ_is_ok(const struct LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR o);
5775         public static native boolean CResult_PositiveTimestampCreationErrorZ_is_ok(long o);
5776         // void CResult_PositiveTimestampCreationErrorZ_free(struct LDKCResult_PositiveTimestampCreationErrorZ _res);
5777         public static native void CResult_PositiveTimestampCreationErrorZ_free(long _res);
5778         // uint64_t CResult_PositiveTimestampCreationErrorZ_clone_ptr(LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR arg);
5779         public static native long CResult_PositiveTimestampCreationErrorZ_clone_ptr(long arg);
5780         // struct LDKCResult_PositiveTimestampCreationErrorZ CResult_PositiveTimestampCreationErrorZ_clone(const struct LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR orig);
5781         public static native long CResult_PositiveTimestampCreationErrorZ_clone(long orig);
5782         // struct LDKCResult_NoneBolt11SemanticErrorZ CResult_NoneBolt11SemanticErrorZ_ok(void);
5783         public static native long CResult_NoneBolt11SemanticErrorZ_ok();
5784         // struct LDKCResult_NoneBolt11SemanticErrorZ CResult_NoneBolt11SemanticErrorZ_err(enum LDKBolt11SemanticError e);
5785         public static native long CResult_NoneBolt11SemanticErrorZ_err(Bolt11SemanticError e);
5786         // bool CResult_NoneBolt11SemanticErrorZ_is_ok(const struct LDKCResult_NoneBolt11SemanticErrorZ *NONNULL_PTR o);
5787         public static native boolean CResult_NoneBolt11SemanticErrorZ_is_ok(long o);
5788         // void CResult_NoneBolt11SemanticErrorZ_free(struct LDKCResult_NoneBolt11SemanticErrorZ _res);
5789         public static native void CResult_NoneBolt11SemanticErrorZ_free(long _res);
5790         // uint64_t CResult_NoneBolt11SemanticErrorZ_clone_ptr(LDKCResult_NoneBolt11SemanticErrorZ *NONNULL_PTR arg);
5791         public static native long CResult_NoneBolt11SemanticErrorZ_clone_ptr(long arg);
5792         // struct LDKCResult_NoneBolt11SemanticErrorZ CResult_NoneBolt11SemanticErrorZ_clone(const struct LDKCResult_NoneBolt11SemanticErrorZ *NONNULL_PTR orig);
5793         public static native long CResult_NoneBolt11SemanticErrorZ_clone(long orig);
5794         // struct LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ CResult_Bolt11InvoiceBolt11SemanticErrorZ_ok(struct LDKBolt11Invoice o);
5795         public static native long CResult_Bolt11InvoiceBolt11SemanticErrorZ_ok(long o);
5796         // struct LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ CResult_Bolt11InvoiceBolt11SemanticErrorZ_err(enum LDKBolt11SemanticError e);
5797         public static native long CResult_Bolt11InvoiceBolt11SemanticErrorZ_err(Bolt11SemanticError e);
5798         // bool CResult_Bolt11InvoiceBolt11SemanticErrorZ_is_ok(const struct LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ *NONNULL_PTR o);
5799         public static native boolean CResult_Bolt11InvoiceBolt11SemanticErrorZ_is_ok(long o);
5800         // void CResult_Bolt11InvoiceBolt11SemanticErrorZ_free(struct LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ _res);
5801         public static native void CResult_Bolt11InvoiceBolt11SemanticErrorZ_free(long _res);
5802         // uint64_t CResult_Bolt11InvoiceBolt11SemanticErrorZ_clone_ptr(LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ *NONNULL_PTR arg);
5803         public static native long CResult_Bolt11InvoiceBolt11SemanticErrorZ_clone_ptr(long arg);
5804         // struct LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ CResult_Bolt11InvoiceBolt11SemanticErrorZ_clone(const struct LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ *NONNULL_PTR orig);
5805         public static native long CResult_Bolt11InvoiceBolt11SemanticErrorZ_clone(long orig);
5806         // struct LDKCResult_DescriptionCreationErrorZ CResult_DescriptionCreationErrorZ_ok(struct LDKDescription o);
5807         public static native long CResult_DescriptionCreationErrorZ_ok(long o);
5808         // struct LDKCResult_DescriptionCreationErrorZ CResult_DescriptionCreationErrorZ_err(enum LDKCreationError e);
5809         public static native long CResult_DescriptionCreationErrorZ_err(CreationError e);
5810         // bool CResult_DescriptionCreationErrorZ_is_ok(const struct LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR o);
5811         public static native boolean CResult_DescriptionCreationErrorZ_is_ok(long o);
5812         // void CResult_DescriptionCreationErrorZ_free(struct LDKCResult_DescriptionCreationErrorZ _res);
5813         public static native void CResult_DescriptionCreationErrorZ_free(long _res);
5814         // uint64_t CResult_DescriptionCreationErrorZ_clone_ptr(LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR arg);
5815         public static native long CResult_DescriptionCreationErrorZ_clone_ptr(long arg);
5816         // struct LDKCResult_DescriptionCreationErrorZ CResult_DescriptionCreationErrorZ_clone(const struct LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR orig);
5817         public static native long CResult_DescriptionCreationErrorZ_clone(long orig);
5818         // struct LDKCResult_PrivateRouteCreationErrorZ CResult_PrivateRouteCreationErrorZ_ok(struct LDKPrivateRoute o);
5819         public static native long CResult_PrivateRouteCreationErrorZ_ok(long o);
5820         // struct LDKCResult_PrivateRouteCreationErrorZ CResult_PrivateRouteCreationErrorZ_err(enum LDKCreationError e);
5821         public static native long CResult_PrivateRouteCreationErrorZ_err(CreationError e);
5822         // bool CResult_PrivateRouteCreationErrorZ_is_ok(const struct LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR o);
5823         public static native boolean CResult_PrivateRouteCreationErrorZ_is_ok(long o);
5824         // void CResult_PrivateRouteCreationErrorZ_free(struct LDKCResult_PrivateRouteCreationErrorZ _res);
5825         public static native void CResult_PrivateRouteCreationErrorZ_free(long _res);
5826         // uint64_t CResult_PrivateRouteCreationErrorZ_clone_ptr(LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR arg);
5827         public static native long CResult_PrivateRouteCreationErrorZ_clone_ptr(long arg);
5828         // struct LDKCResult_PrivateRouteCreationErrorZ CResult_PrivateRouteCreationErrorZ_clone(const struct LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR orig);
5829         public static native long CResult_PrivateRouteCreationErrorZ_clone(long orig);
5830         // struct LDKCResult_OutPointDecodeErrorZ CResult_OutPointDecodeErrorZ_ok(struct LDKOutPoint o);
5831         public static native long CResult_OutPointDecodeErrorZ_ok(long o);
5832         // struct LDKCResult_OutPointDecodeErrorZ CResult_OutPointDecodeErrorZ_err(struct LDKDecodeError e);
5833         public static native long CResult_OutPointDecodeErrorZ_err(long e);
5834         // bool CResult_OutPointDecodeErrorZ_is_ok(const struct LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR o);
5835         public static native boolean CResult_OutPointDecodeErrorZ_is_ok(long o);
5836         // void CResult_OutPointDecodeErrorZ_free(struct LDKCResult_OutPointDecodeErrorZ _res);
5837         public static native void CResult_OutPointDecodeErrorZ_free(long _res);
5838         // uint64_t CResult_OutPointDecodeErrorZ_clone_ptr(LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR arg);
5839         public static native long CResult_OutPointDecodeErrorZ_clone_ptr(long arg);
5840         // struct LDKCResult_OutPointDecodeErrorZ CResult_OutPointDecodeErrorZ_clone(const struct LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR orig);
5841         public static native long CResult_OutPointDecodeErrorZ_clone(long orig);
5842         // struct LDKCResult_BigSizeDecodeErrorZ CResult_BigSizeDecodeErrorZ_ok(struct LDKBigSize o);
5843         public static native long CResult_BigSizeDecodeErrorZ_ok(long o);
5844         // struct LDKCResult_BigSizeDecodeErrorZ CResult_BigSizeDecodeErrorZ_err(struct LDKDecodeError e);
5845         public static native long CResult_BigSizeDecodeErrorZ_err(long e);
5846         // bool CResult_BigSizeDecodeErrorZ_is_ok(const struct LDKCResult_BigSizeDecodeErrorZ *NONNULL_PTR o);
5847         public static native boolean CResult_BigSizeDecodeErrorZ_is_ok(long o);
5848         // void CResult_BigSizeDecodeErrorZ_free(struct LDKCResult_BigSizeDecodeErrorZ _res);
5849         public static native void CResult_BigSizeDecodeErrorZ_free(long _res);
5850         // uint64_t CResult_BigSizeDecodeErrorZ_clone_ptr(LDKCResult_BigSizeDecodeErrorZ *NONNULL_PTR arg);
5851         public static native long CResult_BigSizeDecodeErrorZ_clone_ptr(long arg);
5852         // struct LDKCResult_BigSizeDecodeErrorZ CResult_BigSizeDecodeErrorZ_clone(const struct LDKCResult_BigSizeDecodeErrorZ *NONNULL_PTR orig);
5853         public static native long CResult_BigSizeDecodeErrorZ_clone(long orig);
5854         // struct LDKCResult_HostnameDecodeErrorZ CResult_HostnameDecodeErrorZ_ok(struct LDKHostname o);
5855         public static native long CResult_HostnameDecodeErrorZ_ok(long o);
5856         // struct LDKCResult_HostnameDecodeErrorZ CResult_HostnameDecodeErrorZ_err(struct LDKDecodeError e);
5857         public static native long CResult_HostnameDecodeErrorZ_err(long e);
5858         // bool CResult_HostnameDecodeErrorZ_is_ok(const struct LDKCResult_HostnameDecodeErrorZ *NONNULL_PTR o);
5859         public static native boolean CResult_HostnameDecodeErrorZ_is_ok(long o);
5860         // void CResult_HostnameDecodeErrorZ_free(struct LDKCResult_HostnameDecodeErrorZ _res);
5861         public static native void CResult_HostnameDecodeErrorZ_free(long _res);
5862         // uint64_t CResult_HostnameDecodeErrorZ_clone_ptr(LDKCResult_HostnameDecodeErrorZ *NONNULL_PTR arg);
5863         public static native long CResult_HostnameDecodeErrorZ_clone_ptr(long arg);
5864         // struct LDKCResult_HostnameDecodeErrorZ CResult_HostnameDecodeErrorZ_clone(const struct LDKCResult_HostnameDecodeErrorZ *NONNULL_PTR orig);
5865         public static native long CResult_HostnameDecodeErrorZ_clone(long orig);
5866         // struct LDKCResult_TransactionU16LenLimitedNoneZ CResult_TransactionU16LenLimitedNoneZ_ok(struct LDKTransactionU16LenLimited o);
5867         public static native long CResult_TransactionU16LenLimitedNoneZ_ok(long o);
5868         // struct LDKCResult_TransactionU16LenLimitedNoneZ CResult_TransactionU16LenLimitedNoneZ_err(void);
5869         public static native long CResult_TransactionU16LenLimitedNoneZ_err();
5870         // bool CResult_TransactionU16LenLimitedNoneZ_is_ok(const struct LDKCResult_TransactionU16LenLimitedNoneZ *NONNULL_PTR o);
5871         public static native boolean CResult_TransactionU16LenLimitedNoneZ_is_ok(long o);
5872         // void CResult_TransactionU16LenLimitedNoneZ_free(struct LDKCResult_TransactionU16LenLimitedNoneZ _res);
5873         public static native void CResult_TransactionU16LenLimitedNoneZ_free(long _res);
5874         // uint64_t CResult_TransactionU16LenLimitedNoneZ_clone_ptr(LDKCResult_TransactionU16LenLimitedNoneZ *NONNULL_PTR arg);
5875         public static native long CResult_TransactionU16LenLimitedNoneZ_clone_ptr(long arg);
5876         // struct LDKCResult_TransactionU16LenLimitedNoneZ CResult_TransactionU16LenLimitedNoneZ_clone(const struct LDKCResult_TransactionU16LenLimitedNoneZ *NONNULL_PTR orig);
5877         public static native long CResult_TransactionU16LenLimitedNoneZ_clone(long orig);
5878         // struct LDKCResult_TransactionU16LenLimitedDecodeErrorZ CResult_TransactionU16LenLimitedDecodeErrorZ_ok(struct LDKTransactionU16LenLimited o);
5879         public static native long CResult_TransactionU16LenLimitedDecodeErrorZ_ok(long o);
5880         // struct LDKCResult_TransactionU16LenLimitedDecodeErrorZ CResult_TransactionU16LenLimitedDecodeErrorZ_err(struct LDKDecodeError e);
5881         public static native long CResult_TransactionU16LenLimitedDecodeErrorZ_err(long e);
5882         // bool CResult_TransactionU16LenLimitedDecodeErrorZ_is_ok(const struct LDKCResult_TransactionU16LenLimitedDecodeErrorZ *NONNULL_PTR o);
5883         public static native boolean CResult_TransactionU16LenLimitedDecodeErrorZ_is_ok(long o);
5884         // void CResult_TransactionU16LenLimitedDecodeErrorZ_free(struct LDKCResult_TransactionU16LenLimitedDecodeErrorZ _res);
5885         public static native void CResult_TransactionU16LenLimitedDecodeErrorZ_free(long _res);
5886         // uint64_t CResult_TransactionU16LenLimitedDecodeErrorZ_clone_ptr(LDKCResult_TransactionU16LenLimitedDecodeErrorZ *NONNULL_PTR arg);
5887         public static native long CResult_TransactionU16LenLimitedDecodeErrorZ_clone_ptr(long arg);
5888         // struct LDKCResult_TransactionU16LenLimitedDecodeErrorZ CResult_TransactionU16LenLimitedDecodeErrorZ_clone(const struct LDKCResult_TransactionU16LenLimitedDecodeErrorZ *NONNULL_PTR orig);
5889         public static native long CResult_TransactionU16LenLimitedDecodeErrorZ_clone(long orig);
5890         // struct LDKCResult_UntrustedStringDecodeErrorZ CResult_UntrustedStringDecodeErrorZ_ok(struct LDKUntrustedString o);
5891         public static native long CResult_UntrustedStringDecodeErrorZ_ok(long o);
5892         // struct LDKCResult_UntrustedStringDecodeErrorZ CResult_UntrustedStringDecodeErrorZ_err(struct LDKDecodeError e);
5893         public static native long CResult_UntrustedStringDecodeErrorZ_err(long e);
5894         // bool CResult_UntrustedStringDecodeErrorZ_is_ok(const struct LDKCResult_UntrustedStringDecodeErrorZ *NONNULL_PTR o);
5895         public static native boolean CResult_UntrustedStringDecodeErrorZ_is_ok(long o);
5896         // void CResult_UntrustedStringDecodeErrorZ_free(struct LDKCResult_UntrustedStringDecodeErrorZ _res);
5897         public static native void CResult_UntrustedStringDecodeErrorZ_free(long _res);
5898         // uint64_t CResult_UntrustedStringDecodeErrorZ_clone_ptr(LDKCResult_UntrustedStringDecodeErrorZ *NONNULL_PTR arg);
5899         public static native long CResult_UntrustedStringDecodeErrorZ_clone_ptr(long arg);
5900         // struct LDKCResult_UntrustedStringDecodeErrorZ CResult_UntrustedStringDecodeErrorZ_clone(const struct LDKCResult_UntrustedStringDecodeErrorZ *NONNULL_PTR orig);
5901         public static native long CResult_UntrustedStringDecodeErrorZ_clone(long orig);
5902         // struct LDKCResult_ReceiveTlvsDecodeErrorZ CResult_ReceiveTlvsDecodeErrorZ_ok(struct LDKReceiveTlvs o);
5903         public static native long CResult_ReceiveTlvsDecodeErrorZ_ok(long o);
5904         // struct LDKCResult_ReceiveTlvsDecodeErrorZ CResult_ReceiveTlvsDecodeErrorZ_err(struct LDKDecodeError e);
5905         public static native long CResult_ReceiveTlvsDecodeErrorZ_err(long e);
5906         // bool CResult_ReceiveTlvsDecodeErrorZ_is_ok(const struct LDKCResult_ReceiveTlvsDecodeErrorZ *NONNULL_PTR o);
5907         public static native boolean CResult_ReceiveTlvsDecodeErrorZ_is_ok(long o);
5908         // void CResult_ReceiveTlvsDecodeErrorZ_free(struct LDKCResult_ReceiveTlvsDecodeErrorZ _res);
5909         public static native void CResult_ReceiveTlvsDecodeErrorZ_free(long _res);
5910         // uint64_t CResult_ReceiveTlvsDecodeErrorZ_clone_ptr(LDKCResult_ReceiveTlvsDecodeErrorZ *NONNULL_PTR arg);
5911         public static native long CResult_ReceiveTlvsDecodeErrorZ_clone_ptr(long arg);
5912         // struct LDKCResult_ReceiveTlvsDecodeErrorZ CResult_ReceiveTlvsDecodeErrorZ_clone(const struct LDKCResult_ReceiveTlvsDecodeErrorZ *NONNULL_PTR orig);
5913         public static native long CResult_ReceiveTlvsDecodeErrorZ_clone(long orig);
5914         // struct LDKCResult_PaymentRelayDecodeErrorZ CResult_PaymentRelayDecodeErrorZ_ok(struct LDKPaymentRelay o);
5915         public static native long CResult_PaymentRelayDecodeErrorZ_ok(long o);
5916         // struct LDKCResult_PaymentRelayDecodeErrorZ CResult_PaymentRelayDecodeErrorZ_err(struct LDKDecodeError e);
5917         public static native long CResult_PaymentRelayDecodeErrorZ_err(long e);
5918         // bool CResult_PaymentRelayDecodeErrorZ_is_ok(const struct LDKCResult_PaymentRelayDecodeErrorZ *NONNULL_PTR o);
5919         public static native boolean CResult_PaymentRelayDecodeErrorZ_is_ok(long o);
5920         // void CResult_PaymentRelayDecodeErrorZ_free(struct LDKCResult_PaymentRelayDecodeErrorZ _res);
5921         public static native void CResult_PaymentRelayDecodeErrorZ_free(long _res);
5922         // uint64_t CResult_PaymentRelayDecodeErrorZ_clone_ptr(LDKCResult_PaymentRelayDecodeErrorZ *NONNULL_PTR arg);
5923         public static native long CResult_PaymentRelayDecodeErrorZ_clone_ptr(long arg);
5924         // struct LDKCResult_PaymentRelayDecodeErrorZ CResult_PaymentRelayDecodeErrorZ_clone(const struct LDKCResult_PaymentRelayDecodeErrorZ *NONNULL_PTR orig);
5925         public static native long CResult_PaymentRelayDecodeErrorZ_clone(long orig);
5926         // struct LDKCResult_PaymentConstraintsDecodeErrorZ CResult_PaymentConstraintsDecodeErrorZ_ok(struct LDKPaymentConstraints o);
5927         public static native long CResult_PaymentConstraintsDecodeErrorZ_ok(long o);
5928         // struct LDKCResult_PaymentConstraintsDecodeErrorZ CResult_PaymentConstraintsDecodeErrorZ_err(struct LDKDecodeError e);
5929         public static native long CResult_PaymentConstraintsDecodeErrorZ_err(long e);
5930         // bool CResult_PaymentConstraintsDecodeErrorZ_is_ok(const struct LDKCResult_PaymentConstraintsDecodeErrorZ *NONNULL_PTR o);
5931         public static native boolean CResult_PaymentConstraintsDecodeErrorZ_is_ok(long o);
5932         // void CResult_PaymentConstraintsDecodeErrorZ_free(struct LDKCResult_PaymentConstraintsDecodeErrorZ _res);
5933         public static native void CResult_PaymentConstraintsDecodeErrorZ_free(long _res);
5934         // uint64_t CResult_PaymentConstraintsDecodeErrorZ_clone_ptr(LDKCResult_PaymentConstraintsDecodeErrorZ *NONNULL_PTR arg);
5935         public static native long CResult_PaymentConstraintsDecodeErrorZ_clone_ptr(long arg);
5936         // struct LDKCResult_PaymentConstraintsDecodeErrorZ CResult_PaymentConstraintsDecodeErrorZ_clone(const struct LDKCResult_PaymentConstraintsDecodeErrorZ *NONNULL_PTR orig);
5937         public static native long CResult_PaymentConstraintsDecodeErrorZ_clone(long orig);
5938         // struct LDKCResult_ThirtyTwoBytesPaymentErrorZ CResult_ThirtyTwoBytesPaymentErrorZ_ok(struct LDKThirtyTwoBytes o);
5939         public static native long CResult_ThirtyTwoBytesPaymentErrorZ_ok(byte[] o);
5940         // struct LDKCResult_ThirtyTwoBytesPaymentErrorZ CResult_ThirtyTwoBytesPaymentErrorZ_err(struct LDKPaymentError e);
5941         public static native long CResult_ThirtyTwoBytesPaymentErrorZ_err(long e);
5942         // bool CResult_ThirtyTwoBytesPaymentErrorZ_is_ok(const struct LDKCResult_ThirtyTwoBytesPaymentErrorZ *NONNULL_PTR o);
5943         public static native boolean CResult_ThirtyTwoBytesPaymentErrorZ_is_ok(long o);
5944         // void CResult_ThirtyTwoBytesPaymentErrorZ_free(struct LDKCResult_ThirtyTwoBytesPaymentErrorZ _res);
5945         public static native void CResult_ThirtyTwoBytesPaymentErrorZ_free(long _res);
5946         // uint64_t CResult_ThirtyTwoBytesPaymentErrorZ_clone_ptr(LDKCResult_ThirtyTwoBytesPaymentErrorZ *NONNULL_PTR arg);
5947         public static native long CResult_ThirtyTwoBytesPaymentErrorZ_clone_ptr(long arg);
5948         // struct LDKCResult_ThirtyTwoBytesPaymentErrorZ CResult_ThirtyTwoBytesPaymentErrorZ_clone(const struct LDKCResult_ThirtyTwoBytesPaymentErrorZ *NONNULL_PTR orig);
5949         public static native long CResult_ThirtyTwoBytesPaymentErrorZ_clone(long orig);
5950         // struct LDKCResult_NonePaymentErrorZ CResult_NonePaymentErrorZ_ok(void);
5951         public static native long CResult_NonePaymentErrorZ_ok();
5952         // struct LDKCResult_NonePaymentErrorZ CResult_NonePaymentErrorZ_err(struct LDKPaymentError e);
5953         public static native long CResult_NonePaymentErrorZ_err(long e);
5954         // bool CResult_NonePaymentErrorZ_is_ok(const struct LDKCResult_NonePaymentErrorZ *NONNULL_PTR o);
5955         public static native boolean CResult_NonePaymentErrorZ_is_ok(long o);
5956         // void CResult_NonePaymentErrorZ_free(struct LDKCResult_NonePaymentErrorZ _res);
5957         public static native void CResult_NonePaymentErrorZ_free(long _res);
5958         // uint64_t CResult_NonePaymentErrorZ_clone_ptr(LDKCResult_NonePaymentErrorZ *NONNULL_PTR arg);
5959         public static native long CResult_NonePaymentErrorZ_clone_ptr(long arg);
5960         // struct LDKCResult_NonePaymentErrorZ CResult_NonePaymentErrorZ_clone(const struct LDKCResult_NonePaymentErrorZ *NONNULL_PTR orig);
5961         public static native long CResult_NonePaymentErrorZ_clone(long orig);
5962         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_ok(struct LDKCVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZ o);
5963         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_ok(long[] o);
5964         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_err(struct LDKProbingError e);
5965         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_err(long e);
5966         // bool CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_is_ok(const struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ *NONNULL_PTR o);
5967         public static native boolean CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_is_ok(long o);
5968         // void CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_free(struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ _res);
5969         public static native void CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_free(long _res);
5970         // uint64_t CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_clone_ptr(LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ *NONNULL_PTR arg);
5971         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_clone_ptr(long arg);
5972         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_clone(const struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ *NONNULL_PTR orig);
5973         public static native long CResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ_clone(long orig);
5974         // struct LDKCResult_StrSecp256k1ErrorZ CResult_StrSecp256k1ErrorZ_ok(struct LDKStr o);
5975         public static native long CResult_StrSecp256k1ErrorZ_ok(String o);
5976         // struct LDKCResult_StrSecp256k1ErrorZ CResult_StrSecp256k1ErrorZ_err(enum LDKSecp256k1Error e);
5977         public static native long CResult_StrSecp256k1ErrorZ_err(Secp256k1Error e);
5978         // bool CResult_StrSecp256k1ErrorZ_is_ok(const struct LDKCResult_StrSecp256k1ErrorZ *NONNULL_PTR o);
5979         public static native boolean CResult_StrSecp256k1ErrorZ_is_ok(long o);
5980         // void CResult_StrSecp256k1ErrorZ_free(struct LDKCResult_StrSecp256k1ErrorZ _res);
5981         public static native void CResult_StrSecp256k1ErrorZ_free(long _res);
5982         // uint64_t CResult_StrSecp256k1ErrorZ_clone_ptr(LDKCResult_StrSecp256k1ErrorZ *NONNULL_PTR arg);
5983         public static native long CResult_StrSecp256k1ErrorZ_clone_ptr(long arg);
5984         // struct LDKCResult_StrSecp256k1ErrorZ CResult_StrSecp256k1ErrorZ_clone(const struct LDKCResult_StrSecp256k1ErrorZ *NONNULL_PTR orig);
5985         public static native long CResult_StrSecp256k1ErrorZ_clone(long orig);
5986         // struct LDKCResult_TxOutUtxoLookupErrorZ CResult_TxOutUtxoLookupErrorZ_ok(struct LDKTxOut o);
5987         public static native long CResult_TxOutUtxoLookupErrorZ_ok(long o);
5988         // struct LDKCResult_TxOutUtxoLookupErrorZ CResult_TxOutUtxoLookupErrorZ_err(enum LDKUtxoLookupError e);
5989         public static native long CResult_TxOutUtxoLookupErrorZ_err(UtxoLookupError e);
5990         // bool CResult_TxOutUtxoLookupErrorZ_is_ok(const struct LDKCResult_TxOutUtxoLookupErrorZ *NONNULL_PTR o);
5991         public static native boolean CResult_TxOutUtxoLookupErrorZ_is_ok(long o);
5992         // void CResult_TxOutUtxoLookupErrorZ_free(struct LDKCResult_TxOutUtxoLookupErrorZ _res);
5993         public static native void CResult_TxOutUtxoLookupErrorZ_free(long _res);
5994         // uint64_t CResult_TxOutUtxoLookupErrorZ_clone_ptr(LDKCResult_TxOutUtxoLookupErrorZ *NONNULL_PTR arg);
5995         public static native long CResult_TxOutUtxoLookupErrorZ_clone_ptr(long arg);
5996         // struct LDKCResult_TxOutUtxoLookupErrorZ CResult_TxOutUtxoLookupErrorZ_clone(const struct LDKCResult_TxOutUtxoLookupErrorZ *NONNULL_PTR orig);
5997         public static native long CResult_TxOutUtxoLookupErrorZ_clone(long orig);
5998         // struct LDKCResult_OnionMessagePathNoneZ CResult_OnionMessagePathNoneZ_ok(struct LDKOnionMessagePath o);
5999         public static native long CResult_OnionMessagePathNoneZ_ok(long o);
6000         // struct LDKCResult_OnionMessagePathNoneZ CResult_OnionMessagePathNoneZ_err(void);
6001         public static native long CResult_OnionMessagePathNoneZ_err();
6002         // bool CResult_OnionMessagePathNoneZ_is_ok(const struct LDKCResult_OnionMessagePathNoneZ *NONNULL_PTR o);
6003         public static native boolean CResult_OnionMessagePathNoneZ_is_ok(long o);
6004         // void CResult_OnionMessagePathNoneZ_free(struct LDKCResult_OnionMessagePathNoneZ _res);
6005         public static native void CResult_OnionMessagePathNoneZ_free(long _res);
6006         // uint64_t CResult_OnionMessagePathNoneZ_clone_ptr(LDKCResult_OnionMessagePathNoneZ *NONNULL_PTR arg);
6007         public static native long CResult_OnionMessagePathNoneZ_clone_ptr(long arg);
6008         // struct LDKCResult_OnionMessagePathNoneZ CResult_OnionMessagePathNoneZ_clone(const struct LDKCResult_OnionMessagePathNoneZ *NONNULL_PTR orig);
6009         public static native long CResult_OnionMessagePathNoneZ_clone(long orig);
6010         // uint64_t C2Tuple_PublicKeyOnionMessageZ_clone_ptr(LDKC2Tuple_PublicKeyOnionMessageZ *NONNULL_PTR arg);
6011         public static native long C2Tuple_PublicKeyOnionMessageZ_clone_ptr(long arg);
6012         // struct LDKC2Tuple_PublicKeyOnionMessageZ C2Tuple_PublicKeyOnionMessageZ_clone(const struct LDKC2Tuple_PublicKeyOnionMessageZ *NONNULL_PTR orig);
6013         public static native long C2Tuple_PublicKeyOnionMessageZ_clone(long orig);
6014         // struct LDKC2Tuple_PublicKeyOnionMessageZ C2Tuple_PublicKeyOnionMessageZ_new(struct LDKPublicKey a, struct LDKOnionMessage b);
6015         public static native long C2Tuple_PublicKeyOnionMessageZ_new(byte[] a, long b);
6016         // void C2Tuple_PublicKeyOnionMessageZ_free(struct LDKC2Tuple_PublicKeyOnionMessageZ _res);
6017         public static native void C2Tuple_PublicKeyOnionMessageZ_free(long _res);
6018         // struct LDKCResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_ok(struct LDKC2Tuple_PublicKeyOnionMessageZ o);
6019         public static native long CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_ok(long o);
6020         // struct LDKCResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_err(struct LDKSendError e);
6021         public static native long CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_err(long e);
6022         // bool CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_is_ok(const struct LDKCResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ *NONNULL_PTR o);
6023         public static native boolean CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_is_ok(long o);
6024         // void CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_free(struct LDKCResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ _res);
6025         public static native void CResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ_free(long _res);
6026         // struct LDKCResult_NoneSendErrorZ CResult_NoneSendErrorZ_ok(void);
6027         public static native long CResult_NoneSendErrorZ_ok();
6028         // struct LDKCResult_NoneSendErrorZ CResult_NoneSendErrorZ_err(struct LDKSendError e);
6029         public static native long CResult_NoneSendErrorZ_err(long e);
6030         // bool CResult_NoneSendErrorZ_is_ok(const struct LDKCResult_NoneSendErrorZ *NONNULL_PTR o);
6031         public static native boolean CResult_NoneSendErrorZ_is_ok(long o);
6032         // void CResult_NoneSendErrorZ_free(struct LDKCResult_NoneSendErrorZ _res);
6033         public static native void CResult_NoneSendErrorZ_free(long _res);
6034         // struct LDKCResult_BlindedPathNoneZ CResult_BlindedPathNoneZ_ok(struct LDKBlindedPath o);
6035         public static native long CResult_BlindedPathNoneZ_ok(long o);
6036         // struct LDKCResult_BlindedPathNoneZ CResult_BlindedPathNoneZ_err(void);
6037         public static native long CResult_BlindedPathNoneZ_err();
6038         // bool CResult_BlindedPathNoneZ_is_ok(const struct LDKCResult_BlindedPathNoneZ *NONNULL_PTR o);
6039         public static native boolean CResult_BlindedPathNoneZ_is_ok(long o);
6040         // void CResult_BlindedPathNoneZ_free(struct LDKCResult_BlindedPathNoneZ _res);
6041         public static native void CResult_BlindedPathNoneZ_free(long _res);
6042         // uint64_t CResult_BlindedPathNoneZ_clone_ptr(LDKCResult_BlindedPathNoneZ *NONNULL_PTR arg);
6043         public static native long CResult_BlindedPathNoneZ_clone_ptr(long arg);
6044         // struct LDKCResult_BlindedPathNoneZ CResult_BlindedPathNoneZ_clone(const struct LDKCResult_BlindedPathNoneZ *NONNULL_PTR orig);
6045         public static native long CResult_BlindedPathNoneZ_clone(long orig);
6046         // struct LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_ok(struct LDKC2Tuple_BlindedPayInfoBlindedPathZ o);
6047         public static native long CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_ok(long o);
6048         // struct LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_err(void);
6049         public static native long CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_err();
6050         // bool CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_is_ok(const struct LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ *NONNULL_PTR o);
6051         public static native boolean CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_is_ok(long o);
6052         // void CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_free(struct LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ _res);
6053         public static native void CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_free(long _res);
6054         // uint64_t CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_clone_ptr(LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ *NONNULL_PTR arg);
6055         public static native long CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_clone_ptr(long arg);
6056         // struct LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_clone(const struct LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ *NONNULL_PTR orig);
6057         public static native long CResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ_clone(long orig);
6058         // struct LDKCResult_BlindedPathDecodeErrorZ CResult_BlindedPathDecodeErrorZ_ok(struct LDKBlindedPath o);
6059         public static native long CResult_BlindedPathDecodeErrorZ_ok(long o);
6060         // struct LDKCResult_BlindedPathDecodeErrorZ CResult_BlindedPathDecodeErrorZ_err(struct LDKDecodeError e);
6061         public static native long CResult_BlindedPathDecodeErrorZ_err(long e);
6062         // bool CResult_BlindedPathDecodeErrorZ_is_ok(const struct LDKCResult_BlindedPathDecodeErrorZ *NONNULL_PTR o);
6063         public static native boolean CResult_BlindedPathDecodeErrorZ_is_ok(long o);
6064         // void CResult_BlindedPathDecodeErrorZ_free(struct LDKCResult_BlindedPathDecodeErrorZ _res);
6065         public static native void CResult_BlindedPathDecodeErrorZ_free(long _res);
6066         // uint64_t CResult_BlindedPathDecodeErrorZ_clone_ptr(LDKCResult_BlindedPathDecodeErrorZ *NONNULL_PTR arg);
6067         public static native long CResult_BlindedPathDecodeErrorZ_clone_ptr(long arg);
6068         // struct LDKCResult_BlindedPathDecodeErrorZ CResult_BlindedPathDecodeErrorZ_clone(const struct LDKCResult_BlindedPathDecodeErrorZ *NONNULL_PTR orig);
6069         public static native long CResult_BlindedPathDecodeErrorZ_clone(long orig);
6070         // struct LDKCResult_BlindedHopDecodeErrorZ CResult_BlindedHopDecodeErrorZ_ok(struct LDKBlindedHop o);
6071         public static native long CResult_BlindedHopDecodeErrorZ_ok(long o);
6072         // struct LDKCResult_BlindedHopDecodeErrorZ CResult_BlindedHopDecodeErrorZ_err(struct LDKDecodeError e);
6073         public static native long CResult_BlindedHopDecodeErrorZ_err(long e);
6074         // bool CResult_BlindedHopDecodeErrorZ_is_ok(const struct LDKCResult_BlindedHopDecodeErrorZ *NONNULL_PTR o);
6075         public static native boolean CResult_BlindedHopDecodeErrorZ_is_ok(long o);
6076         // void CResult_BlindedHopDecodeErrorZ_free(struct LDKCResult_BlindedHopDecodeErrorZ _res);
6077         public static native void CResult_BlindedHopDecodeErrorZ_free(long _res);
6078         // uint64_t CResult_BlindedHopDecodeErrorZ_clone_ptr(LDKCResult_BlindedHopDecodeErrorZ *NONNULL_PTR arg);
6079         public static native long CResult_BlindedHopDecodeErrorZ_clone_ptr(long arg);
6080         // struct LDKCResult_BlindedHopDecodeErrorZ CResult_BlindedHopDecodeErrorZ_clone(const struct LDKCResult_BlindedHopDecodeErrorZ *NONNULL_PTR orig);
6081         public static native long CResult_BlindedHopDecodeErrorZ_clone(long orig);
6082         // struct LDKCResult_InvoiceErrorDecodeErrorZ CResult_InvoiceErrorDecodeErrorZ_ok(struct LDKInvoiceError o);
6083         public static native long CResult_InvoiceErrorDecodeErrorZ_ok(long o);
6084         // struct LDKCResult_InvoiceErrorDecodeErrorZ CResult_InvoiceErrorDecodeErrorZ_err(struct LDKDecodeError e);
6085         public static native long CResult_InvoiceErrorDecodeErrorZ_err(long e);
6086         // bool CResult_InvoiceErrorDecodeErrorZ_is_ok(const struct LDKCResult_InvoiceErrorDecodeErrorZ *NONNULL_PTR o);
6087         public static native boolean CResult_InvoiceErrorDecodeErrorZ_is_ok(long o);
6088         // void CResult_InvoiceErrorDecodeErrorZ_free(struct LDKCResult_InvoiceErrorDecodeErrorZ _res);
6089         public static native void CResult_InvoiceErrorDecodeErrorZ_free(long _res);
6090         // uint64_t CResult_InvoiceErrorDecodeErrorZ_clone_ptr(LDKCResult_InvoiceErrorDecodeErrorZ *NONNULL_PTR arg);
6091         public static native long CResult_InvoiceErrorDecodeErrorZ_clone_ptr(long arg);
6092         // struct LDKCResult_InvoiceErrorDecodeErrorZ CResult_InvoiceErrorDecodeErrorZ_clone(const struct LDKCResult_InvoiceErrorDecodeErrorZ *NONNULL_PTR orig);
6093         public static native long CResult_InvoiceErrorDecodeErrorZ_clone(long orig);
6094         // struct LDKCOption_FilterZ COption_FilterZ_some(struct LDKFilter o);
6095         public static native long COption_FilterZ_some(long o);
6096         // struct LDKCOption_FilterZ COption_FilterZ_none(void);
6097         public static native long COption_FilterZ_none();
6098         // void COption_FilterZ_free(struct LDKCOption_FilterZ _res);
6099         public static native void COption_FilterZ_free(long _res);
6100         // struct LDKCResult_LockedChannelMonitorNoneZ CResult_LockedChannelMonitorNoneZ_ok(struct LDKLockedChannelMonitor o);
6101         public static native long CResult_LockedChannelMonitorNoneZ_ok(long o);
6102         // struct LDKCResult_LockedChannelMonitorNoneZ CResult_LockedChannelMonitorNoneZ_err(void);
6103         public static native long CResult_LockedChannelMonitorNoneZ_err();
6104         // bool CResult_LockedChannelMonitorNoneZ_is_ok(const struct LDKCResult_LockedChannelMonitorNoneZ *NONNULL_PTR o);
6105         public static native boolean CResult_LockedChannelMonitorNoneZ_is_ok(long o);
6106         // void CResult_LockedChannelMonitorNoneZ_free(struct LDKCResult_LockedChannelMonitorNoneZ _res);
6107         public static native void CResult_LockedChannelMonitorNoneZ_free(long _res);
6108         // void CVec_OutPointZ_free(struct LDKCVec_OutPointZ _res);
6109         public static native void CVec_OutPointZ_free(long[] _res);
6110         // void CVec_MonitorUpdateIdZ_free(struct LDKCVec_MonitorUpdateIdZ _res);
6111         public static native void CVec_MonitorUpdateIdZ_free(long[] _res);
6112         // uint64_t C2Tuple_OutPointCVec_MonitorUpdateIdZZ_clone_ptr(LDKC2Tuple_OutPointCVec_MonitorUpdateIdZZ *NONNULL_PTR arg);
6113         public static native long C2Tuple_OutPointCVec_MonitorUpdateIdZZ_clone_ptr(long arg);
6114         // struct LDKC2Tuple_OutPointCVec_MonitorUpdateIdZZ C2Tuple_OutPointCVec_MonitorUpdateIdZZ_clone(const struct LDKC2Tuple_OutPointCVec_MonitorUpdateIdZZ *NONNULL_PTR orig);
6115         public static native long C2Tuple_OutPointCVec_MonitorUpdateIdZZ_clone(long orig);
6116         // struct LDKC2Tuple_OutPointCVec_MonitorUpdateIdZZ C2Tuple_OutPointCVec_MonitorUpdateIdZZ_new(struct LDKOutPoint a, struct LDKCVec_MonitorUpdateIdZ b);
6117         public static native long C2Tuple_OutPointCVec_MonitorUpdateIdZZ_new(long a, long[] b);
6118         // void C2Tuple_OutPointCVec_MonitorUpdateIdZZ_free(struct LDKC2Tuple_OutPointCVec_MonitorUpdateIdZZ _res);
6119         public static native void C2Tuple_OutPointCVec_MonitorUpdateIdZZ_free(long _res);
6120         // void CVec_C2Tuple_OutPointCVec_MonitorUpdateIdZZZ_free(struct LDKCVec_C2Tuple_OutPointCVec_MonitorUpdateIdZZZ _res);
6121         public static native void CVec_C2Tuple_OutPointCVec_MonitorUpdateIdZZZ_free(long[] _res);
6122         // void APIError_free(struct LDKAPIError this_ptr);
6123         public static native void APIError_free(long this_ptr);
6124         // uint64_t APIError_clone_ptr(LDKAPIError *NONNULL_PTR arg);
6125         public static native long APIError_clone_ptr(long arg);
6126         // struct LDKAPIError APIError_clone(const struct LDKAPIError *NONNULL_PTR orig);
6127         public static native long APIError_clone(long orig);
6128         // struct LDKAPIError APIError_apimisuse_error(struct LDKStr err);
6129         public static native long APIError_apimisuse_error(String err);
6130         // struct LDKAPIError APIError_fee_rate_too_high(struct LDKStr err, uint32_t feerate);
6131         public static native long APIError_fee_rate_too_high(String err, int feerate);
6132         // struct LDKAPIError APIError_invalid_route(struct LDKStr err);
6133         public static native long APIError_invalid_route(String err);
6134         // struct LDKAPIError APIError_channel_unavailable(struct LDKStr err);
6135         public static native long APIError_channel_unavailable(String err);
6136         // struct LDKAPIError APIError_monitor_update_in_progress(void);
6137         public static native long APIError_monitor_update_in_progress();
6138         // struct LDKAPIError APIError_incompatible_shutdown_script(struct LDKShutdownScript script);
6139         public static native long APIError_incompatible_shutdown_script(long script);
6140         // bool APIError_eq(const struct LDKAPIError *NONNULL_PTR a, const struct LDKAPIError *NONNULL_PTR b);
6141         public static native boolean APIError_eq(long a, long b);
6142         // struct LDKCVec_u8Z APIError_write(const struct LDKAPIError *NONNULL_PTR obj);
6143         public static native byte[] APIError_write(long obj);
6144         // struct LDKCResult_COption_APIErrorZDecodeErrorZ APIError_read(struct LDKu8slice ser);
6145         public static native long APIError_read(byte[] ser);
6146         // void BigSize_free(struct LDKBigSize this_obj);
6147         public static native void BigSize_free(long this_obj);
6148         // uint64_t BigSize_get_a(const struct LDKBigSize *NONNULL_PTR this_ptr);
6149         public static native long BigSize_get_a(long this_ptr);
6150         // void BigSize_set_a(struct LDKBigSize *NONNULL_PTR this_ptr, uint64_t val);
6151         public static native void BigSize_set_a(long this_ptr, long val);
6152         // MUST_USE_RES struct LDKBigSize BigSize_new(uint64_t a_arg);
6153         public static native long BigSize_new(long a_arg);
6154         // uint64_t BigSize_clone_ptr(LDKBigSize *NONNULL_PTR arg);
6155         public static native long BigSize_clone_ptr(long arg);
6156         // struct LDKBigSize BigSize_clone(const struct LDKBigSize *NONNULL_PTR orig);
6157         public static native long BigSize_clone(long orig);
6158         // uint64_t BigSize_hash(const struct LDKBigSize *NONNULL_PTR o);
6159         public static native long BigSize_hash(long o);
6160         // bool BigSize_eq(const struct LDKBigSize *NONNULL_PTR a, const struct LDKBigSize *NONNULL_PTR b);
6161         public static native boolean BigSize_eq(long a, long b);
6162         // struct LDKCVec_u8Z BigSize_write(const struct LDKBigSize *NONNULL_PTR obj);
6163         public static native byte[] BigSize_write(long obj);
6164         // struct LDKCResult_BigSizeDecodeErrorZ BigSize_read(struct LDKu8slice ser);
6165         public static native long BigSize_read(byte[] ser);
6166         // void Hostname_free(struct LDKHostname this_obj);
6167         public static native void Hostname_free(long this_obj);
6168         // uint64_t Hostname_clone_ptr(LDKHostname *NONNULL_PTR arg);
6169         public static native long Hostname_clone_ptr(long arg);
6170         // struct LDKHostname Hostname_clone(const struct LDKHostname *NONNULL_PTR orig);
6171         public static native long Hostname_clone(long orig);
6172         // bool Hostname_eq(const struct LDKHostname *NONNULL_PTR a, const struct LDKHostname *NONNULL_PTR b);
6173         public static native boolean Hostname_eq(long a, long b);
6174         // MUST_USE_RES uint8_t Hostname_len(const struct LDKHostname *NONNULL_PTR this_arg);
6175         public static native byte Hostname_len(long this_arg);
6176         // struct LDKCVec_u8Z Hostname_write(const struct LDKHostname *NONNULL_PTR obj);
6177         public static native byte[] Hostname_write(long obj);
6178         // struct LDKCResult_HostnameDecodeErrorZ Hostname_read(struct LDKu8slice ser);
6179         public static native long Hostname_read(byte[] ser);
6180         // void TransactionU16LenLimited_free(struct LDKTransactionU16LenLimited this_obj);
6181         public static native void TransactionU16LenLimited_free(long this_obj);
6182         // uint64_t TransactionU16LenLimited_clone_ptr(LDKTransactionU16LenLimited *NONNULL_PTR arg);
6183         public static native long TransactionU16LenLimited_clone_ptr(long arg);
6184         // struct LDKTransactionU16LenLimited TransactionU16LenLimited_clone(const struct LDKTransactionU16LenLimited *NONNULL_PTR orig);
6185         public static native long TransactionU16LenLimited_clone(long orig);
6186         // bool TransactionU16LenLimited_eq(const struct LDKTransactionU16LenLimited *NONNULL_PTR a, const struct LDKTransactionU16LenLimited *NONNULL_PTR b);
6187         public static native boolean TransactionU16LenLimited_eq(long a, long b);
6188         // MUST_USE_RES struct LDKCResult_TransactionU16LenLimitedNoneZ TransactionU16LenLimited_new(struct LDKTransaction transaction);
6189         public static native long TransactionU16LenLimited_new(byte[] transaction);
6190         // MUST_USE_RES struct LDKTransaction TransactionU16LenLimited_into_transaction(struct LDKTransactionU16LenLimited this_arg);
6191         public static native byte[] TransactionU16LenLimited_into_transaction(long this_arg);
6192         // struct LDKCVec_u8Z TransactionU16LenLimited_write(const struct LDKTransactionU16LenLimited *NONNULL_PTR obj);
6193         public static native byte[] TransactionU16LenLimited_write(long obj);
6194         // struct LDKCResult_TransactionU16LenLimitedDecodeErrorZ TransactionU16LenLimited_read(struct LDKu8slice ser);
6195         public static native long TransactionU16LenLimited_read(byte[] ser);
6196         // struct LDKCResult_StrSecp256k1ErrorZ sign(struct LDKu8slice msg, const uint8_t (*sk)[32]);
6197         public static native long sign(byte[] msg, byte[] sk);
6198         // struct LDKCResult_PublicKeySecp256k1ErrorZ recover_pk(struct LDKu8slice msg, struct LDKStr sig);
6199         public static native long recover_pk(byte[] msg, String sig);
6200         // bool verify(struct LDKu8slice msg, struct LDKStr sig, struct LDKPublicKey pk);
6201         public static native boolean verify(byte[] msg, String sig, byte[] pk);
6202         // struct LDKCVec_u8Z construct_invoice_preimage(struct LDKu8slice hrp_bytes, struct LDKCVec_U5Z data_without_signature);
6203         public static native byte[] construct_invoice_preimage(byte[] hrp_bytes, byte[] data_without_signature);
6204         // void KVStore_free(struct LDKKVStore this_ptr);
6205         public static native void KVStore_free(long this_ptr);
6206         // void Persister_free(struct LDKPersister this_ptr);
6207         public static native void Persister_free(long this_ptr);
6208         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ read_channel_monitors(struct LDKKVStore kv_store, struct LDKEntropySource entropy_source, struct LDKSignerProvider signer_provider);
6209         public static native long read_channel_monitors(long kv_store, long entropy_source, long signer_provider);
6210         // void MonitorUpdatingPersister_free(struct LDKMonitorUpdatingPersister this_obj);
6211         public static native void MonitorUpdatingPersister_free(long this_obj);
6212         // MUST_USE_RES struct LDKMonitorUpdatingPersister MonitorUpdatingPersister_new(struct LDKKVStore kv_store, struct LDKLogger logger, uint64_t maximum_pending_updates, struct LDKEntropySource entropy_source, struct LDKSignerProvider signer_provider);
6213         public static native long MonitorUpdatingPersister_new(long kv_store, long logger, long maximum_pending_updates, long entropy_source, long signer_provider);
6214         // MUST_USE_RES struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesChannelMonitorZZIOErrorZ MonitorUpdatingPersister_read_all_channel_monitors_with_updates(const struct LDKMonitorUpdatingPersister *NONNULL_PTR this_arg, const struct LDKBroadcasterInterface *NONNULL_PTR broadcaster, const struct LDKFeeEstimator *NONNULL_PTR fee_estimator);
6215         public static native long MonitorUpdatingPersister_read_all_channel_monitors_with_updates(long this_arg, long broadcaster, long fee_estimator);
6216         // MUST_USE_RES struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZIOErrorZ MonitorUpdatingPersister_read_channel_monitor_with_updates(const struct LDKMonitorUpdatingPersister *NONNULL_PTR this_arg, const struct LDKBroadcasterInterface *NONNULL_PTR broadcaster, const struct LDKFeeEstimator *NONNULL_PTR fee_estimator, struct LDKStr monitor_key);
6217         public static native long MonitorUpdatingPersister_read_channel_monitor_with_updates(long this_arg, long broadcaster, long fee_estimator, String monitor_key);
6218         // MUST_USE_RES struct LDKCResult_NoneIOErrorZ MonitorUpdatingPersister_cleanup_stale_updates(const struct LDKMonitorUpdatingPersister *NONNULL_PTR this_arg, bool lazy);
6219         public static native long MonitorUpdatingPersister_cleanup_stale_updates(long this_arg, boolean lazy);
6220         // struct LDKPersist MonitorUpdatingPersister_as_Persist(const struct LDKMonitorUpdatingPersister *NONNULL_PTR this_arg);
6221         public static native long MonitorUpdatingPersister_as_Persist(long this_arg);
6222         // void UntrustedString_free(struct LDKUntrustedString this_obj);
6223         public static native void UntrustedString_free(long this_obj);
6224         // struct LDKStr UntrustedString_get_a(const struct LDKUntrustedString *NONNULL_PTR this_ptr);
6225         public static native String UntrustedString_get_a(long this_ptr);
6226         // void UntrustedString_set_a(struct LDKUntrustedString *NONNULL_PTR this_ptr, struct LDKStr val);
6227         public static native void UntrustedString_set_a(long this_ptr, String val);
6228         // MUST_USE_RES struct LDKUntrustedString UntrustedString_new(struct LDKStr a_arg);
6229         public static native long UntrustedString_new(String a_arg);
6230         // uint64_t UntrustedString_clone_ptr(LDKUntrustedString *NONNULL_PTR arg);
6231         public static native long UntrustedString_clone_ptr(long arg);
6232         // struct LDKUntrustedString UntrustedString_clone(const struct LDKUntrustedString *NONNULL_PTR orig);
6233         public static native long UntrustedString_clone(long orig);
6234         // bool UntrustedString_eq(const struct LDKUntrustedString *NONNULL_PTR a, const struct LDKUntrustedString *NONNULL_PTR b);
6235         public static native boolean UntrustedString_eq(long a, long b);
6236         // struct LDKCVec_u8Z UntrustedString_write(const struct LDKUntrustedString *NONNULL_PTR obj);
6237         public static native byte[] UntrustedString_write(long obj);
6238         // struct LDKCResult_UntrustedStringDecodeErrorZ UntrustedString_read(struct LDKu8slice ser);
6239         public static native long UntrustedString_read(byte[] ser);
6240         // void PrintableString_free(struct LDKPrintableString this_obj);
6241         public static native void PrintableString_free(long this_obj);
6242         // struct LDKStr PrintableString_get_a(const struct LDKPrintableString *NONNULL_PTR this_ptr);
6243         public static native String PrintableString_get_a(long this_ptr);
6244         // void PrintableString_set_a(struct LDKPrintableString *NONNULL_PTR this_ptr, struct LDKStr val);
6245         public static native void PrintableString_set_a(long this_ptr, String val);
6246         // MUST_USE_RES struct LDKPrintableString PrintableString_new(struct LDKStr a_arg);
6247         public static native long PrintableString_new(String a_arg);
6248         // void FutureCallback_free(struct LDKFutureCallback this_ptr);
6249         public static native void FutureCallback_free(long this_ptr);
6250         // void Future_free(struct LDKFuture this_obj);
6251         public static native void Future_free(long this_obj);
6252         // uint64_t Future_clone_ptr(LDKFuture *NONNULL_PTR arg);
6253         public static native long Future_clone_ptr(long arg);
6254         // struct LDKFuture Future_clone(const struct LDKFuture *NONNULL_PTR orig);
6255         public static native long Future_clone(long orig);
6256         // void Future_register_callback_fn(const struct LDKFuture *NONNULL_PTR this_arg, struct LDKFutureCallback callback);
6257         public static native void Future_register_callback_fn(long this_arg, long callback);
6258         // void Future_wait(struct LDKFuture this_arg);
6259         public static native void Future_wait(long this_arg);
6260         // MUST_USE_RES bool Future_wait_timeout(struct LDKFuture this_arg, uint64_t max_wait);
6261         public static native boolean Future_wait_timeout(long this_arg, long max_wait);
6262         // void Sleeper_free(struct LDKSleeper this_obj);
6263         public static native void Sleeper_free(long this_obj);
6264         // MUST_USE_RES struct LDKSleeper Sleeper_from_single_future(struct LDKFuture future);
6265         public static native long Sleeper_from_single_future(long future);
6266         // MUST_USE_RES struct LDKSleeper Sleeper_from_two_futures(struct LDKFuture fut_a, struct LDKFuture fut_b);
6267         public static native long Sleeper_from_two_futures(long fut_a, long fut_b);
6268         // MUST_USE_RES struct LDKSleeper Sleeper_new(struct LDKCVec_FutureZ futures);
6269         public static native long Sleeper_new(long[] futures);
6270         // void Sleeper_wait(const struct LDKSleeper *NONNULL_PTR this_arg);
6271         public static native void Sleeper_wait(long this_arg);
6272         // MUST_USE_RES bool Sleeper_wait_timeout(const struct LDKSleeper *NONNULL_PTR this_arg, uint64_t max_wait);
6273         public static native boolean Sleeper_wait_timeout(long this_arg, long max_wait);
6274         // enum LDKLevel Level_clone(const enum LDKLevel *NONNULL_PTR orig);
6275         public static native Level Level_clone(long orig);
6276         // enum LDKLevel Level_gossip(void);
6277         public static native Level Level_gossip();
6278         // enum LDKLevel Level_trace(void);
6279         public static native Level Level_trace();
6280         // enum LDKLevel Level_debug(void);
6281         public static native Level Level_debug();
6282         // enum LDKLevel Level_info(void);
6283         public static native Level Level_info();
6284         // enum LDKLevel Level_warn(void);
6285         public static native Level Level_warn();
6286         // enum LDKLevel Level_error(void);
6287         public static native Level Level_error();
6288         // bool Level_eq(const enum LDKLevel *NONNULL_PTR a, const enum LDKLevel *NONNULL_PTR b);
6289         public static native boolean Level_eq(long a, long b);
6290         // uint64_t Level_hash(const enum LDKLevel *NONNULL_PTR o);
6291         public static native long Level_hash(long o);
6292         // MUST_USE_RES enum LDKLevel Level_max(void);
6293         public static native Level Level_max();
6294         // void Record_free(struct LDKRecord this_obj);
6295         public static native void Record_free(long this_obj);
6296         // enum LDKLevel Record_get_level(const struct LDKRecord *NONNULL_PTR this_ptr);
6297         public static native Level Record_get_level(long this_ptr);
6298         // void Record_set_level(struct LDKRecord *NONNULL_PTR this_ptr, enum LDKLevel val);
6299         public static native void Record_set_level(long this_ptr, Level val);
6300         // struct LDKStr Record_get_args(const struct LDKRecord *NONNULL_PTR this_ptr);
6301         public static native String Record_get_args(long this_ptr);
6302         // void Record_set_args(struct LDKRecord *NONNULL_PTR this_ptr, struct LDKStr val);
6303         public static native void Record_set_args(long this_ptr, String val);
6304         // struct LDKStr Record_get_module_path(const struct LDKRecord *NONNULL_PTR this_ptr);
6305         public static native String Record_get_module_path(long this_ptr);
6306         // void Record_set_module_path(struct LDKRecord *NONNULL_PTR this_ptr, struct LDKStr val);
6307         public static native void Record_set_module_path(long this_ptr, String val);
6308         // struct LDKStr Record_get_file(const struct LDKRecord *NONNULL_PTR this_ptr);
6309         public static native String Record_get_file(long this_ptr);
6310         // void Record_set_file(struct LDKRecord *NONNULL_PTR this_ptr, struct LDKStr val);
6311         public static native void Record_set_file(long this_ptr, String val);
6312         // uint32_t Record_get_line(const struct LDKRecord *NONNULL_PTR this_ptr);
6313         public static native int Record_get_line(long this_ptr);
6314         // void Record_set_line(struct LDKRecord *NONNULL_PTR this_ptr, uint32_t val);
6315         public static native void Record_set_line(long this_ptr, int val);
6316         // uint64_t Record_clone_ptr(LDKRecord *NONNULL_PTR arg);
6317         public static native long Record_clone_ptr(long arg);
6318         // struct LDKRecord Record_clone(const struct LDKRecord *NONNULL_PTR orig);
6319         public static native long Record_clone(long orig);
6320         // void Logger_free(struct LDKLogger this_ptr);
6321         public static native void Logger_free(long this_ptr);
6322         // void ChannelHandshakeConfig_free(struct LDKChannelHandshakeConfig this_obj);
6323         public static native void ChannelHandshakeConfig_free(long this_obj);
6324         // uint32_t ChannelHandshakeConfig_get_minimum_depth(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6325         public static native int ChannelHandshakeConfig_get_minimum_depth(long this_ptr);
6326         // void ChannelHandshakeConfig_set_minimum_depth(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint32_t val);
6327         public static native void ChannelHandshakeConfig_set_minimum_depth(long this_ptr, int val);
6328         // uint16_t ChannelHandshakeConfig_get_our_to_self_delay(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6329         public static native short ChannelHandshakeConfig_get_our_to_self_delay(long this_ptr);
6330         // void ChannelHandshakeConfig_set_our_to_self_delay(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint16_t val);
6331         public static native void ChannelHandshakeConfig_set_our_to_self_delay(long this_ptr, short val);
6332         // uint64_t ChannelHandshakeConfig_get_our_htlc_minimum_msat(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6333         public static native long ChannelHandshakeConfig_get_our_htlc_minimum_msat(long this_ptr);
6334         // void ChannelHandshakeConfig_set_our_htlc_minimum_msat(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint64_t val);
6335         public static native void ChannelHandshakeConfig_set_our_htlc_minimum_msat(long this_ptr, long val);
6336         // uint8_t ChannelHandshakeConfig_get_max_inbound_htlc_value_in_flight_percent_of_channel(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6337         public static native byte ChannelHandshakeConfig_get_max_inbound_htlc_value_in_flight_percent_of_channel(long this_ptr);
6338         // void ChannelHandshakeConfig_set_max_inbound_htlc_value_in_flight_percent_of_channel(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint8_t val);
6339         public static native void ChannelHandshakeConfig_set_max_inbound_htlc_value_in_flight_percent_of_channel(long this_ptr, byte val);
6340         // bool ChannelHandshakeConfig_get_negotiate_scid_privacy(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6341         public static native boolean ChannelHandshakeConfig_get_negotiate_scid_privacy(long this_ptr);
6342         // void ChannelHandshakeConfig_set_negotiate_scid_privacy(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, bool val);
6343         public static native void ChannelHandshakeConfig_set_negotiate_scid_privacy(long this_ptr, boolean val);
6344         // bool ChannelHandshakeConfig_get_announced_channel(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6345         public static native boolean ChannelHandshakeConfig_get_announced_channel(long this_ptr);
6346         // void ChannelHandshakeConfig_set_announced_channel(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, bool val);
6347         public static native void ChannelHandshakeConfig_set_announced_channel(long this_ptr, boolean val);
6348         // bool ChannelHandshakeConfig_get_commit_upfront_shutdown_pubkey(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6349         public static native boolean ChannelHandshakeConfig_get_commit_upfront_shutdown_pubkey(long this_ptr);
6350         // void ChannelHandshakeConfig_set_commit_upfront_shutdown_pubkey(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, bool val);
6351         public static native void ChannelHandshakeConfig_set_commit_upfront_shutdown_pubkey(long this_ptr, boolean val);
6352         // uint32_t ChannelHandshakeConfig_get_their_channel_reserve_proportional_millionths(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6353         public static native int ChannelHandshakeConfig_get_their_channel_reserve_proportional_millionths(long this_ptr);
6354         // void ChannelHandshakeConfig_set_their_channel_reserve_proportional_millionths(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint32_t val);
6355         public static native void ChannelHandshakeConfig_set_their_channel_reserve_proportional_millionths(long this_ptr, int val);
6356         // bool ChannelHandshakeConfig_get_negotiate_anchors_zero_fee_htlc_tx(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6357         public static native boolean ChannelHandshakeConfig_get_negotiate_anchors_zero_fee_htlc_tx(long this_ptr);
6358         // void ChannelHandshakeConfig_set_negotiate_anchors_zero_fee_htlc_tx(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, bool val);
6359         public static native void ChannelHandshakeConfig_set_negotiate_anchors_zero_fee_htlc_tx(long this_ptr, boolean val);
6360         // uint16_t ChannelHandshakeConfig_get_our_max_accepted_htlcs(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
6361         public static native short ChannelHandshakeConfig_get_our_max_accepted_htlcs(long this_ptr);
6362         // void ChannelHandshakeConfig_set_our_max_accepted_htlcs(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint16_t val);
6363         public static native void ChannelHandshakeConfig_set_our_max_accepted_htlcs(long this_ptr, short val);
6364         // MUST_USE_RES struct LDKChannelHandshakeConfig ChannelHandshakeConfig_new(uint32_t minimum_depth_arg, uint16_t our_to_self_delay_arg, uint64_t our_htlc_minimum_msat_arg, uint8_t max_inbound_htlc_value_in_flight_percent_of_channel_arg, bool negotiate_scid_privacy_arg, bool announced_channel_arg, bool commit_upfront_shutdown_pubkey_arg, uint32_t their_channel_reserve_proportional_millionths_arg, bool negotiate_anchors_zero_fee_htlc_tx_arg, uint16_t our_max_accepted_htlcs_arg);
6365         public static native long ChannelHandshakeConfig_new(int minimum_depth_arg, short our_to_self_delay_arg, long our_htlc_minimum_msat_arg, byte max_inbound_htlc_value_in_flight_percent_of_channel_arg, boolean negotiate_scid_privacy_arg, boolean announced_channel_arg, boolean commit_upfront_shutdown_pubkey_arg, int their_channel_reserve_proportional_millionths_arg, boolean negotiate_anchors_zero_fee_htlc_tx_arg, short our_max_accepted_htlcs_arg);
6366         // uint64_t ChannelHandshakeConfig_clone_ptr(LDKChannelHandshakeConfig *NONNULL_PTR arg);
6367         public static native long ChannelHandshakeConfig_clone_ptr(long arg);
6368         // struct LDKChannelHandshakeConfig ChannelHandshakeConfig_clone(const struct LDKChannelHandshakeConfig *NONNULL_PTR orig);
6369         public static native long ChannelHandshakeConfig_clone(long orig);
6370         // MUST_USE_RES struct LDKChannelHandshakeConfig ChannelHandshakeConfig_default(void);
6371         public static native long ChannelHandshakeConfig_default();
6372         // void ChannelHandshakeLimits_free(struct LDKChannelHandshakeLimits this_obj);
6373         public static native void ChannelHandshakeLimits_free(long this_obj);
6374         // uint64_t ChannelHandshakeLimits_get_min_funding_satoshis(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6375         public static native long ChannelHandshakeLimits_get_min_funding_satoshis(long this_ptr);
6376         // void ChannelHandshakeLimits_set_min_funding_satoshis(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
6377         public static native void ChannelHandshakeLimits_set_min_funding_satoshis(long this_ptr, long val);
6378         // uint64_t ChannelHandshakeLimits_get_max_funding_satoshis(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6379         public static native long ChannelHandshakeLimits_get_max_funding_satoshis(long this_ptr);
6380         // void ChannelHandshakeLimits_set_max_funding_satoshis(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
6381         public static native void ChannelHandshakeLimits_set_max_funding_satoshis(long this_ptr, long val);
6382         // uint64_t ChannelHandshakeLimits_get_max_htlc_minimum_msat(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6383         public static native long ChannelHandshakeLimits_get_max_htlc_minimum_msat(long this_ptr);
6384         // void ChannelHandshakeLimits_set_max_htlc_minimum_msat(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
6385         public static native void ChannelHandshakeLimits_set_max_htlc_minimum_msat(long this_ptr, long val);
6386         // uint64_t ChannelHandshakeLimits_get_min_max_htlc_value_in_flight_msat(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6387         public static native long ChannelHandshakeLimits_get_min_max_htlc_value_in_flight_msat(long this_ptr);
6388         // void ChannelHandshakeLimits_set_min_max_htlc_value_in_flight_msat(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
6389         public static native void ChannelHandshakeLimits_set_min_max_htlc_value_in_flight_msat(long this_ptr, long val);
6390         // uint64_t ChannelHandshakeLimits_get_max_channel_reserve_satoshis(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6391         public static native long ChannelHandshakeLimits_get_max_channel_reserve_satoshis(long this_ptr);
6392         // void ChannelHandshakeLimits_set_max_channel_reserve_satoshis(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
6393         public static native void ChannelHandshakeLimits_set_max_channel_reserve_satoshis(long this_ptr, long val);
6394         // uint16_t ChannelHandshakeLimits_get_min_max_accepted_htlcs(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6395         public static native short ChannelHandshakeLimits_get_min_max_accepted_htlcs(long this_ptr);
6396         // void ChannelHandshakeLimits_set_min_max_accepted_htlcs(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint16_t val);
6397         public static native void ChannelHandshakeLimits_set_min_max_accepted_htlcs(long this_ptr, short val);
6398         // uint32_t ChannelHandshakeLimits_get_max_minimum_depth(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6399         public static native int ChannelHandshakeLimits_get_max_minimum_depth(long this_ptr);
6400         // void ChannelHandshakeLimits_set_max_minimum_depth(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint32_t val);
6401         public static native void ChannelHandshakeLimits_set_max_minimum_depth(long this_ptr, int val);
6402         // bool ChannelHandshakeLimits_get_trust_own_funding_0conf(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6403         public static native boolean ChannelHandshakeLimits_get_trust_own_funding_0conf(long this_ptr);
6404         // void ChannelHandshakeLimits_set_trust_own_funding_0conf(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, bool val);
6405         public static native void ChannelHandshakeLimits_set_trust_own_funding_0conf(long this_ptr, boolean val);
6406         // bool ChannelHandshakeLimits_get_force_announced_channel_preference(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6407         public static native boolean ChannelHandshakeLimits_get_force_announced_channel_preference(long this_ptr);
6408         // void ChannelHandshakeLimits_set_force_announced_channel_preference(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, bool val);
6409         public static native void ChannelHandshakeLimits_set_force_announced_channel_preference(long this_ptr, boolean val);
6410         // uint16_t ChannelHandshakeLimits_get_their_to_self_delay(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
6411         public static native short ChannelHandshakeLimits_get_their_to_self_delay(long this_ptr);
6412         // void ChannelHandshakeLimits_set_their_to_self_delay(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint16_t val);
6413         public static native void ChannelHandshakeLimits_set_their_to_self_delay(long this_ptr, short val);
6414         // MUST_USE_RES struct LDKChannelHandshakeLimits ChannelHandshakeLimits_new(uint64_t min_funding_satoshis_arg, uint64_t max_funding_satoshis_arg, uint64_t max_htlc_minimum_msat_arg, uint64_t min_max_htlc_value_in_flight_msat_arg, uint64_t max_channel_reserve_satoshis_arg, uint16_t min_max_accepted_htlcs_arg, uint32_t max_minimum_depth_arg, bool trust_own_funding_0conf_arg, bool force_announced_channel_preference_arg, uint16_t their_to_self_delay_arg);
6415         public static native long ChannelHandshakeLimits_new(long min_funding_satoshis_arg, long max_funding_satoshis_arg, long max_htlc_minimum_msat_arg, long min_max_htlc_value_in_flight_msat_arg, long max_channel_reserve_satoshis_arg, short min_max_accepted_htlcs_arg, int max_minimum_depth_arg, boolean trust_own_funding_0conf_arg, boolean force_announced_channel_preference_arg, short their_to_self_delay_arg);
6416         // uint64_t ChannelHandshakeLimits_clone_ptr(LDKChannelHandshakeLimits *NONNULL_PTR arg);
6417         public static native long ChannelHandshakeLimits_clone_ptr(long arg);
6418         // struct LDKChannelHandshakeLimits ChannelHandshakeLimits_clone(const struct LDKChannelHandshakeLimits *NONNULL_PTR orig);
6419         public static native long ChannelHandshakeLimits_clone(long orig);
6420         // MUST_USE_RES struct LDKChannelHandshakeLimits ChannelHandshakeLimits_default(void);
6421         public static native long ChannelHandshakeLimits_default();
6422         // void MaxDustHTLCExposure_free(struct LDKMaxDustHTLCExposure this_ptr);
6423         public static native void MaxDustHTLCExposure_free(long this_ptr);
6424         // uint64_t MaxDustHTLCExposure_clone_ptr(LDKMaxDustHTLCExposure *NONNULL_PTR arg);
6425         public static native long MaxDustHTLCExposure_clone_ptr(long arg);
6426         // struct LDKMaxDustHTLCExposure MaxDustHTLCExposure_clone(const struct LDKMaxDustHTLCExposure *NONNULL_PTR orig);
6427         public static native long MaxDustHTLCExposure_clone(long orig);
6428         // struct LDKMaxDustHTLCExposure MaxDustHTLCExposure_fixed_limit_msat(uint64_t a);
6429         public static native long MaxDustHTLCExposure_fixed_limit_msat(long a);
6430         // struct LDKMaxDustHTLCExposure MaxDustHTLCExposure_fee_rate_multiplier(uint64_t a);
6431         public static native long MaxDustHTLCExposure_fee_rate_multiplier(long a);
6432         // bool MaxDustHTLCExposure_eq(const struct LDKMaxDustHTLCExposure *NONNULL_PTR a, const struct LDKMaxDustHTLCExposure *NONNULL_PTR b);
6433         public static native boolean MaxDustHTLCExposure_eq(long a, long b);
6434         // struct LDKCVec_u8Z MaxDustHTLCExposure_write(const struct LDKMaxDustHTLCExposure *NONNULL_PTR obj);
6435         public static native byte[] MaxDustHTLCExposure_write(long obj);
6436         // struct LDKCResult_MaxDustHTLCExposureDecodeErrorZ MaxDustHTLCExposure_read(struct LDKu8slice ser);
6437         public static native long MaxDustHTLCExposure_read(byte[] ser);
6438         // void ChannelConfig_free(struct LDKChannelConfig this_obj);
6439         public static native void ChannelConfig_free(long this_obj);
6440         // uint32_t ChannelConfig_get_forwarding_fee_proportional_millionths(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
6441         public static native int ChannelConfig_get_forwarding_fee_proportional_millionths(long this_ptr);
6442         // void ChannelConfig_set_forwarding_fee_proportional_millionths(struct LDKChannelConfig *NONNULL_PTR this_ptr, uint32_t val);
6443         public static native void ChannelConfig_set_forwarding_fee_proportional_millionths(long this_ptr, int val);
6444         // uint32_t ChannelConfig_get_forwarding_fee_base_msat(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
6445         public static native int ChannelConfig_get_forwarding_fee_base_msat(long this_ptr);
6446         // void ChannelConfig_set_forwarding_fee_base_msat(struct LDKChannelConfig *NONNULL_PTR this_ptr, uint32_t val);
6447         public static native void ChannelConfig_set_forwarding_fee_base_msat(long this_ptr, int val);
6448         // uint16_t ChannelConfig_get_cltv_expiry_delta(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
6449         public static native short ChannelConfig_get_cltv_expiry_delta(long this_ptr);
6450         // void ChannelConfig_set_cltv_expiry_delta(struct LDKChannelConfig *NONNULL_PTR this_ptr, uint16_t val);
6451         public static native void ChannelConfig_set_cltv_expiry_delta(long this_ptr, short val);
6452         // struct LDKMaxDustHTLCExposure ChannelConfig_get_max_dust_htlc_exposure(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
6453         public static native long ChannelConfig_get_max_dust_htlc_exposure(long this_ptr);
6454         // void ChannelConfig_set_max_dust_htlc_exposure(struct LDKChannelConfig *NONNULL_PTR this_ptr, struct LDKMaxDustHTLCExposure val);
6455         public static native void ChannelConfig_set_max_dust_htlc_exposure(long this_ptr, long val);
6456         // uint64_t ChannelConfig_get_force_close_avoidance_max_fee_satoshis(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
6457         public static native long ChannelConfig_get_force_close_avoidance_max_fee_satoshis(long this_ptr);
6458         // void ChannelConfig_set_force_close_avoidance_max_fee_satoshis(struct LDKChannelConfig *NONNULL_PTR this_ptr, uint64_t val);
6459         public static native void ChannelConfig_set_force_close_avoidance_max_fee_satoshis(long this_ptr, long val);
6460         // bool ChannelConfig_get_accept_underpaying_htlcs(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
6461         public static native boolean ChannelConfig_get_accept_underpaying_htlcs(long this_ptr);
6462         // void ChannelConfig_set_accept_underpaying_htlcs(struct LDKChannelConfig *NONNULL_PTR this_ptr, bool val);
6463         public static native void ChannelConfig_set_accept_underpaying_htlcs(long this_ptr, boolean val);
6464         // MUST_USE_RES struct LDKChannelConfig ChannelConfig_new(uint32_t forwarding_fee_proportional_millionths_arg, uint32_t forwarding_fee_base_msat_arg, uint16_t cltv_expiry_delta_arg, struct LDKMaxDustHTLCExposure max_dust_htlc_exposure_arg, uint64_t force_close_avoidance_max_fee_satoshis_arg, bool accept_underpaying_htlcs_arg);
6465         public static native long ChannelConfig_new(int forwarding_fee_proportional_millionths_arg, int forwarding_fee_base_msat_arg, short cltv_expiry_delta_arg, long max_dust_htlc_exposure_arg, long force_close_avoidance_max_fee_satoshis_arg, boolean accept_underpaying_htlcs_arg);
6466         // uint64_t ChannelConfig_clone_ptr(LDKChannelConfig *NONNULL_PTR arg);
6467         public static native long ChannelConfig_clone_ptr(long arg);
6468         // struct LDKChannelConfig ChannelConfig_clone(const struct LDKChannelConfig *NONNULL_PTR orig);
6469         public static native long ChannelConfig_clone(long orig);
6470         // bool ChannelConfig_eq(const struct LDKChannelConfig *NONNULL_PTR a, const struct LDKChannelConfig *NONNULL_PTR b);
6471         public static native boolean ChannelConfig_eq(long a, long b);
6472         // void ChannelConfig_apply(struct LDKChannelConfig *NONNULL_PTR this_arg, const struct LDKChannelConfigUpdate *NONNULL_PTR update);
6473         public static native void ChannelConfig_apply(long this_arg, long update);
6474         // MUST_USE_RES struct LDKChannelConfig ChannelConfig_default(void);
6475         public static native long ChannelConfig_default();
6476         // struct LDKCVec_u8Z ChannelConfig_write(const struct LDKChannelConfig *NONNULL_PTR obj);
6477         public static native byte[] ChannelConfig_write(long obj);
6478         // struct LDKCResult_ChannelConfigDecodeErrorZ ChannelConfig_read(struct LDKu8slice ser);
6479         public static native long ChannelConfig_read(byte[] ser);
6480         // void ChannelConfigUpdate_free(struct LDKChannelConfigUpdate this_obj);
6481         public static native void ChannelConfigUpdate_free(long this_obj);
6482         // struct LDKCOption_u32Z ChannelConfigUpdate_get_forwarding_fee_proportional_millionths(const struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr);
6483         public static native long ChannelConfigUpdate_get_forwarding_fee_proportional_millionths(long this_ptr);
6484         // void ChannelConfigUpdate_set_forwarding_fee_proportional_millionths(struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr, struct LDKCOption_u32Z val);
6485         public static native void ChannelConfigUpdate_set_forwarding_fee_proportional_millionths(long this_ptr, long val);
6486         // struct LDKCOption_u32Z ChannelConfigUpdate_get_forwarding_fee_base_msat(const struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr);
6487         public static native long ChannelConfigUpdate_get_forwarding_fee_base_msat(long this_ptr);
6488         // void ChannelConfigUpdate_set_forwarding_fee_base_msat(struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr, struct LDKCOption_u32Z val);
6489         public static native void ChannelConfigUpdate_set_forwarding_fee_base_msat(long this_ptr, long val);
6490         // struct LDKCOption_u16Z ChannelConfigUpdate_get_cltv_expiry_delta(const struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr);
6491         public static native long ChannelConfigUpdate_get_cltv_expiry_delta(long this_ptr);
6492         // void ChannelConfigUpdate_set_cltv_expiry_delta(struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr, struct LDKCOption_u16Z val);
6493         public static native void ChannelConfigUpdate_set_cltv_expiry_delta(long this_ptr, long val);
6494         // struct LDKCOption_MaxDustHTLCExposureZ ChannelConfigUpdate_get_max_dust_htlc_exposure_msat(const struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr);
6495         public static native long ChannelConfigUpdate_get_max_dust_htlc_exposure_msat(long this_ptr);
6496         // void ChannelConfigUpdate_set_max_dust_htlc_exposure_msat(struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr, struct LDKCOption_MaxDustHTLCExposureZ val);
6497         public static native void ChannelConfigUpdate_set_max_dust_htlc_exposure_msat(long this_ptr, long val);
6498         // struct LDKCOption_u64Z ChannelConfigUpdate_get_force_close_avoidance_max_fee_satoshis(const struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr);
6499         public static native long ChannelConfigUpdate_get_force_close_avoidance_max_fee_satoshis(long this_ptr);
6500         // void ChannelConfigUpdate_set_force_close_avoidance_max_fee_satoshis(struct LDKChannelConfigUpdate *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
6501         public static native void ChannelConfigUpdate_set_force_close_avoidance_max_fee_satoshis(long this_ptr, long val);
6502         // MUST_USE_RES struct LDKChannelConfigUpdate ChannelConfigUpdate_new(struct LDKCOption_u32Z forwarding_fee_proportional_millionths_arg, struct LDKCOption_u32Z forwarding_fee_base_msat_arg, struct LDKCOption_u16Z cltv_expiry_delta_arg, struct LDKCOption_MaxDustHTLCExposureZ max_dust_htlc_exposure_msat_arg, struct LDKCOption_u64Z force_close_avoidance_max_fee_satoshis_arg);
6503         public static native long ChannelConfigUpdate_new(long forwarding_fee_proportional_millionths_arg, long forwarding_fee_base_msat_arg, long cltv_expiry_delta_arg, long max_dust_htlc_exposure_msat_arg, long force_close_avoidance_max_fee_satoshis_arg);
6504         // MUST_USE_RES struct LDKChannelConfigUpdate ChannelConfigUpdate_default(void);
6505         public static native long ChannelConfigUpdate_default();
6506         // void UserConfig_free(struct LDKUserConfig this_obj);
6507         public static native void UserConfig_free(long this_obj);
6508         // struct LDKChannelHandshakeConfig UserConfig_get_channel_handshake_config(const struct LDKUserConfig *NONNULL_PTR this_ptr);
6509         public static native long UserConfig_get_channel_handshake_config(long this_ptr);
6510         // void UserConfig_set_channel_handshake_config(struct LDKUserConfig *NONNULL_PTR this_ptr, struct LDKChannelHandshakeConfig val);
6511         public static native void UserConfig_set_channel_handshake_config(long this_ptr, long val);
6512         // struct LDKChannelHandshakeLimits UserConfig_get_channel_handshake_limits(const struct LDKUserConfig *NONNULL_PTR this_ptr);
6513         public static native long UserConfig_get_channel_handshake_limits(long this_ptr);
6514         // void UserConfig_set_channel_handshake_limits(struct LDKUserConfig *NONNULL_PTR this_ptr, struct LDKChannelHandshakeLimits val);
6515         public static native void UserConfig_set_channel_handshake_limits(long this_ptr, long val);
6516         // struct LDKChannelConfig UserConfig_get_channel_config(const struct LDKUserConfig *NONNULL_PTR this_ptr);
6517         public static native long UserConfig_get_channel_config(long this_ptr);
6518         // void UserConfig_set_channel_config(struct LDKUserConfig *NONNULL_PTR this_ptr, struct LDKChannelConfig val);
6519         public static native void UserConfig_set_channel_config(long this_ptr, long val);
6520         // bool UserConfig_get_accept_forwards_to_priv_channels(const struct LDKUserConfig *NONNULL_PTR this_ptr);
6521         public static native boolean UserConfig_get_accept_forwards_to_priv_channels(long this_ptr);
6522         // void UserConfig_set_accept_forwards_to_priv_channels(struct LDKUserConfig *NONNULL_PTR this_ptr, bool val);
6523         public static native void UserConfig_set_accept_forwards_to_priv_channels(long this_ptr, boolean val);
6524         // bool UserConfig_get_accept_inbound_channels(const struct LDKUserConfig *NONNULL_PTR this_ptr);
6525         public static native boolean UserConfig_get_accept_inbound_channels(long this_ptr);
6526         // void UserConfig_set_accept_inbound_channels(struct LDKUserConfig *NONNULL_PTR this_ptr, bool val);
6527         public static native void UserConfig_set_accept_inbound_channels(long this_ptr, boolean val);
6528         // bool UserConfig_get_manually_accept_inbound_channels(const struct LDKUserConfig *NONNULL_PTR this_ptr);
6529         public static native boolean UserConfig_get_manually_accept_inbound_channels(long this_ptr);
6530         // void UserConfig_set_manually_accept_inbound_channels(struct LDKUserConfig *NONNULL_PTR this_ptr, bool val);
6531         public static native void UserConfig_set_manually_accept_inbound_channels(long this_ptr, boolean val);
6532         // bool UserConfig_get_accept_intercept_htlcs(const struct LDKUserConfig *NONNULL_PTR this_ptr);
6533         public static native boolean UserConfig_get_accept_intercept_htlcs(long this_ptr);
6534         // void UserConfig_set_accept_intercept_htlcs(struct LDKUserConfig *NONNULL_PTR this_ptr, bool val);
6535         public static native void UserConfig_set_accept_intercept_htlcs(long this_ptr, boolean val);
6536         // bool UserConfig_get_accept_mpp_keysend(const struct LDKUserConfig *NONNULL_PTR this_ptr);
6537         public static native boolean UserConfig_get_accept_mpp_keysend(long this_ptr);
6538         // void UserConfig_set_accept_mpp_keysend(struct LDKUserConfig *NONNULL_PTR this_ptr, bool val);
6539         public static native void UserConfig_set_accept_mpp_keysend(long this_ptr, boolean val);
6540         // MUST_USE_RES struct LDKUserConfig UserConfig_new(struct LDKChannelHandshakeConfig channel_handshake_config_arg, struct LDKChannelHandshakeLimits channel_handshake_limits_arg, struct LDKChannelConfig channel_config_arg, bool accept_forwards_to_priv_channels_arg, bool accept_inbound_channels_arg, bool manually_accept_inbound_channels_arg, bool accept_intercept_htlcs_arg, bool accept_mpp_keysend_arg);
6541         public static native long UserConfig_new(long channel_handshake_config_arg, long channel_handshake_limits_arg, long channel_config_arg, boolean accept_forwards_to_priv_channels_arg, boolean accept_inbound_channels_arg, boolean manually_accept_inbound_channels_arg, boolean accept_intercept_htlcs_arg, boolean accept_mpp_keysend_arg);
6542         // uint64_t UserConfig_clone_ptr(LDKUserConfig *NONNULL_PTR arg);
6543         public static native long UserConfig_clone_ptr(long arg);
6544         // struct LDKUserConfig UserConfig_clone(const struct LDKUserConfig *NONNULL_PTR orig);
6545         public static native long UserConfig_clone(long orig);
6546         // MUST_USE_RES struct LDKUserConfig UserConfig_default(void);
6547         public static native long UserConfig_default();
6548         // void BestBlock_free(struct LDKBestBlock this_obj);
6549         public static native void BestBlock_free(long this_obj);
6550         // uint64_t BestBlock_clone_ptr(LDKBestBlock *NONNULL_PTR arg);
6551         public static native long BestBlock_clone_ptr(long arg);
6552         // struct LDKBestBlock BestBlock_clone(const struct LDKBestBlock *NONNULL_PTR orig);
6553         public static native long BestBlock_clone(long orig);
6554         // bool BestBlock_eq(const struct LDKBestBlock *NONNULL_PTR a, const struct LDKBestBlock *NONNULL_PTR b);
6555         public static native boolean BestBlock_eq(long a, long b);
6556         // MUST_USE_RES struct LDKBestBlock BestBlock_from_network(enum LDKNetwork network);
6557         public static native long BestBlock_from_network(Network network);
6558         // MUST_USE_RES struct LDKBestBlock BestBlock_new(struct LDKThirtyTwoBytes block_hash, uint32_t height);
6559         public static native long BestBlock_new(byte[] block_hash, int height);
6560         // MUST_USE_RES struct LDKThirtyTwoBytes BestBlock_block_hash(const struct LDKBestBlock *NONNULL_PTR this_arg);
6561         public static native byte[] BestBlock_block_hash(long this_arg);
6562         // MUST_USE_RES uint32_t BestBlock_height(const struct LDKBestBlock *NONNULL_PTR this_arg);
6563         public static native int BestBlock_height(long this_arg);
6564         // void Listen_free(struct LDKListen this_ptr);
6565         public static native void Listen_free(long this_ptr);
6566         // void Confirm_free(struct LDKConfirm this_ptr);
6567         public static native void Confirm_free(long this_ptr);
6568         // enum LDKChannelMonitorUpdateStatus ChannelMonitorUpdateStatus_clone(const enum LDKChannelMonitorUpdateStatus *NONNULL_PTR orig);
6569         public static native ChannelMonitorUpdateStatus ChannelMonitorUpdateStatus_clone(long orig);
6570         // enum LDKChannelMonitorUpdateStatus ChannelMonitorUpdateStatus_completed(void);
6571         public static native ChannelMonitorUpdateStatus ChannelMonitorUpdateStatus_completed();
6572         // enum LDKChannelMonitorUpdateStatus ChannelMonitorUpdateStatus_in_progress(void);
6573         public static native ChannelMonitorUpdateStatus ChannelMonitorUpdateStatus_in_progress();
6574         // enum LDKChannelMonitorUpdateStatus ChannelMonitorUpdateStatus_unrecoverable_error(void);
6575         public static native ChannelMonitorUpdateStatus ChannelMonitorUpdateStatus_unrecoverable_error();
6576         // bool ChannelMonitorUpdateStatus_eq(const enum LDKChannelMonitorUpdateStatus *NONNULL_PTR a, const enum LDKChannelMonitorUpdateStatus *NONNULL_PTR b);
6577         public static native boolean ChannelMonitorUpdateStatus_eq(long a, long b);
6578         // void Watch_free(struct LDKWatch this_ptr);
6579         public static native void Watch_free(long this_ptr);
6580         // void Filter_free(struct LDKFilter this_ptr);
6581         public static native void Filter_free(long this_ptr);
6582         // void WatchedOutput_free(struct LDKWatchedOutput this_obj);
6583         public static native void WatchedOutput_free(long this_obj);
6584         // struct LDKCOption_ThirtyTwoBytesZ WatchedOutput_get_block_hash(const struct LDKWatchedOutput *NONNULL_PTR this_ptr);
6585         public static native long WatchedOutput_get_block_hash(long this_ptr);
6586         // void WatchedOutput_set_block_hash(struct LDKWatchedOutput *NONNULL_PTR this_ptr, struct LDKCOption_ThirtyTwoBytesZ val);
6587         public static native void WatchedOutput_set_block_hash(long this_ptr, long val);
6588         // struct LDKOutPoint WatchedOutput_get_outpoint(const struct LDKWatchedOutput *NONNULL_PTR this_ptr);
6589         public static native long WatchedOutput_get_outpoint(long this_ptr);
6590         // void WatchedOutput_set_outpoint(struct LDKWatchedOutput *NONNULL_PTR this_ptr, struct LDKOutPoint val);
6591         public static native void WatchedOutput_set_outpoint(long this_ptr, long val);
6592         // struct LDKu8slice WatchedOutput_get_script_pubkey(const struct LDKWatchedOutput *NONNULL_PTR this_ptr);
6593         public static native byte[] WatchedOutput_get_script_pubkey(long this_ptr);
6594         // void WatchedOutput_set_script_pubkey(struct LDKWatchedOutput *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
6595         public static native void WatchedOutput_set_script_pubkey(long this_ptr, byte[] val);
6596         // MUST_USE_RES struct LDKWatchedOutput WatchedOutput_new(struct LDKCOption_ThirtyTwoBytesZ block_hash_arg, struct LDKOutPoint outpoint_arg, struct LDKCVec_u8Z script_pubkey_arg);
6597         public static native long WatchedOutput_new(long block_hash_arg, long outpoint_arg, byte[] script_pubkey_arg);
6598         // uint64_t WatchedOutput_clone_ptr(LDKWatchedOutput *NONNULL_PTR arg);
6599         public static native long WatchedOutput_clone_ptr(long arg);
6600         // struct LDKWatchedOutput WatchedOutput_clone(const struct LDKWatchedOutput *NONNULL_PTR orig);
6601         public static native long WatchedOutput_clone(long orig);
6602         // bool WatchedOutput_eq(const struct LDKWatchedOutput *NONNULL_PTR a, const struct LDKWatchedOutput *NONNULL_PTR b);
6603         public static native boolean WatchedOutput_eq(long a, long b);
6604         // uint64_t WatchedOutput_hash(const struct LDKWatchedOutput *NONNULL_PTR o);
6605         public static native long WatchedOutput_hash(long o);
6606         // void BroadcasterInterface_free(struct LDKBroadcasterInterface this_ptr);
6607         public static native void BroadcasterInterface_free(long this_ptr);
6608         // enum LDKConfirmationTarget ConfirmationTarget_clone(const enum LDKConfirmationTarget *NONNULL_PTR orig);
6609         public static native ConfirmationTarget ConfirmationTarget_clone(long orig);
6610         // enum LDKConfirmationTarget ConfirmationTarget_mempool_minimum(void);
6611         public static native ConfirmationTarget ConfirmationTarget_mempool_minimum();
6612         // enum LDKConfirmationTarget ConfirmationTarget_background(void);
6613         public static native ConfirmationTarget ConfirmationTarget_background();
6614         // enum LDKConfirmationTarget ConfirmationTarget_normal(void);
6615         public static native ConfirmationTarget ConfirmationTarget_normal();
6616         // enum LDKConfirmationTarget ConfirmationTarget_high_priority(void);
6617         public static native ConfirmationTarget ConfirmationTarget_high_priority();
6618         // uint64_t ConfirmationTarget_hash(const enum LDKConfirmationTarget *NONNULL_PTR o);
6619         public static native long ConfirmationTarget_hash(long o);
6620         // bool ConfirmationTarget_eq(const enum LDKConfirmationTarget *NONNULL_PTR a, const enum LDKConfirmationTarget *NONNULL_PTR b);
6621         public static native boolean ConfirmationTarget_eq(long a, long b);
6622         // void FeeEstimator_free(struct LDKFeeEstimator this_ptr);
6623         public static native void FeeEstimator_free(long this_ptr);
6624         // void MonitorUpdateId_free(struct LDKMonitorUpdateId this_obj);
6625         public static native void MonitorUpdateId_free(long this_obj);
6626         // uint64_t MonitorUpdateId_clone_ptr(LDKMonitorUpdateId *NONNULL_PTR arg);
6627         public static native long MonitorUpdateId_clone_ptr(long arg);
6628         // struct LDKMonitorUpdateId MonitorUpdateId_clone(const struct LDKMonitorUpdateId *NONNULL_PTR orig);
6629         public static native long MonitorUpdateId_clone(long orig);
6630         // uint64_t MonitorUpdateId_hash(const struct LDKMonitorUpdateId *NONNULL_PTR o);
6631         public static native long MonitorUpdateId_hash(long o);
6632         // bool MonitorUpdateId_eq(const struct LDKMonitorUpdateId *NONNULL_PTR a, const struct LDKMonitorUpdateId *NONNULL_PTR b);
6633         public static native boolean MonitorUpdateId_eq(long a, long b);
6634         // void Persist_free(struct LDKPersist this_ptr);
6635         public static native void Persist_free(long this_ptr);
6636         // void LockedChannelMonitor_free(struct LDKLockedChannelMonitor this_obj);
6637         public static native void LockedChannelMonitor_free(long this_obj);
6638         // void ChainMonitor_free(struct LDKChainMonitor this_obj);
6639         public static native void ChainMonitor_free(long this_obj);
6640         // MUST_USE_RES struct LDKChainMonitor ChainMonitor_new(struct LDKCOption_FilterZ chain_source, struct LDKBroadcasterInterface broadcaster, struct LDKLogger logger, struct LDKFeeEstimator feeest, struct LDKPersist persister);
6641         public static native long ChainMonitor_new(long chain_source, long broadcaster, long logger, long feeest, long persister);
6642         // MUST_USE_RES struct LDKCVec_BalanceZ ChainMonitor_get_claimable_balances(const struct LDKChainMonitor *NONNULL_PTR this_arg, struct LDKCVec_ChannelDetailsZ ignored_channels);
6643         public static native long[] ChainMonitor_get_claimable_balances(long this_arg, long[] ignored_channels);
6644         // MUST_USE_RES struct LDKCResult_LockedChannelMonitorNoneZ ChainMonitor_get_monitor(const struct LDKChainMonitor *NONNULL_PTR this_arg, struct LDKOutPoint funding_txo);
6645         public static native long ChainMonitor_get_monitor(long this_arg, long funding_txo);
6646         // MUST_USE_RES struct LDKCVec_OutPointZ ChainMonitor_list_monitors(const struct LDKChainMonitor *NONNULL_PTR this_arg);
6647         public static native long[] ChainMonitor_list_monitors(long this_arg);
6648         // MUST_USE_RES struct LDKCVec_C2Tuple_OutPointCVec_MonitorUpdateIdZZZ ChainMonitor_list_pending_monitor_updates(const struct LDKChainMonitor *NONNULL_PTR this_arg);
6649         public static native long[] ChainMonitor_list_pending_monitor_updates(long this_arg);
6650         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChainMonitor_channel_monitor_updated(const struct LDKChainMonitor *NONNULL_PTR this_arg, struct LDKOutPoint funding_txo, struct LDKMonitorUpdateId completed_update_id);
6651         public static native long ChainMonitor_channel_monitor_updated(long this_arg, long funding_txo, long completed_update_id);
6652         // MUST_USE_RES struct LDKFuture ChainMonitor_get_update_future(const struct LDKChainMonitor *NONNULL_PTR this_arg);
6653         public static native long ChainMonitor_get_update_future(long this_arg);
6654         // void ChainMonitor_rebroadcast_pending_claims(const struct LDKChainMonitor *NONNULL_PTR this_arg);
6655         public static native void ChainMonitor_rebroadcast_pending_claims(long this_arg);
6656         // struct LDKListen ChainMonitor_as_Listen(const struct LDKChainMonitor *NONNULL_PTR this_arg);
6657         public static native long ChainMonitor_as_Listen(long this_arg);
6658         // struct LDKConfirm ChainMonitor_as_Confirm(const struct LDKChainMonitor *NONNULL_PTR this_arg);
6659         public static native long ChainMonitor_as_Confirm(long this_arg);
6660         // struct LDKWatch ChainMonitor_as_Watch(const struct LDKChainMonitor *NONNULL_PTR this_arg);
6661         public static native long ChainMonitor_as_Watch(long this_arg);
6662         // struct LDKEventsProvider ChainMonitor_as_EventsProvider(const struct LDKChainMonitor *NONNULL_PTR this_arg);
6663         public static native long ChainMonitor_as_EventsProvider(long this_arg);
6664         // void ChannelMonitorUpdate_free(struct LDKChannelMonitorUpdate this_obj);
6665         public static native void ChannelMonitorUpdate_free(long this_obj);
6666         // uint64_t ChannelMonitorUpdate_get_update_id(const struct LDKChannelMonitorUpdate *NONNULL_PTR this_ptr);
6667         public static native long ChannelMonitorUpdate_get_update_id(long this_ptr);
6668         // void ChannelMonitorUpdate_set_update_id(struct LDKChannelMonitorUpdate *NONNULL_PTR this_ptr, uint64_t val);
6669         public static native void ChannelMonitorUpdate_set_update_id(long this_ptr, long val);
6670         // uint64_t ChannelMonitorUpdate_clone_ptr(LDKChannelMonitorUpdate *NONNULL_PTR arg);
6671         public static native long ChannelMonitorUpdate_clone_ptr(long arg);
6672         // struct LDKChannelMonitorUpdate ChannelMonitorUpdate_clone(const struct LDKChannelMonitorUpdate *NONNULL_PTR orig);
6673         public static native long ChannelMonitorUpdate_clone(long orig);
6674         // bool ChannelMonitorUpdate_eq(const struct LDKChannelMonitorUpdate *NONNULL_PTR a, const struct LDKChannelMonitorUpdate *NONNULL_PTR b);
6675         public static native boolean ChannelMonitorUpdate_eq(long a, long b);
6676         // struct LDKCVec_u8Z ChannelMonitorUpdate_write(const struct LDKChannelMonitorUpdate *NONNULL_PTR obj);
6677         public static native byte[] ChannelMonitorUpdate_write(long obj);
6678         // struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ ChannelMonitorUpdate_read(struct LDKu8slice ser);
6679         public static native long ChannelMonitorUpdate_read(byte[] ser);
6680         // void MonitorEvent_free(struct LDKMonitorEvent this_ptr);
6681         public static native void MonitorEvent_free(long this_ptr);
6682         // uint64_t MonitorEvent_clone_ptr(LDKMonitorEvent *NONNULL_PTR arg);
6683         public static native long MonitorEvent_clone_ptr(long arg);
6684         // struct LDKMonitorEvent MonitorEvent_clone(const struct LDKMonitorEvent *NONNULL_PTR orig);
6685         public static native long MonitorEvent_clone(long orig);
6686         // struct LDKMonitorEvent MonitorEvent_htlcevent(struct LDKHTLCUpdate a);
6687         public static native long MonitorEvent_htlcevent(long a);
6688         // struct LDKMonitorEvent MonitorEvent_holder_force_closed(struct LDKOutPoint a);
6689         public static native long MonitorEvent_holder_force_closed(long a);
6690         // struct LDKMonitorEvent MonitorEvent_completed(struct LDKOutPoint funding_txo, uint64_t monitor_update_id);
6691         public static native long MonitorEvent_completed(long funding_txo, long monitor_update_id);
6692         // bool MonitorEvent_eq(const struct LDKMonitorEvent *NONNULL_PTR a, const struct LDKMonitorEvent *NONNULL_PTR b);
6693         public static native boolean MonitorEvent_eq(long a, long b);
6694         // struct LDKCVec_u8Z MonitorEvent_write(const struct LDKMonitorEvent *NONNULL_PTR obj);
6695         public static native byte[] MonitorEvent_write(long obj);
6696         // struct LDKCResult_COption_MonitorEventZDecodeErrorZ MonitorEvent_read(struct LDKu8slice ser);
6697         public static native long MonitorEvent_read(byte[] ser);
6698         // void HTLCUpdate_free(struct LDKHTLCUpdate this_obj);
6699         public static native void HTLCUpdate_free(long this_obj);
6700         // uint64_t HTLCUpdate_clone_ptr(LDKHTLCUpdate *NONNULL_PTR arg);
6701         public static native long HTLCUpdate_clone_ptr(long arg);
6702         // struct LDKHTLCUpdate HTLCUpdate_clone(const struct LDKHTLCUpdate *NONNULL_PTR orig);
6703         public static native long HTLCUpdate_clone(long orig);
6704         // bool HTLCUpdate_eq(const struct LDKHTLCUpdate *NONNULL_PTR a, const struct LDKHTLCUpdate *NONNULL_PTR b);
6705         public static native boolean HTLCUpdate_eq(long a, long b);
6706         // struct LDKCVec_u8Z HTLCUpdate_write(const struct LDKHTLCUpdate *NONNULL_PTR obj);
6707         public static native byte[] HTLCUpdate_write(long obj);
6708         // struct LDKCResult_HTLCUpdateDecodeErrorZ HTLCUpdate_read(struct LDKu8slice ser);
6709         public static native long HTLCUpdate_read(byte[] ser);
6710         // void Balance_free(struct LDKBalance this_ptr);
6711         public static native void Balance_free(long this_ptr);
6712         // uint64_t Balance_clone_ptr(LDKBalance *NONNULL_PTR arg);
6713         public static native long Balance_clone_ptr(long arg);
6714         // struct LDKBalance Balance_clone(const struct LDKBalance *NONNULL_PTR orig);
6715         public static native long Balance_clone(long orig);
6716         // struct LDKBalance Balance_claimable_on_channel_close(uint64_t amount_satoshis);
6717         public static native long Balance_claimable_on_channel_close(long amount_satoshis);
6718         // struct LDKBalance Balance_claimable_awaiting_confirmations(uint64_t amount_satoshis, uint32_t confirmation_height);
6719         public static native long Balance_claimable_awaiting_confirmations(long amount_satoshis, int confirmation_height);
6720         // struct LDKBalance Balance_contentious_claimable(uint64_t amount_satoshis, uint32_t timeout_height, struct LDKThirtyTwoBytes payment_hash, struct LDKThirtyTwoBytes payment_preimage);
6721         public static native long Balance_contentious_claimable(long amount_satoshis, int timeout_height, byte[] payment_hash, byte[] payment_preimage);
6722         // struct LDKBalance Balance_maybe_timeout_claimable_htlc(uint64_t amount_satoshis, uint32_t claimable_height, struct LDKThirtyTwoBytes payment_hash);
6723         public static native long Balance_maybe_timeout_claimable_htlc(long amount_satoshis, int claimable_height, byte[] payment_hash);
6724         // struct LDKBalance Balance_maybe_preimage_claimable_htlc(uint64_t amount_satoshis, uint32_t expiry_height, struct LDKThirtyTwoBytes payment_hash);
6725         public static native long Balance_maybe_preimage_claimable_htlc(long amount_satoshis, int expiry_height, byte[] payment_hash);
6726         // struct LDKBalance Balance_counterparty_revoked_output_claimable(uint64_t amount_satoshis);
6727         public static native long Balance_counterparty_revoked_output_claimable(long amount_satoshis);
6728         // bool Balance_eq(const struct LDKBalance *NONNULL_PTR a, const struct LDKBalance *NONNULL_PTR b);
6729         public static native boolean Balance_eq(long a, long b);
6730         // MUST_USE_RES uint64_t Balance_claimable_amount_satoshis(const struct LDKBalance *NONNULL_PTR this_arg);
6731         public static native long Balance_claimable_amount_satoshis(long this_arg);
6732         // void ChannelMonitor_free(struct LDKChannelMonitor this_obj);
6733         public static native void ChannelMonitor_free(long this_obj);
6734         // uint64_t ChannelMonitor_clone_ptr(LDKChannelMonitor *NONNULL_PTR arg);
6735         public static native long ChannelMonitor_clone_ptr(long arg);
6736         // struct LDKChannelMonitor ChannelMonitor_clone(const struct LDKChannelMonitor *NONNULL_PTR orig);
6737         public static native long ChannelMonitor_clone(long orig);
6738         // struct LDKCVec_u8Z ChannelMonitor_write(const struct LDKChannelMonitor *NONNULL_PTR obj);
6739         public static native byte[] ChannelMonitor_write(long obj);
6740         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelMonitor_update_monitor(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const struct LDKChannelMonitorUpdate *NONNULL_PTR updates, const struct LDKBroadcasterInterface *NONNULL_PTR broadcaster, const struct LDKFeeEstimator *NONNULL_PTR fee_estimator, const struct LDKLogger *NONNULL_PTR logger);
6741         public static native long ChannelMonitor_update_monitor(long this_arg, long updates, long broadcaster, long fee_estimator, long logger);
6742         // MUST_USE_RES uint64_t ChannelMonitor_get_latest_update_id(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
6743         public static native long ChannelMonitor_get_latest_update_id(long this_arg);
6744         // MUST_USE_RES struct LDKC2Tuple_OutPointCVec_u8ZZ ChannelMonitor_get_funding_txo(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
6745         public static native long ChannelMonitor_get_funding_txo(long this_arg);
6746         // MUST_USE_RES struct LDKCVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32CVec_u8ZZZZZ ChannelMonitor_get_outputs_to_watch(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
6747         public static native long[] ChannelMonitor_get_outputs_to_watch(long this_arg);
6748         // void ChannelMonitor_load_outputs_to_watch(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const struct LDKFilter *NONNULL_PTR filter);
6749         public static native void ChannelMonitor_load_outputs_to_watch(long this_arg, long filter);
6750         // MUST_USE_RES struct LDKCVec_MonitorEventZ ChannelMonitor_get_and_clear_pending_monitor_events(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
6751         public static native long[] ChannelMonitor_get_and_clear_pending_monitor_events(long this_arg);
6752         // void ChannelMonitor_process_pending_events(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const struct LDKEventHandler *NONNULL_PTR handler);
6753         public static native void ChannelMonitor_process_pending_events(long this_arg, long handler);
6754         // MUST_USE_RES struct LDKCommitmentTransaction ChannelMonitor_initial_counterparty_commitment_tx(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
6755         public static native long ChannelMonitor_initial_counterparty_commitment_tx(long this_arg);
6756         // MUST_USE_RES struct LDKCVec_CommitmentTransactionZ ChannelMonitor_counterparty_commitment_txs_from_update(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const struct LDKChannelMonitorUpdate *NONNULL_PTR update);
6757         public static native long[] ChannelMonitor_counterparty_commitment_txs_from_update(long this_arg, long update);
6758         // MUST_USE_RES struct LDKCResult_TransactionNoneZ ChannelMonitor_sign_to_local_justice_tx(const struct LDKChannelMonitor *NONNULL_PTR this_arg, struct LDKTransaction justice_tx, uintptr_t input_idx, uint64_t value, uint64_t commitment_number);
6759         public static native long ChannelMonitor_sign_to_local_justice_tx(long this_arg, byte[] justice_tx, long input_idx, long value, long commitment_number);
6760         // MUST_USE_RES struct LDKPublicKey ChannelMonitor_get_counterparty_node_id(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
6761         public static native byte[] ChannelMonitor_get_counterparty_node_id(long this_arg);
6762         // MUST_USE_RES struct LDKCVec_TransactionZ ChannelMonitor_get_latest_holder_commitment_txn(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const struct LDKLogger *NONNULL_PTR logger);
6763         public static native byte[][] ChannelMonitor_get_latest_holder_commitment_txn(long this_arg, long logger);
6764         // MUST_USE_RES struct LDKCVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZZ ChannelMonitor_block_connected(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*header)[80], struct LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
6765         public static native long[] ChannelMonitor_block_connected(long this_arg, byte[] header, long[] txdata, int height, long broadcaster, long fee_estimator, long logger);
6766         // void ChannelMonitor_block_disconnected(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*header)[80], uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
6767         public static native void ChannelMonitor_block_disconnected(long this_arg, byte[] header, int height, long broadcaster, long fee_estimator, long logger);
6768         // MUST_USE_RES struct LDKCVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZZ ChannelMonitor_transactions_confirmed(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*header)[80], struct LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
6769         public static native long[] ChannelMonitor_transactions_confirmed(long this_arg, byte[] header, long[] txdata, int height, long broadcaster, long fee_estimator, long logger);
6770         // void ChannelMonitor_transaction_unconfirmed(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*txid)[32], struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
6771         public static native void ChannelMonitor_transaction_unconfirmed(long this_arg, byte[] txid, long broadcaster, long fee_estimator, long logger);
6772         // MUST_USE_RES struct LDKCVec_C2Tuple_ThirtyTwoBytesCVec_C2Tuple_u32TxOutZZZZ ChannelMonitor_best_block_updated(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*header)[80], uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
6773         public static native long[] ChannelMonitor_best_block_updated(long this_arg, byte[] header, int height, long broadcaster, long fee_estimator, long logger);
6774         // MUST_USE_RES struct LDKCVec_C2Tuple_ThirtyTwoBytesCOption_ThirtyTwoBytesZZZ ChannelMonitor_get_relevant_txids(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
6775         public static native long[] ChannelMonitor_get_relevant_txids(long this_arg);
6776         // MUST_USE_RES struct LDKBestBlock ChannelMonitor_current_best_block(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
6777         public static native long ChannelMonitor_current_best_block(long this_arg);
6778         // void ChannelMonitor_rebroadcast_pending_claims(const struct LDKChannelMonitor *NONNULL_PTR this_arg, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
6779         public static native void ChannelMonitor_rebroadcast_pending_claims(long this_arg, long broadcaster, long fee_estimator, long logger);
6780         // MUST_USE_RES struct LDKCVec_SpendableOutputDescriptorZ ChannelMonitor_get_spendable_outputs(const struct LDKChannelMonitor *NONNULL_PTR this_arg, struct LDKTransaction tx, uint32_t confirmation_height);
6781         public static native long[] ChannelMonitor_get_spendable_outputs(long this_arg, byte[] tx, int confirmation_height);
6782         // MUST_USE_RES struct LDKCVec_BalanceZ ChannelMonitor_get_claimable_balances(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
6783         public static native long[] ChannelMonitor_get_claimable_balances(long this_arg);
6784         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelMonitorZDecodeErrorZ C2Tuple_ThirtyTwoBytesChannelMonitorZ_read(struct LDKu8slice ser, const struct LDKEntropySource *NONNULL_PTR arg_a, const struct LDKSignerProvider *NONNULL_PTR arg_b);
6785         public static native long C2Tuple_ThirtyTwoBytesChannelMonitorZ_read(byte[] ser, long arg_a, long arg_b);
6786         // void OutPoint_free(struct LDKOutPoint this_obj);
6787         public static native void OutPoint_free(long this_obj);
6788         // const uint8_t (*OutPoint_get_txid(const struct LDKOutPoint *NONNULL_PTR this_ptr))[32];
6789         public static native byte[] OutPoint_get_txid(long this_ptr);
6790         // void OutPoint_set_txid(struct LDKOutPoint *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
6791         public static native void OutPoint_set_txid(long this_ptr, byte[] val);
6792         // uint16_t OutPoint_get_index(const struct LDKOutPoint *NONNULL_PTR this_ptr);
6793         public static native short OutPoint_get_index(long this_ptr);
6794         // void OutPoint_set_index(struct LDKOutPoint *NONNULL_PTR this_ptr, uint16_t val);
6795         public static native void OutPoint_set_index(long this_ptr, short val);
6796         // MUST_USE_RES struct LDKOutPoint OutPoint_new(struct LDKThirtyTwoBytes txid_arg, uint16_t index_arg);
6797         public static native long OutPoint_new(byte[] txid_arg, short index_arg);
6798         // uint64_t OutPoint_clone_ptr(LDKOutPoint *NONNULL_PTR arg);
6799         public static native long OutPoint_clone_ptr(long arg);
6800         // struct LDKOutPoint OutPoint_clone(const struct LDKOutPoint *NONNULL_PTR orig);
6801         public static native long OutPoint_clone(long orig);
6802         // bool OutPoint_eq(const struct LDKOutPoint *NONNULL_PTR a, const struct LDKOutPoint *NONNULL_PTR b);
6803         public static native boolean OutPoint_eq(long a, long b);
6804         // uint64_t OutPoint_hash(const struct LDKOutPoint *NONNULL_PTR o);
6805         public static native long OutPoint_hash(long o);
6806         // MUST_USE_RES struct LDKThirtyTwoBytes OutPoint_to_channel_id(const struct LDKOutPoint *NONNULL_PTR this_arg);
6807         public static native byte[] OutPoint_to_channel_id(long this_arg);
6808         // struct LDKCVec_u8Z OutPoint_write(const struct LDKOutPoint *NONNULL_PTR obj);
6809         public static native byte[] OutPoint_write(long obj);
6810         // struct LDKCResult_OutPointDecodeErrorZ OutPoint_read(struct LDKu8slice ser);
6811         public static native long OutPoint_read(byte[] ser);
6812         // void FailureCode_free(struct LDKFailureCode this_ptr);
6813         public static native void FailureCode_free(long this_ptr);
6814         // uint64_t FailureCode_clone_ptr(LDKFailureCode *NONNULL_PTR arg);
6815         public static native long FailureCode_clone_ptr(long arg);
6816         // struct LDKFailureCode FailureCode_clone(const struct LDKFailureCode *NONNULL_PTR orig);
6817         public static native long FailureCode_clone(long orig);
6818         // struct LDKFailureCode FailureCode_temporary_node_failure(void);
6819         public static native long FailureCode_temporary_node_failure();
6820         // struct LDKFailureCode FailureCode_required_node_feature_missing(void);
6821         public static native long FailureCode_required_node_feature_missing();
6822         // struct LDKFailureCode FailureCode_incorrect_or_unknown_payment_details(void);
6823         public static native long FailureCode_incorrect_or_unknown_payment_details();
6824         // struct LDKFailureCode FailureCode_invalid_onion_payload(struct LDKCOption_C2Tuple_u64u16ZZ a);
6825         public static native long FailureCode_invalid_onion_payload(long a);
6826         // void ChannelManager_free(struct LDKChannelManager this_obj);
6827         public static native void ChannelManager_free(long this_obj);
6828         // void ChainParameters_free(struct LDKChainParameters this_obj);
6829         public static native void ChainParameters_free(long this_obj);
6830         // enum LDKNetwork ChainParameters_get_network(const struct LDKChainParameters *NONNULL_PTR this_ptr);
6831         public static native Network ChainParameters_get_network(long this_ptr);
6832         // void ChainParameters_set_network(struct LDKChainParameters *NONNULL_PTR this_ptr, enum LDKNetwork val);
6833         public static native void ChainParameters_set_network(long this_ptr, Network val);
6834         // struct LDKBestBlock ChainParameters_get_best_block(const struct LDKChainParameters *NONNULL_PTR this_ptr);
6835         public static native long ChainParameters_get_best_block(long this_ptr);
6836         // void ChainParameters_set_best_block(struct LDKChainParameters *NONNULL_PTR this_ptr, struct LDKBestBlock val);
6837         public static native void ChainParameters_set_best_block(long this_ptr, long val);
6838         // MUST_USE_RES struct LDKChainParameters ChainParameters_new(enum LDKNetwork network_arg, struct LDKBestBlock best_block_arg);
6839         public static native long ChainParameters_new(Network network_arg, long best_block_arg);
6840         // uint64_t ChainParameters_clone_ptr(LDKChainParameters *NONNULL_PTR arg);
6841         public static native long ChainParameters_clone_ptr(long arg);
6842         // struct LDKChainParameters ChainParameters_clone(const struct LDKChainParameters *NONNULL_PTR orig);
6843         public static native long ChainParameters_clone(long orig);
6844         // void CounterpartyForwardingInfo_free(struct LDKCounterpartyForwardingInfo this_obj);
6845         public static native void CounterpartyForwardingInfo_free(long this_obj);
6846         // uint32_t CounterpartyForwardingInfo_get_fee_base_msat(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr);
6847         public static native int CounterpartyForwardingInfo_get_fee_base_msat(long this_ptr);
6848         // void CounterpartyForwardingInfo_set_fee_base_msat(struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr, uint32_t val);
6849         public static native void CounterpartyForwardingInfo_set_fee_base_msat(long this_ptr, int val);
6850         // uint32_t CounterpartyForwardingInfo_get_fee_proportional_millionths(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr);
6851         public static native int CounterpartyForwardingInfo_get_fee_proportional_millionths(long this_ptr);
6852         // void CounterpartyForwardingInfo_set_fee_proportional_millionths(struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr, uint32_t val);
6853         public static native void CounterpartyForwardingInfo_set_fee_proportional_millionths(long this_ptr, int val);
6854         // uint16_t CounterpartyForwardingInfo_get_cltv_expiry_delta(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr);
6855         public static native short CounterpartyForwardingInfo_get_cltv_expiry_delta(long this_ptr);
6856         // void CounterpartyForwardingInfo_set_cltv_expiry_delta(struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr, uint16_t val);
6857         public static native void CounterpartyForwardingInfo_set_cltv_expiry_delta(long this_ptr, short val);
6858         // MUST_USE_RES struct LDKCounterpartyForwardingInfo CounterpartyForwardingInfo_new(uint32_t fee_base_msat_arg, uint32_t fee_proportional_millionths_arg, uint16_t cltv_expiry_delta_arg);
6859         public static native long CounterpartyForwardingInfo_new(int fee_base_msat_arg, int fee_proportional_millionths_arg, short cltv_expiry_delta_arg);
6860         // uint64_t CounterpartyForwardingInfo_clone_ptr(LDKCounterpartyForwardingInfo *NONNULL_PTR arg);
6861         public static native long CounterpartyForwardingInfo_clone_ptr(long arg);
6862         // struct LDKCounterpartyForwardingInfo CounterpartyForwardingInfo_clone(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR orig);
6863         public static native long CounterpartyForwardingInfo_clone(long orig);
6864         // void ChannelCounterparty_free(struct LDKChannelCounterparty this_obj);
6865         public static native void ChannelCounterparty_free(long this_obj);
6866         // struct LDKPublicKey ChannelCounterparty_get_node_id(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
6867         public static native byte[] ChannelCounterparty_get_node_id(long this_ptr);
6868         // void ChannelCounterparty_set_node_id(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKPublicKey val);
6869         public static native void ChannelCounterparty_set_node_id(long this_ptr, byte[] val);
6870         // struct LDKInitFeatures ChannelCounterparty_get_features(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
6871         public static native long ChannelCounterparty_get_features(long this_ptr);
6872         // void ChannelCounterparty_set_features(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKInitFeatures val);
6873         public static native void ChannelCounterparty_set_features(long this_ptr, long val);
6874         // uint64_t ChannelCounterparty_get_unspendable_punishment_reserve(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
6875         public static native long ChannelCounterparty_get_unspendable_punishment_reserve(long this_ptr);
6876         // void ChannelCounterparty_set_unspendable_punishment_reserve(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, uint64_t val);
6877         public static native void ChannelCounterparty_set_unspendable_punishment_reserve(long this_ptr, long val);
6878         // struct LDKCounterpartyForwardingInfo ChannelCounterparty_get_forwarding_info(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
6879         public static native long ChannelCounterparty_get_forwarding_info(long this_ptr);
6880         // void ChannelCounterparty_set_forwarding_info(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKCounterpartyForwardingInfo val);
6881         public static native void ChannelCounterparty_set_forwarding_info(long this_ptr, long val);
6882         // struct LDKCOption_u64Z ChannelCounterparty_get_outbound_htlc_minimum_msat(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
6883         public static native long ChannelCounterparty_get_outbound_htlc_minimum_msat(long this_ptr);
6884         // void ChannelCounterparty_set_outbound_htlc_minimum_msat(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
6885         public static native void ChannelCounterparty_set_outbound_htlc_minimum_msat(long this_ptr, long val);
6886         // struct LDKCOption_u64Z ChannelCounterparty_get_outbound_htlc_maximum_msat(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
6887         public static native long ChannelCounterparty_get_outbound_htlc_maximum_msat(long this_ptr);
6888         // void ChannelCounterparty_set_outbound_htlc_maximum_msat(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
6889         public static native void ChannelCounterparty_set_outbound_htlc_maximum_msat(long this_ptr, long val);
6890         // MUST_USE_RES struct LDKChannelCounterparty ChannelCounterparty_new(struct LDKPublicKey node_id_arg, struct LDKInitFeatures features_arg, uint64_t unspendable_punishment_reserve_arg, struct LDKCounterpartyForwardingInfo forwarding_info_arg, struct LDKCOption_u64Z outbound_htlc_minimum_msat_arg, struct LDKCOption_u64Z outbound_htlc_maximum_msat_arg);
6891         public static native long ChannelCounterparty_new(byte[] node_id_arg, long features_arg, long unspendable_punishment_reserve_arg, long forwarding_info_arg, long outbound_htlc_minimum_msat_arg, long outbound_htlc_maximum_msat_arg);
6892         // uint64_t ChannelCounterparty_clone_ptr(LDKChannelCounterparty *NONNULL_PTR arg);
6893         public static native long ChannelCounterparty_clone_ptr(long arg);
6894         // struct LDKChannelCounterparty ChannelCounterparty_clone(const struct LDKChannelCounterparty *NONNULL_PTR orig);
6895         public static native long ChannelCounterparty_clone(long orig);
6896         // void ChannelDetails_free(struct LDKChannelDetails this_obj);
6897         public static native void ChannelDetails_free(long this_obj);
6898         // const uint8_t (*ChannelDetails_get_channel_id(const struct LDKChannelDetails *NONNULL_PTR this_ptr))[32];
6899         public static native byte[] ChannelDetails_get_channel_id(long this_ptr);
6900         // void ChannelDetails_set_channel_id(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
6901         public static native void ChannelDetails_set_channel_id(long this_ptr, byte[] val);
6902         // struct LDKChannelCounterparty ChannelDetails_get_counterparty(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6903         public static native long ChannelDetails_get_counterparty(long this_ptr);
6904         // void ChannelDetails_set_counterparty(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKChannelCounterparty val);
6905         public static native void ChannelDetails_set_counterparty(long this_ptr, long val);
6906         // struct LDKOutPoint ChannelDetails_get_funding_txo(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6907         public static native long ChannelDetails_get_funding_txo(long this_ptr);
6908         // void ChannelDetails_set_funding_txo(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKOutPoint val);
6909         public static native void ChannelDetails_set_funding_txo(long this_ptr, long val);
6910         // struct LDKChannelTypeFeatures ChannelDetails_get_channel_type(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6911         public static native long ChannelDetails_get_channel_type(long this_ptr);
6912         // void ChannelDetails_set_channel_type(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKChannelTypeFeatures val);
6913         public static native void ChannelDetails_set_channel_type(long this_ptr, long val);
6914         // struct LDKCOption_u64Z ChannelDetails_get_short_channel_id(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6915         public static native long ChannelDetails_get_short_channel_id(long this_ptr);
6916         // void ChannelDetails_set_short_channel_id(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
6917         public static native void ChannelDetails_set_short_channel_id(long this_ptr, long val);
6918         // struct LDKCOption_u64Z ChannelDetails_get_outbound_scid_alias(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6919         public static native long ChannelDetails_get_outbound_scid_alias(long this_ptr);
6920         // void ChannelDetails_set_outbound_scid_alias(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
6921         public static native void ChannelDetails_set_outbound_scid_alias(long this_ptr, long val);
6922         // struct LDKCOption_u64Z ChannelDetails_get_inbound_scid_alias(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6923         public static native long ChannelDetails_get_inbound_scid_alias(long this_ptr);
6924         // void ChannelDetails_set_inbound_scid_alias(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
6925         public static native void ChannelDetails_set_inbound_scid_alias(long this_ptr, long val);
6926         // uint64_t ChannelDetails_get_channel_value_satoshis(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6927         public static native long ChannelDetails_get_channel_value_satoshis(long this_ptr);
6928         // void ChannelDetails_set_channel_value_satoshis(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
6929         public static native void ChannelDetails_set_channel_value_satoshis(long this_ptr, long val);
6930         // struct LDKCOption_u64Z ChannelDetails_get_unspendable_punishment_reserve(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6931         public static native long ChannelDetails_get_unspendable_punishment_reserve(long this_ptr);
6932         // void ChannelDetails_set_unspendable_punishment_reserve(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
6933         public static native void ChannelDetails_set_unspendable_punishment_reserve(long this_ptr, long val);
6934         // struct LDKU128 ChannelDetails_get_user_channel_id(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6935         public static native byte[] ChannelDetails_get_user_channel_id(long this_ptr);
6936         // void ChannelDetails_set_user_channel_id(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKU128 val);
6937         public static native void ChannelDetails_set_user_channel_id(long this_ptr, byte[] val);
6938         // struct LDKCOption_u32Z ChannelDetails_get_feerate_sat_per_1000_weight(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6939         public static native long ChannelDetails_get_feerate_sat_per_1000_weight(long this_ptr);
6940         // void ChannelDetails_set_feerate_sat_per_1000_weight(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u32Z val);
6941         public static native void ChannelDetails_set_feerate_sat_per_1000_weight(long this_ptr, long val);
6942         // uint64_t ChannelDetails_get_balance_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6943         public static native long ChannelDetails_get_balance_msat(long this_ptr);
6944         // void ChannelDetails_set_balance_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
6945         public static native void ChannelDetails_set_balance_msat(long this_ptr, long val);
6946         // uint64_t ChannelDetails_get_outbound_capacity_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6947         public static native long ChannelDetails_get_outbound_capacity_msat(long this_ptr);
6948         // void ChannelDetails_set_outbound_capacity_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
6949         public static native void ChannelDetails_set_outbound_capacity_msat(long this_ptr, long val);
6950         // uint64_t ChannelDetails_get_next_outbound_htlc_limit_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6951         public static native long ChannelDetails_get_next_outbound_htlc_limit_msat(long this_ptr);
6952         // void ChannelDetails_set_next_outbound_htlc_limit_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
6953         public static native void ChannelDetails_set_next_outbound_htlc_limit_msat(long this_ptr, long val);
6954         // uint64_t ChannelDetails_get_next_outbound_htlc_minimum_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6955         public static native long ChannelDetails_get_next_outbound_htlc_minimum_msat(long this_ptr);
6956         // void ChannelDetails_set_next_outbound_htlc_minimum_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
6957         public static native void ChannelDetails_set_next_outbound_htlc_minimum_msat(long this_ptr, long val);
6958         // uint64_t ChannelDetails_get_inbound_capacity_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6959         public static native long ChannelDetails_get_inbound_capacity_msat(long this_ptr);
6960         // void ChannelDetails_set_inbound_capacity_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
6961         public static native void ChannelDetails_set_inbound_capacity_msat(long this_ptr, long val);
6962         // struct LDKCOption_u32Z ChannelDetails_get_confirmations_required(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6963         public static native long ChannelDetails_get_confirmations_required(long this_ptr);
6964         // void ChannelDetails_set_confirmations_required(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u32Z val);
6965         public static native void ChannelDetails_set_confirmations_required(long this_ptr, long val);
6966         // struct LDKCOption_u32Z ChannelDetails_get_confirmations(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6967         public static native long ChannelDetails_get_confirmations(long this_ptr);
6968         // void ChannelDetails_set_confirmations(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u32Z val);
6969         public static native void ChannelDetails_set_confirmations(long this_ptr, long val);
6970         // struct LDKCOption_u16Z ChannelDetails_get_force_close_spend_delay(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6971         public static native long ChannelDetails_get_force_close_spend_delay(long this_ptr);
6972         // void ChannelDetails_set_force_close_spend_delay(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u16Z val);
6973         public static native void ChannelDetails_set_force_close_spend_delay(long this_ptr, long val);
6974         // bool ChannelDetails_get_is_outbound(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6975         public static native boolean ChannelDetails_get_is_outbound(long this_ptr);
6976         // void ChannelDetails_set_is_outbound(struct LDKChannelDetails *NONNULL_PTR this_ptr, bool val);
6977         public static native void ChannelDetails_set_is_outbound(long this_ptr, boolean val);
6978         // bool ChannelDetails_get_is_channel_ready(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6979         public static native boolean ChannelDetails_get_is_channel_ready(long this_ptr);
6980         // void ChannelDetails_set_is_channel_ready(struct LDKChannelDetails *NONNULL_PTR this_ptr, bool val);
6981         public static native void ChannelDetails_set_is_channel_ready(long this_ptr, boolean val);
6982         // struct LDKCOption_ChannelShutdownStateZ ChannelDetails_get_channel_shutdown_state(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6983         public static native long ChannelDetails_get_channel_shutdown_state(long this_ptr);
6984         // void ChannelDetails_set_channel_shutdown_state(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_ChannelShutdownStateZ val);
6985         public static native void ChannelDetails_set_channel_shutdown_state(long this_ptr, long val);
6986         // bool ChannelDetails_get_is_usable(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6987         public static native boolean ChannelDetails_get_is_usable(long this_ptr);
6988         // void ChannelDetails_set_is_usable(struct LDKChannelDetails *NONNULL_PTR this_ptr, bool val);
6989         public static native void ChannelDetails_set_is_usable(long this_ptr, boolean val);
6990         // bool ChannelDetails_get_is_public(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6991         public static native boolean ChannelDetails_get_is_public(long this_ptr);
6992         // void ChannelDetails_set_is_public(struct LDKChannelDetails *NONNULL_PTR this_ptr, bool val);
6993         public static native void ChannelDetails_set_is_public(long this_ptr, boolean val);
6994         // struct LDKCOption_u64Z ChannelDetails_get_inbound_htlc_minimum_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6995         public static native long ChannelDetails_get_inbound_htlc_minimum_msat(long this_ptr);
6996         // void ChannelDetails_set_inbound_htlc_minimum_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
6997         public static native void ChannelDetails_set_inbound_htlc_minimum_msat(long this_ptr, long val);
6998         // struct LDKCOption_u64Z ChannelDetails_get_inbound_htlc_maximum_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
6999         public static native long ChannelDetails_get_inbound_htlc_maximum_msat(long this_ptr);
7000         // void ChannelDetails_set_inbound_htlc_maximum_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
7001         public static native void ChannelDetails_set_inbound_htlc_maximum_msat(long this_ptr, long val);
7002         // struct LDKChannelConfig ChannelDetails_get_config(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
7003         public static native long ChannelDetails_get_config(long this_ptr);
7004         // void ChannelDetails_set_config(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKChannelConfig val);
7005         public static native void ChannelDetails_set_config(long this_ptr, long val);
7006         // MUST_USE_RES struct LDKChannelDetails ChannelDetails_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKChannelCounterparty counterparty_arg, struct LDKOutPoint funding_txo_arg, struct LDKChannelTypeFeatures channel_type_arg, struct LDKCOption_u64Z short_channel_id_arg, struct LDKCOption_u64Z outbound_scid_alias_arg, struct LDKCOption_u64Z inbound_scid_alias_arg, uint64_t channel_value_satoshis_arg, struct LDKCOption_u64Z unspendable_punishment_reserve_arg, struct LDKU128 user_channel_id_arg, struct LDKCOption_u32Z feerate_sat_per_1000_weight_arg, uint64_t balance_msat_arg, uint64_t outbound_capacity_msat_arg, uint64_t next_outbound_htlc_limit_msat_arg, uint64_t next_outbound_htlc_minimum_msat_arg, uint64_t inbound_capacity_msat_arg, struct LDKCOption_u32Z confirmations_required_arg, struct LDKCOption_u32Z confirmations_arg, struct LDKCOption_u16Z force_close_spend_delay_arg, bool is_outbound_arg, bool is_channel_ready_arg, struct LDKCOption_ChannelShutdownStateZ channel_shutdown_state_arg, bool is_usable_arg, bool is_public_arg, struct LDKCOption_u64Z inbound_htlc_minimum_msat_arg, struct LDKCOption_u64Z inbound_htlc_maximum_msat_arg, struct LDKChannelConfig config_arg);
7007         public static native long ChannelDetails_new(byte[] channel_id_arg, long counterparty_arg, long funding_txo_arg, long channel_type_arg, long short_channel_id_arg, long outbound_scid_alias_arg, long inbound_scid_alias_arg, long channel_value_satoshis_arg, long unspendable_punishment_reserve_arg, byte[] user_channel_id_arg, long feerate_sat_per_1000_weight_arg, long balance_msat_arg, long outbound_capacity_msat_arg, long next_outbound_htlc_limit_msat_arg, long next_outbound_htlc_minimum_msat_arg, long inbound_capacity_msat_arg, long confirmations_required_arg, long confirmations_arg, long force_close_spend_delay_arg, boolean is_outbound_arg, boolean is_channel_ready_arg, long channel_shutdown_state_arg, boolean is_usable_arg, boolean is_public_arg, long inbound_htlc_minimum_msat_arg, long inbound_htlc_maximum_msat_arg, long config_arg);
7008         // uint64_t ChannelDetails_clone_ptr(LDKChannelDetails *NONNULL_PTR arg);
7009         public static native long ChannelDetails_clone_ptr(long arg);
7010         // struct LDKChannelDetails ChannelDetails_clone(const struct LDKChannelDetails *NONNULL_PTR orig);
7011         public static native long ChannelDetails_clone(long orig);
7012         // MUST_USE_RES struct LDKCOption_u64Z ChannelDetails_get_inbound_payment_scid(const struct LDKChannelDetails *NONNULL_PTR this_arg);
7013         public static native long ChannelDetails_get_inbound_payment_scid(long this_arg);
7014         // MUST_USE_RES struct LDKCOption_u64Z ChannelDetails_get_outbound_payment_scid(const struct LDKChannelDetails *NONNULL_PTR this_arg);
7015         public static native long ChannelDetails_get_outbound_payment_scid(long this_arg);
7016         // enum LDKChannelShutdownState ChannelShutdownState_clone(const enum LDKChannelShutdownState *NONNULL_PTR orig);
7017         public static native ChannelShutdownState ChannelShutdownState_clone(long orig);
7018         // enum LDKChannelShutdownState ChannelShutdownState_not_shutting_down(void);
7019         public static native ChannelShutdownState ChannelShutdownState_not_shutting_down();
7020         // enum LDKChannelShutdownState ChannelShutdownState_shutdown_initiated(void);
7021         public static native ChannelShutdownState ChannelShutdownState_shutdown_initiated();
7022         // enum LDKChannelShutdownState ChannelShutdownState_resolving_htlcs(void);
7023         public static native ChannelShutdownState ChannelShutdownState_resolving_htlcs();
7024         // enum LDKChannelShutdownState ChannelShutdownState_negotiating_closing_fee(void);
7025         public static native ChannelShutdownState ChannelShutdownState_negotiating_closing_fee();
7026         // enum LDKChannelShutdownState ChannelShutdownState_shutdown_complete(void);
7027         public static native ChannelShutdownState ChannelShutdownState_shutdown_complete();
7028         // bool ChannelShutdownState_eq(const enum LDKChannelShutdownState *NONNULL_PTR a, const enum LDKChannelShutdownState *NONNULL_PTR b);
7029         public static native boolean ChannelShutdownState_eq(long a, long b);
7030         // void RecentPaymentDetails_free(struct LDKRecentPaymentDetails this_ptr);
7031         public static native void RecentPaymentDetails_free(long this_ptr);
7032         // uint64_t RecentPaymentDetails_clone_ptr(LDKRecentPaymentDetails *NONNULL_PTR arg);
7033         public static native long RecentPaymentDetails_clone_ptr(long arg);
7034         // struct LDKRecentPaymentDetails RecentPaymentDetails_clone(const struct LDKRecentPaymentDetails *NONNULL_PTR orig);
7035         public static native long RecentPaymentDetails_clone(long orig);
7036         // struct LDKRecentPaymentDetails RecentPaymentDetails_awaiting_invoice(struct LDKThirtyTwoBytes payment_id);
7037         public static native long RecentPaymentDetails_awaiting_invoice(byte[] payment_id);
7038         // struct LDKRecentPaymentDetails RecentPaymentDetails_pending(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash, uint64_t total_msat);
7039         public static native long RecentPaymentDetails_pending(byte[] payment_id, byte[] payment_hash, long total_msat);
7040         // struct LDKRecentPaymentDetails RecentPaymentDetails_fulfilled(struct LDKThirtyTwoBytes payment_id, struct LDKCOption_ThirtyTwoBytesZ payment_hash);
7041         public static native long RecentPaymentDetails_fulfilled(byte[] payment_id, long payment_hash);
7042         // struct LDKRecentPaymentDetails RecentPaymentDetails_abandoned(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash);
7043         public static native long RecentPaymentDetails_abandoned(byte[] payment_id, byte[] payment_hash);
7044         // void PhantomRouteHints_free(struct LDKPhantomRouteHints this_obj);
7045         public static native void PhantomRouteHints_free(long this_obj);
7046         // struct LDKCVec_ChannelDetailsZ PhantomRouteHints_get_channels(const struct LDKPhantomRouteHints *NONNULL_PTR this_ptr);
7047         public static native long[] PhantomRouteHints_get_channels(long this_ptr);
7048         // void PhantomRouteHints_set_channels(struct LDKPhantomRouteHints *NONNULL_PTR this_ptr, struct LDKCVec_ChannelDetailsZ val);
7049         public static native void PhantomRouteHints_set_channels(long this_ptr, long[] val);
7050         // uint64_t PhantomRouteHints_get_phantom_scid(const struct LDKPhantomRouteHints *NONNULL_PTR this_ptr);
7051         public static native long PhantomRouteHints_get_phantom_scid(long this_ptr);
7052         // void PhantomRouteHints_set_phantom_scid(struct LDKPhantomRouteHints *NONNULL_PTR this_ptr, uint64_t val);
7053         public static native void PhantomRouteHints_set_phantom_scid(long this_ptr, long val);
7054         // struct LDKPublicKey PhantomRouteHints_get_real_node_pubkey(const struct LDKPhantomRouteHints *NONNULL_PTR this_ptr);
7055         public static native byte[] PhantomRouteHints_get_real_node_pubkey(long this_ptr);
7056         // void PhantomRouteHints_set_real_node_pubkey(struct LDKPhantomRouteHints *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7057         public static native void PhantomRouteHints_set_real_node_pubkey(long this_ptr, byte[] val);
7058         // MUST_USE_RES struct LDKPhantomRouteHints PhantomRouteHints_new(struct LDKCVec_ChannelDetailsZ channels_arg, uint64_t phantom_scid_arg, struct LDKPublicKey real_node_pubkey_arg);
7059         public static native long PhantomRouteHints_new(long[] channels_arg, long phantom_scid_arg, byte[] real_node_pubkey_arg);
7060         // uint64_t PhantomRouteHints_clone_ptr(LDKPhantomRouteHints *NONNULL_PTR arg);
7061         public static native long PhantomRouteHints_clone_ptr(long arg);
7062         // struct LDKPhantomRouteHints PhantomRouteHints_clone(const struct LDKPhantomRouteHints *NONNULL_PTR orig);
7063         public static native long PhantomRouteHints_clone(long orig);
7064         // MUST_USE_RES struct LDKChannelManager ChannelManager_new(struct LDKFeeEstimator fee_est, struct LDKWatch chain_monitor, struct LDKBroadcasterInterface tx_broadcaster, struct LDKRouter router, struct LDKLogger logger, struct LDKEntropySource entropy_source, struct LDKNodeSigner node_signer, struct LDKSignerProvider signer_provider, struct LDKUserConfig config, struct LDKChainParameters params, uint32_t current_timestamp);
7065         public static native long ChannelManager_new(long fee_est, long chain_monitor, long tx_broadcaster, long router, long logger, long entropy_source, long node_signer, long signer_provider, long config, long params, int current_timestamp);
7066         // MUST_USE_RES struct LDKUserConfig ChannelManager_get_current_default_configuration(const struct LDKChannelManager *NONNULL_PTR this_arg);
7067         public static native long ChannelManager_get_current_default_configuration(long this_arg);
7068         // MUST_USE_RES struct LDKCResult_ThirtyTwoBytesAPIErrorZ ChannelManager_create_channel(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKPublicKey their_network_key, uint64_t channel_value_satoshis, uint64_t push_msat, struct LDKU128 user_channel_id, struct LDKUserConfig override_config);
7069         public static native long ChannelManager_create_channel(long this_arg, byte[] their_network_key, long channel_value_satoshis, long push_msat, byte[] user_channel_id, long override_config);
7070         // MUST_USE_RES struct LDKCVec_ChannelDetailsZ ChannelManager_list_channels(const struct LDKChannelManager *NONNULL_PTR this_arg);
7071         public static native long[] ChannelManager_list_channels(long this_arg);
7072         // MUST_USE_RES struct LDKCVec_ChannelDetailsZ ChannelManager_list_usable_channels(const struct LDKChannelManager *NONNULL_PTR this_arg);
7073         public static native long[] ChannelManager_list_usable_channels(long this_arg);
7074         // MUST_USE_RES struct LDKCVec_ChannelDetailsZ ChannelManager_list_channels_with_counterparty(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKPublicKey counterparty_node_id);
7075         public static native long[] ChannelManager_list_channels_with_counterparty(long this_arg, byte[] counterparty_node_id);
7076         // MUST_USE_RES struct LDKCVec_RecentPaymentDetailsZ ChannelManager_list_recent_payments(const struct LDKChannelManager *NONNULL_PTR this_arg);
7077         public static native long[] ChannelManager_list_recent_payments(long this_arg);
7078         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_close_channel(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*channel_id)[32], struct LDKPublicKey counterparty_node_id);
7079         public static native long ChannelManager_close_channel(long this_arg, byte[] channel_id, byte[] counterparty_node_id);
7080         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_close_channel_with_feerate_and_script(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*channel_id)[32], struct LDKPublicKey counterparty_node_id, struct LDKCOption_u32Z target_feerate_sats_per_1000_weight, struct LDKShutdownScript shutdown_script);
7081         public static native long ChannelManager_close_channel_with_feerate_and_script(long this_arg, byte[] channel_id, byte[] counterparty_node_id, long target_feerate_sats_per_1000_weight, long shutdown_script);
7082         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_force_close_broadcasting_latest_txn(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*channel_id)[32], struct LDKPublicKey counterparty_node_id);
7083         public static native long ChannelManager_force_close_broadcasting_latest_txn(long this_arg, byte[] channel_id, byte[] counterparty_node_id);
7084         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_force_close_without_broadcasting_txn(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*channel_id)[32], struct LDKPublicKey counterparty_node_id);
7085         public static native long ChannelManager_force_close_without_broadcasting_txn(long this_arg, byte[] channel_id, byte[] counterparty_node_id);
7086         // void ChannelManager_force_close_all_channels_broadcasting_latest_txn(const struct LDKChannelManager *NONNULL_PTR this_arg);
7087         public static native void ChannelManager_force_close_all_channels_broadcasting_latest_txn(long this_arg);
7088         // void ChannelManager_force_close_all_channels_without_broadcasting_txn(const struct LDKChannelManager *NONNULL_PTR this_arg);
7089         public static native void ChannelManager_force_close_all_channels_without_broadcasting_txn(long this_arg);
7090         // MUST_USE_RES struct LDKCResult_NonePaymentSendFailureZ ChannelManager_send_payment_with_route(const struct LDKChannelManager *NONNULL_PTR this_arg, const struct LDKRoute *NONNULL_PTR route, struct LDKThirtyTwoBytes payment_hash, struct LDKRecipientOnionFields recipient_onion, struct LDKThirtyTwoBytes payment_id);
7091         public static native long ChannelManager_send_payment_with_route(long this_arg, long route, byte[] payment_hash, long recipient_onion, byte[] payment_id);
7092         // MUST_USE_RES struct LDKCResult_NoneRetryableSendFailureZ ChannelManager_send_payment(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_hash, struct LDKRecipientOnionFields recipient_onion, struct LDKThirtyTwoBytes payment_id, struct LDKRouteParameters route_params, struct LDKRetry retry_strategy);
7093         public static native long ChannelManager_send_payment(long this_arg, byte[] payment_hash, long recipient_onion, byte[] payment_id, long route_params, long retry_strategy);
7094         // void ChannelManager_abandon_payment(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_id);
7095         public static native void ChannelManager_abandon_payment(long this_arg, byte[] payment_id);
7096         // MUST_USE_RES struct LDKCResult_ThirtyTwoBytesPaymentSendFailureZ ChannelManager_send_spontaneous_payment(const struct LDKChannelManager *NONNULL_PTR this_arg, const struct LDKRoute *NONNULL_PTR route, struct LDKCOption_ThirtyTwoBytesZ payment_preimage, struct LDKRecipientOnionFields recipient_onion, struct LDKThirtyTwoBytes payment_id);
7097         public static native long ChannelManager_send_spontaneous_payment(long this_arg, long route, long payment_preimage, long recipient_onion, byte[] payment_id);
7098         // MUST_USE_RES struct LDKCResult_ThirtyTwoBytesRetryableSendFailureZ ChannelManager_send_spontaneous_payment_with_retry(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKCOption_ThirtyTwoBytesZ payment_preimage, struct LDKRecipientOnionFields recipient_onion, struct LDKThirtyTwoBytes payment_id, struct LDKRouteParameters route_params, struct LDKRetry retry_strategy);
7099         public static native long ChannelManager_send_spontaneous_payment_with_retry(long this_arg, long payment_preimage, long recipient_onion, byte[] payment_id, long route_params, long retry_strategy);
7100         // MUST_USE_RES struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZPaymentSendFailureZ ChannelManager_send_probe(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKPath path);
7101         public static native long ChannelManager_send_probe(long this_arg, long path);
7102         // MUST_USE_RES struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ ChannelManager_send_spontaneous_preflight_probes(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKPublicKey node_id, uint64_t amount_msat, uint32_t final_cltv_expiry_delta, struct LDKCOption_u64Z liquidity_limit_multiplier);
7103         public static native long ChannelManager_send_spontaneous_preflight_probes(long this_arg, byte[] node_id, long amount_msat, int final_cltv_expiry_delta, long liquidity_limit_multiplier);
7104         // MUST_USE_RES struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbeSendFailureZ ChannelManager_send_preflight_probes(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKRouteParameters route_params, struct LDKCOption_u64Z liquidity_limit_multiplier);
7105         public static native long ChannelManager_send_preflight_probes(long this_arg, long route_params, long liquidity_limit_multiplier);
7106         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_funding_transaction_generated(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*temporary_channel_id)[32], struct LDKPublicKey counterparty_node_id, struct LDKTransaction funding_transaction);
7107         public static native long ChannelManager_funding_transaction_generated(long this_arg, byte[] temporary_channel_id, byte[] counterparty_node_id, byte[] funding_transaction);
7108         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_batch_funding_transaction_generated(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKCVec_C2Tuple_ThirtyTwoBytesPublicKeyZZ temporary_channels, struct LDKTransaction funding_transaction);
7109         public static native long ChannelManager_batch_funding_transaction_generated(long this_arg, long[] temporary_channels, byte[] funding_transaction);
7110         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_update_partial_channel_config(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKPublicKey counterparty_node_id, struct LDKCVec_ThirtyTwoBytesZ channel_ids, const struct LDKChannelConfigUpdate *NONNULL_PTR config_update);
7111         public static native long ChannelManager_update_partial_channel_config(long this_arg, byte[] counterparty_node_id, byte[][] channel_ids, long config_update);
7112         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_update_channel_config(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKPublicKey counterparty_node_id, struct LDKCVec_ThirtyTwoBytesZ channel_ids, const struct LDKChannelConfig *NONNULL_PTR config);
7113         public static native long ChannelManager_update_channel_config(long this_arg, byte[] counterparty_node_id, byte[][] channel_ids, long config);
7114         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_forward_intercepted_htlc(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes intercept_id, const uint8_t (*next_hop_channel_id)[32], struct LDKPublicKey next_node_id, uint64_t amt_to_forward_msat);
7115         public static native long ChannelManager_forward_intercepted_htlc(long this_arg, byte[] intercept_id, byte[] next_hop_channel_id, byte[] next_node_id, long amt_to_forward_msat);
7116         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_fail_intercepted_htlc(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes intercept_id);
7117         public static native long ChannelManager_fail_intercepted_htlc(long this_arg, byte[] intercept_id);
7118         // void ChannelManager_process_pending_htlc_forwards(const struct LDKChannelManager *NONNULL_PTR this_arg);
7119         public static native void ChannelManager_process_pending_htlc_forwards(long this_arg);
7120         // void ChannelManager_timer_tick_occurred(const struct LDKChannelManager *NONNULL_PTR this_arg);
7121         public static native void ChannelManager_timer_tick_occurred(long this_arg);
7122         // void ChannelManager_fail_htlc_backwards(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*payment_hash)[32]);
7123         public static native void ChannelManager_fail_htlc_backwards(long this_arg, byte[] payment_hash);
7124         // void ChannelManager_fail_htlc_backwards_with_reason(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*payment_hash)[32], struct LDKFailureCode failure_code);
7125         public static native void ChannelManager_fail_htlc_backwards_with_reason(long this_arg, byte[] payment_hash, long failure_code);
7126         // void ChannelManager_claim_funds(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_preimage);
7127         public static native void ChannelManager_claim_funds(long this_arg, byte[] payment_preimage);
7128         // void ChannelManager_claim_funds_with_known_custom_tlvs(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_preimage);
7129         public static native void ChannelManager_claim_funds_with_known_custom_tlvs(long this_arg, byte[] payment_preimage);
7130         // MUST_USE_RES struct LDKPublicKey ChannelManager_get_our_node_id(const struct LDKChannelManager *NONNULL_PTR this_arg);
7131         public static native byte[] ChannelManager_get_our_node_id(long this_arg);
7132         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_accept_inbound_channel(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*temporary_channel_id)[32], struct LDKPublicKey counterparty_node_id, struct LDKU128 user_channel_id);
7133         public static native long ChannelManager_accept_inbound_channel(long this_arg, byte[] temporary_channel_id, byte[] counterparty_node_id, byte[] user_channel_id);
7134         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_accept_inbound_channel_from_trusted_peer_0conf(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*temporary_channel_id)[32], struct LDKPublicKey counterparty_node_id, struct LDKU128 user_channel_id);
7135         public static native long ChannelManager_accept_inbound_channel_from_trusted_peer_0conf(long this_arg, byte[] temporary_channel_id, byte[] counterparty_node_id, byte[] user_channel_id);
7136         // MUST_USE_RES struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ ChannelManager_create_inbound_payment(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKCOption_u64Z min_value_msat, uint32_t invoice_expiry_delta_secs, struct LDKCOption_u16Z min_final_cltv_expiry_delta);
7137         public static native long ChannelManager_create_inbound_payment(long this_arg, long min_value_msat, int invoice_expiry_delta_secs, long min_final_cltv_expiry_delta);
7138         // MUST_USE_RES struct LDKCResult_ThirtyTwoBytesNoneZ ChannelManager_create_inbound_payment_for_hash(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_hash, struct LDKCOption_u64Z min_value_msat, uint32_t invoice_expiry_delta_secs, struct LDKCOption_u16Z min_final_cltv_expiry);
7139         public static native long ChannelManager_create_inbound_payment_for_hash(long this_arg, byte[] payment_hash, long min_value_msat, int invoice_expiry_delta_secs, long min_final_cltv_expiry);
7140         // MUST_USE_RES struct LDKCResult_ThirtyTwoBytesAPIErrorZ ChannelManager_get_payment_preimage(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_hash, struct LDKThirtyTwoBytes payment_secret);
7141         public static native long ChannelManager_get_payment_preimage(long this_arg, byte[] payment_hash, byte[] payment_secret);
7142         // MUST_USE_RES uint64_t ChannelManager_get_phantom_scid(const struct LDKChannelManager *NONNULL_PTR this_arg);
7143         public static native long ChannelManager_get_phantom_scid(long this_arg);
7144         // MUST_USE_RES struct LDKPhantomRouteHints ChannelManager_get_phantom_route_hints(const struct LDKChannelManager *NONNULL_PTR this_arg);
7145         public static native long ChannelManager_get_phantom_route_hints(long this_arg);
7146         // MUST_USE_RES uint64_t ChannelManager_get_intercept_scid(const struct LDKChannelManager *NONNULL_PTR this_arg);
7147         public static native long ChannelManager_get_intercept_scid(long this_arg);
7148         // MUST_USE_RES struct LDKInFlightHtlcs ChannelManager_compute_inflight_htlcs(const struct LDKChannelManager *NONNULL_PTR this_arg);
7149         public static native long ChannelManager_compute_inflight_htlcs(long this_arg);
7150         // struct LDKMessageSendEventsProvider ChannelManager_as_MessageSendEventsProvider(const struct LDKChannelManager *NONNULL_PTR this_arg);
7151         public static native long ChannelManager_as_MessageSendEventsProvider(long this_arg);
7152         // struct LDKEventsProvider ChannelManager_as_EventsProvider(const struct LDKChannelManager *NONNULL_PTR this_arg);
7153         public static native long ChannelManager_as_EventsProvider(long this_arg);
7154         // struct LDKListen ChannelManager_as_Listen(const struct LDKChannelManager *NONNULL_PTR this_arg);
7155         public static native long ChannelManager_as_Listen(long this_arg);
7156         // struct LDKConfirm ChannelManager_as_Confirm(const struct LDKChannelManager *NONNULL_PTR this_arg);
7157         public static native long ChannelManager_as_Confirm(long this_arg);
7158         // MUST_USE_RES struct LDKFuture ChannelManager_get_event_or_persistence_needed_future(const struct LDKChannelManager *NONNULL_PTR this_arg);
7159         public static native long ChannelManager_get_event_or_persistence_needed_future(long this_arg);
7160         // MUST_USE_RES bool ChannelManager_get_and_clear_needs_persistence(const struct LDKChannelManager *NONNULL_PTR this_arg);
7161         public static native boolean ChannelManager_get_and_clear_needs_persistence(long this_arg);
7162         // MUST_USE_RES struct LDKBestBlock ChannelManager_current_best_block(const struct LDKChannelManager *NONNULL_PTR this_arg);
7163         public static native long ChannelManager_current_best_block(long this_arg);
7164         // MUST_USE_RES struct LDKNodeFeatures ChannelManager_node_features(const struct LDKChannelManager *NONNULL_PTR this_arg);
7165         public static native long ChannelManager_node_features(long this_arg);
7166         // MUST_USE_RES struct LDKChannelFeatures ChannelManager_channel_features(const struct LDKChannelManager *NONNULL_PTR this_arg);
7167         public static native long ChannelManager_channel_features(long this_arg);
7168         // MUST_USE_RES struct LDKChannelTypeFeatures ChannelManager_channel_type_features(const struct LDKChannelManager *NONNULL_PTR this_arg);
7169         public static native long ChannelManager_channel_type_features(long this_arg);
7170         // MUST_USE_RES struct LDKInitFeatures ChannelManager_init_features(const struct LDKChannelManager *NONNULL_PTR this_arg);
7171         public static native long ChannelManager_init_features(long this_arg);
7172         // struct LDKChannelMessageHandler ChannelManager_as_ChannelMessageHandler(const struct LDKChannelManager *NONNULL_PTR this_arg);
7173         public static native long ChannelManager_as_ChannelMessageHandler(long this_arg);
7174         // struct LDKInitFeatures provided_init_features(const struct LDKUserConfig *NONNULL_PTR config);
7175         public static native long provided_init_features(long config);
7176         // struct LDKCVec_u8Z CounterpartyForwardingInfo_write(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR obj);
7177         public static native byte[] CounterpartyForwardingInfo_write(long obj);
7178         // struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ CounterpartyForwardingInfo_read(struct LDKu8slice ser);
7179         public static native long CounterpartyForwardingInfo_read(byte[] ser);
7180         // struct LDKCVec_u8Z ChannelCounterparty_write(const struct LDKChannelCounterparty *NONNULL_PTR obj);
7181         public static native byte[] ChannelCounterparty_write(long obj);
7182         // struct LDKCResult_ChannelCounterpartyDecodeErrorZ ChannelCounterparty_read(struct LDKu8slice ser);
7183         public static native long ChannelCounterparty_read(byte[] ser);
7184         // struct LDKCVec_u8Z ChannelDetails_write(const struct LDKChannelDetails *NONNULL_PTR obj);
7185         public static native byte[] ChannelDetails_write(long obj);
7186         // struct LDKCResult_ChannelDetailsDecodeErrorZ ChannelDetails_read(struct LDKu8slice ser);
7187         public static native long ChannelDetails_read(byte[] ser);
7188         // struct LDKCVec_u8Z PhantomRouteHints_write(const struct LDKPhantomRouteHints *NONNULL_PTR obj);
7189         public static native byte[] PhantomRouteHints_write(long obj);
7190         // struct LDKCResult_PhantomRouteHintsDecodeErrorZ PhantomRouteHints_read(struct LDKu8slice ser);
7191         public static native long PhantomRouteHints_read(byte[] ser);
7192         // struct LDKCVec_u8Z ChannelManager_write(const struct LDKChannelManager *NONNULL_PTR obj);
7193         public static native byte[] ChannelManager_write(long obj);
7194         // struct LDKCVec_u8Z ChannelShutdownState_write(const enum LDKChannelShutdownState *NONNULL_PTR obj);
7195         public static native byte[] ChannelShutdownState_write(long obj);
7196         // struct LDKCResult_ChannelShutdownStateDecodeErrorZ ChannelShutdownState_read(struct LDKu8slice ser);
7197         public static native long ChannelShutdownState_read(byte[] ser);
7198         // void ChannelManagerReadArgs_free(struct LDKChannelManagerReadArgs this_obj);
7199         public static native void ChannelManagerReadArgs_free(long this_obj);
7200         // const struct LDKEntropySource *ChannelManagerReadArgs_get_entropy_source(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
7201         public static native long ChannelManagerReadArgs_get_entropy_source(long this_ptr);
7202         // void ChannelManagerReadArgs_set_entropy_source(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKEntropySource val);
7203         public static native void ChannelManagerReadArgs_set_entropy_source(long this_ptr, long val);
7204         // const struct LDKNodeSigner *ChannelManagerReadArgs_get_node_signer(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
7205         public static native long ChannelManagerReadArgs_get_node_signer(long this_ptr);
7206         // void ChannelManagerReadArgs_set_node_signer(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKNodeSigner val);
7207         public static native void ChannelManagerReadArgs_set_node_signer(long this_ptr, long val);
7208         // const struct LDKSignerProvider *ChannelManagerReadArgs_get_signer_provider(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
7209         public static native long ChannelManagerReadArgs_get_signer_provider(long this_ptr);
7210         // void ChannelManagerReadArgs_set_signer_provider(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKSignerProvider val);
7211         public static native void ChannelManagerReadArgs_set_signer_provider(long this_ptr, long val);
7212         // const struct LDKFeeEstimator *ChannelManagerReadArgs_get_fee_estimator(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
7213         public static native long ChannelManagerReadArgs_get_fee_estimator(long this_ptr);
7214         // void ChannelManagerReadArgs_set_fee_estimator(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKFeeEstimator val);
7215         public static native void ChannelManagerReadArgs_set_fee_estimator(long this_ptr, long val);
7216         // const struct LDKWatch *ChannelManagerReadArgs_get_chain_monitor(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
7217         public static native long ChannelManagerReadArgs_get_chain_monitor(long this_ptr);
7218         // void ChannelManagerReadArgs_set_chain_monitor(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKWatch val);
7219         public static native void ChannelManagerReadArgs_set_chain_monitor(long this_ptr, long val);
7220         // const struct LDKBroadcasterInterface *ChannelManagerReadArgs_get_tx_broadcaster(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
7221         public static native long ChannelManagerReadArgs_get_tx_broadcaster(long this_ptr);
7222         // void ChannelManagerReadArgs_set_tx_broadcaster(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKBroadcasterInterface val);
7223         public static native void ChannelManagerReadArgs_set_tx_broadcaster(long this_ptr, long val);
7224         // const struct LDKRouter *ChannelManagerReadArgs_get_router(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
7225         public static native long ChannelManagerReadArgs_get_router(long this_ptr);
7226         // void ChannelManagerReadArgs_set_router(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKRouter val);
7227         public static native void ChannelManagerReadArgs_set_router(long this_ptr, long val);
7228         // const struct LDKLogger *ChannelManagerReadArgs_get_logger(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
7229         public static native long ChannelManagerReadArgs_get_logger(long this_ptr);
7230         // void ChannelManagerReadArgs_set_logger(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKLogger val);
7231         public static native void ChannelManagerReadArgs_set_logger(long this_ptr, long val);
7232         // struct LDKUserConfig ChannelManagerReadArgs_get_default_config(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
7233         public static native long ChannelManagerReadArgs_get_default_config(long this_ptr);
7234         // void ChannelManagerReadArgs_set_default_config(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKUserConfig val);
7235         public static native void ChannelManagerReadArgs_set_default_config(long this_ptr, long val);
7236         // MUST_USE_RES struct LDKChannelManagerReadArgs ChannelManagerReadArgs_new(struct LDKEntropySource entropy_source, struct LDKNodeSigner node_signer, struct LDKSignerProvider signer_provider, struct LDKFeeEstimator fee_estimator, struct LDKWatch chain_monitor, struct LDKBroadcasterInterface tx_broadcaster, struct LDKRouter router, struct LDKLogger logger, struct LDKUserConfig default_config, struct LDKCVec_ChannelMonitorZ channel_monitors);
7237         public static native long ChannelManagerReadArgs_new(long entropy_source, long node_signer, long signer_provider, long fee_estimator, long chain_monitor, long tx_broadcaster, long router, long logger, long default_config, long[] channel_monitors);
7238         // struct LDKCResult_C2Tuple_ThirtyTwoBytesChannelManagerZDecodeErrorZ C2Tuple_ThirtyTwoBytesChannelManagerZ_read(struct LDKu8slice ser, struct LDKChannelManagerReadArgs arg);
7239         public static native long C2Tuple_ThirtyTwoBytesChannelManagerZ_read(byte[] ser, long arg);
7240         // void ExpandedKey_free(struct LDKExpandedKey this_obj);
7241         public static native void ExpandedKey_free(long this_obj);
7242         // MUST_USE_RES struct LDKExpandedKey ExpandedKey_new(const uint8_t (*key_material)[32]);
7243         public static native long ExpandedKey_new(byte[] key_material);
7244         // struct LDKCResult_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZNoneZ create(const struct LDKExpandedKey *NONNULL_PTR keys, struct LDKCOption_u64Z min_value_msat, uint32_t invoice_expiry_delta_secs, const struct LDKEntropySource *NONNULL_PTR entropy_source, uint64_t current_time, struct LDKCOption_u16Z min_final_cltv_expiry_delta);
7245         public static native long create(long keys, long min_value_msat, int invoice_expiry_delta_secs, long entropy_source, long current_time, long min_final_cltv_expiry_delta);
7246         // struct LDKCResult_ThirtyTwoBytesNoneZ create_from_hash(const struct LDKExpandedKey *NONNULL_PTR keys, struct LDKCOption_u64Z min_value_msat, struct LDKThirtyTwoBytes payment_hash, uint32_t invoice_expiry_delta_secs, uint64_t current_time, struct LDKCOption_u16Z min_final_cltv_expiry_delta);
7247         public static native long create_from_hash(long keys, long min_value_msat, byte[] payment_hash, int invoice_expiry_delta_secs, long current_time, long min_final_cltv_expiry_delta);
7248         // void DecodeError_free(struct LDKDecodeError this_ptr);
7249         public static native void DecodeError_free(long this_ptr);
7250         // uint64_t DecodeError_clone_ptr(LDKDecodeError *NONNULL_PTR arg);
7251         public static native long DecodeError_clone_ptr(long arg);
7252         // struct LDKDecodeError DecodeError_clone(const struct LDKDecodeError *NONNULL_PTR orig);
7253         public static native long DecodeError_clone(long orig);
7254         // struct LDKDecodeError DecodeError_unknown_version(void);
7255         public static native long DecodeError_unknown_version();
7256         // struct LDKDecodeError DecodeError_unknown_required_feature(void);
7257         public static native long DecodeError_unknown_required_feature();
7258         // struct LDKDecodeError DecodeError_invalid_value(void);
7259         public static native long DecodeError_invalid_value();
7260         // struct LDKDecodeError DecodeError_short_read(void);
7261         public static native long DecodeError_short_read();
7262         // struct LDKDecodeError DecodeError_bad_length_descriptor(void);
7263         public static native long DecodeError_bad_length_descriptor();
7264         // struct LDKDecodeError DecodeError_io(enum LDKIOError a);
7265         public static native long DecodeError_io(IOError a);
7266         // struct LDKDecodeError DecodeError_unsupported_compression(void);
7267         public static native long DecodeError_unsupported_compression();
7268         // bool DecodeError_eq(const struct LDKDecodeError *NONNULL_PTR a, const struct LDKDecodeError *NONNULL_PTR b);
7269         public static native boolean DecodeError_eq(long a, long b);
7270         // void Init_free(struct LDKInit this_obj);
7271         public static native void Init_free(long this_obj);
7272         // struct LDKInitFeatures Init_get_features(const struct LDKInit *NONNULL_PTR this_ptr);
7273         public static native long Init_get_features(long this_ptr);
7274         // void Init_set_features(struct LDKInit *NONNULL_PTR this_ptr, struct LDKInitFeatures val);
7275         public static native void Init_set_features(long this_ptr, long val);
7276         // struct LDKCOption_CVec_ThirtyTwoBytesZZ Init_get_networks(const struct LDKInit *NONNULL_PTR this_ptr);
7277         public static native long Init_get_networks(long this_ptr);
7278         // void Init_set_networks(struct LDKInit *NONNULL_PTR this_ptr, struct LDKCOption_CVec_ThirtyTwoBytesZZ val);
7279         public static native void Init_set_networks(long this_ptr, long val);
7280         // struct LDKCOption_SocketAddressZ Init_get_remote_network_address(const struct LDKInit *NONNULL_PTR this_ptr);
7281         public static native long Init_get_remote_network_address(long this_ptr);
7282         // void Init_set_remote_network_address(struct LDKInit *NONNULL_PTR this_ptr, struct LDKCOption_SocketAddressZ val);
7283         public static native void Init_set_remote_network_address(long this_ptr, long val);
7284         // MUST_USE_RES struct LDKInit Init_new(struct LDKInitFeatures features_arg, struct LDKCOption_CVec_ThirtyTwoBytesZZ networks_arg, struct LDKCOption_SocketAddressZ remote_network_address_arg);
7285         public static native long Init_new(long features_arg, long networks_arg, long remote_network_address_arg);
7286         // uint64_t Init_clone_ptr(LDKInit *NONNULL_PTR arg);
7287         public static native long Init_clone_ptr(long arg);
7288         // struct LDKInit Init_clone(const struct LDKInit *NONNULL_PTR orig);
7289         public static native long Init_clone(long orig);
7290         // bool Init_eq(const struct LDKInit *NONNULL_PTR a, const struct LDKInit *NONNULL_PTR b);
7291         public static native boolean Init_eq(long a, long b);
7292         // void ErrorMessage_free(struct LDKErrorMessage this_obj);
7293         public static native void ErrorMessage_free(long this_obj);
7294         // const uint8_t (*ErrorMessage_get_channel_id(const struct LDKErrorMessage *NONNULL_PTR this_ptr))[32];
7295         public static native byte[] ErrorMessage_get_channel_id(long this_ptr);
7296         // void ErrorMessage_set_channel_id(struct LDKErrorMessage *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7297         public static native void ErrorMessage_set_channel_id(long this_ptr, byte[] val);
7298         // struct LDKStr ErrorMessage_get_data(const struct LDKErrorMessage *NONNULL_PTR this_ptr);
7299         public static native String ErrorMessage_get_data(long this_ptr);
7300         // void ErrorMessage_set_data(struct LDKErrorMessage *NONNULL_PTR this_ptr, struct LDKStr val);
7301         public static native void ErrorMessage_set_data(long this_ptr, String val);
7302         // MUST_USE_RES struct LDKErrorMessage ErrorMessage_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKStr data_arg);
7303         public static native long ErrorMessage_new(byte[] channel_id_arg, String data_arg);
7304         // uint64_t ErrorMessage_clone_ptr(LDKErrorMessage *NONNULL_PTR arg);
7305         public static native long ErrorMessage_clone_ptr(long arg);
7306         // struct LDKErrorMessage ErrorMessage_clone(const struct LDKErrorMessage *NONNULL_PTR orig);
7307         public static native long ErrorMessage_clone(long orig);
7308         // bool ErrorMessage_eq(const struct LDKErrorMessage *NONNULL_PTR a, const struct LDKErrorMessage *NONNULL_PTR b);
7309         public static native boolean ErrorMessage_eq(long a, long b);
7310         // void WarningMessage_free(struct LDKWarningMessage this_obj);
7311         public static native void WarningMessage_free(long this_obj);
7312         // const uint8_t (*WarningMessage_get_channel_id(const struct LDKWarningMessage *NONNULL_PTR this_ptr))[32];
7313         public static native byte[] WarningMessage_get_channel_id(long this_ptr);
7314         // void WarningMessage_set_channel_id(struct LDKWarningMessage *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7315         public static native void WarningMessage_set_channel_id(long this_ptr, byte[] val);
7316         // struct LDKStr WarningMessage_get_data(const struct LDKWarningMessage *NONNULL_PTR this_ptr);
7317         public static native String WarningMessage_get_data(long this_ptr);
7318         // void WarningMessage_set_data(struct LDKWarningMessage *NONNULL_PTR this_ptr, struct LDKStr val);
7319         public static native void WarningMessage_set_data(long this_ptr, String val);
7320         // MUST_USE_RES struct LDKWarningMessage WarningMessage_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKStr data_arg);
7321         public static native long WarningMessage_new(byte[] channel_id_arg, String data_arg);
7322         // uint64_t WarningMessage_clone_ptr(LDKWarningMessage *NONNULL_PTR arg);
7323         public static native long WarningMessage_clone_ptr(long arg);
7324         // struct LDKWarningMessage WarningMessage_clone(const struct LDKWarningMessage *NONNULL_PTR orig);
7325         public static native long WarningMessage_clone(long orig);
7326         // bool WarningMessage_eq(const struct LDKWarningMessage *NONNULL_PTR a, const struct LDKWarningMessage *NONNULL_PTR b);
7327         public static native boolean WarningMessage_eq(long a, long b);
7328         // void Ping_free(struct LDKPing this_obj);
7329         public static native void Ping_free(long this_obj);
7330         // uint16_t Ping_get_ponglen(const struct LDKPing *NONNULL_PTR this_ptr);
7331         public static native short Ping_get_ponglen(long this_ptr);
7332         // void Ping_set_ponglen(struct LDKPing *NONNULL_PTR this_ptr, uint16_t val);
7333         public static native void Ping_set_ponglen(long this_ptr, short val);
7334         // uint16_t Ping_get_byteslen(const struct LDKPing *NONNULL_PTR this_ptr);
7335         public static native short Ping_get_byteslen(long this_ptr);
7336         // void Ping_set_byteslen(struct LDKPing *NONNULL_PTR this_ptr, uint16_t val);
7337         public static native void Ping_set_byteslen(long this_ptr, short val);
7338         // MUST_USE_RES struct LDKPing Ping_new(uint16_t ponglen_arg, uint16_t byteslen_arg);
7339         public static native long Ping_new(short ponglen_arg, short byteslen_arg);
7340         // uint64_t Ping_clone_ptr(LDKPing *NONNULL_PTR arg);
7341         public static native long Ping_clone_ptr(long arg);
7342         // struct LDKPing Ping_clone(const struct LDKPing *NONNULL_PTR orig);
7343         public static native long Ping_clone(long orig);
7344         // bool Ping_eq(const struct LDKPing *NONNULL_PTR a, const struct LDKPing *NONNULL_PTR b);
7345         public static native boolean Ping_eq(long a, long b);
7346         // void Pong_free(struct LDKPong this_obj);
7347         public static native void Pong_free(long this_obj);
7348         // uint16_t Pong_get_byteslen(const struct LDKPong *NONNULL_PTR this_ptr);
7349         public static native short Pong_get_byteslen(long this_ptr);
7350         // void Pong_set_byteslen(struct LDKPong *NONNULL_PTR this_ptr, uint16_t val);
7351         public static native void Pong_set_byteslen(long this_ptr, short val);
7352         // MUST_USE_RES struct LDKPong Pong_new(uint16_t byteslen_arg);
7353         public static native long Pong_new(short byteslen_arg);
7354         // uint64_t Pong_clone_ptr(LDKPong *NONNULL_PTR arg);
7355         public static native long Pong_clone_ptr(long arg);
7356         // struct LDKPong Pong_clone(const struct LDKPong *NONNULL_PTR orig);
7357         public static native long Pong_clone(long orig);
7358         // bool Pong_eq(const struct LDKPong *NONNULL_PTR a, const struct LDKPong *NONNULL_PTR b);
7359         public static native boolean Pong_eq(long a, long b);
7360         // void OpenChannel_free(struct LDKOpenChannel this_obj);
7361         public static native void OpenChannel_free(long this_obj);
7362         // const uint8_t (*OpenChannel_get_chain_hash(const struct LDKOpenChannel *NONNULL_PTR this_ptr))[32];
7363         public static native byte[] OpenChannel_get_chain_hash(long this_ptr);
7364         // void OpenChannel_set_chain_hash(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7365         public static native void OpenChannel_set_chain_hash(long this_ptr, byte[] val);
7366         // const uint8_t (*OpenChannel_get_temporary_channel_id(const struct LDKOpenChannel *NONNULL_PTR this_ptr))[32];
7367         public static native byte[] OpenChannel_get_temporary_channel_id(long this_ptr);
7368         // void OpenChannel_set_temporary_channel_id(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7369         public static native void OpenChannel_set_temporary_channel_id(long this_ptr, byte[] val);
7370         // uint64_t OpenChannel_get_funding_satoshis(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7371         public static native long OpenChannel_get_funding_satoshis(long this_ptr);
7372         // void OpenChannel_set_funding_satoshis(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
7373         public static native void OpenChannel_set_funding_satoshis(long this_ptr, long val);
7374         // uint64_t OpenChannel_get_push_msat(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7375         public static native long OpenChannel_get_push_msat(long this_ptr);
7376         // void OpenChannel_set_push_msat(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
7377         public static native void OpenChannel_set_push_msat(long this_ptr, long val);
7378         // uint64_t OpenChannel_get_dust_limit_satoshis(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7379         public static native long OpenChannel_get_dust_limit_satoshis(long this_ptr);
7380         // void OpenChannel_set_dust_limit_satoshis(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
7381         public static native void OpenChannel_set_dust_limit_satoshis(long this_ptr, long val);
7382         // uint64_t OpenChannel_get_max_htlc_value_in_flight_msat(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7383         public static native long OpenChannel_get_max_htlc_value_in_flight_msat(long this_ptr);
7384         // void OpenChannel_set_max_htlc_value_in_flight_msat(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
7385         public static native void OpenChannel_set_max_htlc_value_in_flight_msat(long this_ptr, long val);
7386         // uint64_t OpenChannel_get_channel_reserve_satoshis(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7387         public static native long OpenChannel_get_channel_reserve_satoshis(long this_ptr);
7388         // void OpenChannel_set_channel_reserve_satoshis(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
7389         public static native void OpenChannel_set_channel_reserve_satoshis(long this_ptr, long val);
7390         // uint64_t OpenChannel_get_htlc_minimum_msat(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7391         public static native long OpenChannel_get_htlc_minimum_msat(long this_ptr);
7392         // void OpenChannel_set_htlc_minimum_msat(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
7393         public static native void OpenChannel_set_htlc_minimum_msat(long this_ptr, long val);
7394         // uint32_t OpenChannel_get_feerate_per_kw(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7395         public static native int OpenChannel_get_feerate_per_kw(long this_ptr);
7396         // void OpenChannel_set_feerate_per_kw(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint32_t val);
7397         public static native void OpenChannel_set_feerate_per_kw(long this_ptr, int val);
7398         // uint16_t OpenChannel_get_to_self_delay(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7399         public static native short OpenChannel_get_to_self_delay(long this_ptr);
7400         // void OpenChannel_set_to_self_delay(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint16_t val);
7401         public static native void OpenChannel_set_to_self_delay(long this_ptr, short val);
7402         // uint16_t OpenChannel_get_max_accepted_htlcs(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7403         public static native short OpenChannel_get_max_accepted_htlcs(long this_ptr);
7404         // void OpenChannel_set_max_accepted_htlcs(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint16_t val);
7405         public static native void OpenChannel_set_max_accepted_htlcs(long this_ptr, short val);
7406         // struct LDKPublicKey OpenChannel_get_funding_pubkey(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7407         public static native byte[] OpenChannel_get_funding_pubkey(long this_ptr);
7408         // void OpenChannel_set_funding_pubkey(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7409         public static native void OpenChannel_set_funding_pubkey(long this_ptr, byte[] val);
7410         // struct LDKPublicKey OpenChannel_get_revocation_basepoint(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7411         public static native byte[] OpenChannel_get_revocation_basepoint(long this_ptr);
7412         // void OpenChannel_set_revocation_basepoint(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7413         public static native void OpenChannel_set_revocation_basepoint(long this_ptr, byte[] val);
7414         // struct LDKPublicKey OpenChannel_get_payment_point(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7415         public static native byte[] OpenChannel_get_payment_point(long this_ptr);
7416         // void OpenChannel_set_payment_point(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7417         public static native void OpenChannel_set_payment_point(long this_ptr, byte[] val);
7418         // struct LDKPublicKey OpenChannel_get_delayed_payment_basepoint(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7419         public static native byte[] OpenChannel_get_delayed_payment_basepoint(long this_ptr);
7420         // void OpenChannel_set_delayed_payment_basepoint(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7421         public static native void OpenChannel_set_delayed_payment_basepoint(long this_ptr, byte[] val);
7422         // struct LDKPublicKey OpenChannel_get_htlc_basepoint(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7423         public static native byte[] OpenChannel_get_htlc_basepoint(long this_ptr);
7424         // void OpenChannel_set_htlc_basepoint(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7425         public static native void OpenChannel_set_htlc_basepoint(long this_ptr, byte[] val);
7426         // struct LDKPublicKey OpenChannel_get_first_per_commitment_point(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7427         public static native byte[] OpenChannel_get_first_per_commitment_point(long this_ptr);
7428         // void OpenChannel_set_first_per_commitment_point(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7429         public static native void OpenChannel_set_first_per_commitment_point(long this_ptr, byte[] val);
7430         // uint8_t OpenChannel_get_channel_flags(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7431         public static native byte OpenChannel_get_channel_flags(long this_ptr);
7432         // void OpenChannel_set_channel_flags(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint8_t val);
7433         public static native void OpenChannel_set_channel_flags(long this_ptr, byte val);
7434         // struct LDKCOption_CVec_u8ZZ OpenChannel_get_shutdown_scriptpubkey(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7435         public static native long OpenChannel_get_shutdown_scriptpubkey(long this_ptr);
7436         // void OpenChannel_set_shutdown_scriptpubkey(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKCOption_CVec_u8ZZ val);
7437         public static native void OpenChannel_set_shutdown_scriptpubkey(long this_ptr, long val);
7438         // struct LDKChannelTypeFeatures OpenChannel_get_channel_type(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
7439         public static native long OpenChannel_get_channel_type(long this_ptr);
7440         // void OpenChannel_set_channel_type(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKChannelTypeFeatures val);
7441         public static native void OpenChannel_set_channel_type(long this_ptr, long val);
7442         // MUST_USE_RES struct LDKOpenChannel OpenChannel_new(struct LDKThirtyTwoBytes chain_hash_arg, struct LDKThirtyTwoBytes temporary_channel_id_arg, uint64_t funding_satoshis_arg, uint64_t push_msat_arg, uint64_t dust_limit_satoshis_arg, uint64_t max_htlc_value_in_flight_msat_arg, uint64_t channel_reserve_satoshis_arg, uint64_t htlc_minimum_msat_arg, uint32_t feerate_per_kw_arg, uint16_t to_self_delay_arg, uint16_t max_accepted_htlcs_arg, struct LDKPublicKey funding_pubkey_arg, struct LDKPublicKey revocation_basepoint_arg, struct LDKPublicKey payment_point_arg, struct LDKPublicKey delayed_payment_basepoint_arg, struct LDKPublicKey htlc_basepoint_arg, struct LDKPublicKey first_per_commitment_point_arg, uint8_t channel_flags_arg, struct LDKCOption_CVec_u8ZZ shutdown_scriptpubkey_arg, struct LDKChannelTypeFeatures channel_type_arg);
7443         public static native long OpenChannel_new(byte[] chain_hash_arg, byte[] temporary_channel_id_arg, long funding_satoshis_arg, long push_msat_arg, long dust_limit_satoshis_arg, long max_htlc_value_in_flight_msat_arg, long channel_reserve_satoshis_arg, long htlc_minimum_msat_arg, int feerate_per_kw_arg, short to_self_delay_arg, short max_accepted_htlcs_arg, byte[] funding_pubkey_arg, byte[] revocation_basepoint_arg, byte[] payment_point_arg, byte[] delayed_payment_basepoint_arg, byte[] htlc_basepoint_arg, byte[] first_per_commitment_point_arg, byte channel_flags_arg, long shutdown_scriptpubkey_arg, long channel_type_arg);
7444         // uint64_t OpenChannel_clone_ptr(LDKOpenChannel *NONNULL_PTR arg);
7445         public static native long OpenChannel_clone_ptr(long arg);
7446         // struct LDKOpenChannel OpenChannel_clone(const struct LDKOpenChannel *NONNULL_PTR orig);
7447         public static native long OpenChannel_clone(long orig);
7448         // bool OpenChannel_eq(const struct LDKOpenChannel *NONNULL_PTR a, const struct LDKOpenChannel *NONNULL_PTR b);
7449         public static native boolean OpenChannel_eq(long a, long b);
7450         // void OpenChannelV2_free(struct LDKOpenChannelV2 this_obj);
7451         public static native void OpenChannelV2_free(long this_obj);
7452         // const uint8_t (*OpenChannelV2_get_chain_hash(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr))[32];
7453         public static native byte[] OpenChannelV2_get_chain_hash(long this_ptr);
7454         // void OpenChannelV2_set_chain_hash(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7455         public static native void OpenChannelV2_set_chain_hash(long this_ptr, byte[] val);
7456         // const uint8_t (*OpenChannelV2_get_temporary_channel_id(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr))[32];
7457         public static native byte[] OpenChannelV2_get_temporary_channel_id(long this_ptr);
7458         // void OpenChannelV2_set_temporary_channel_id(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7459         public static native void OpenChannelV2_set_temporary_channel_id(long this_ptr, byte[] val);
7460         // uint32_t OpenChannelV2_get_funding_feerate_sat_per_1000_weight(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7461         public static native int OpenChannelV2_get_funding_feerate_sat_per_1000_weight(long this_ptr);
7462         // void OpenChannelV2_set_funding_feerate_sat_per_1000_weight(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint32_t val);
7463         public static native void OpenChannelV2_set_funding_feerate_sat_per_1000_weight(long this_ptr, int val);
7464         // uint32_t OpenChannelV2_get_commitment_feerate_sat_per_1000_weight(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7465         public static native int OpenChannelV2_get_commitment_feerate_sat_per_1000_weight(long this_ptr);
7466         // void OpenChannelV2_set_commitment_feerate_sat_per_1000_weight(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint32_t val);
7467         public static native void OpenChannelV2_set_commitment_feerate_sat_per_1000_weight(long this_ptr, int val);
7468         // uint64_t OpenChannelV2_get_funding_satoshis(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7469         public static native long OpenChannelV2_get_funding_satoshis(long this_ptr);
7470         // void OpenChannelV2_set_funding_satoshis(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint64_t val);
7471         public static native void OpenChannelV2_set_funding_satoshis(long this_ptr, long val);
7472         // uint64_t OpenChannelV2_get_dust_limit_satoshis(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7473         public static native long OpenChannelV2_get_dust_limit_satoshis(long this_ptr);
7474         // void OpenChannelV2_set_dust_limit_satoshis(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint64_t val);
7475         public static native void OpenChannelV2_set_dust_limit_satoshis(long this_ptr, long val);
7476         // uint64_t OpenChannelV2_get_max_htlc_value_in_flight_msat(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7477         public static native long OpenChannelV2_get_max_htlc_value_in_flight_msat(long this_ptr);
7478         // void OpenChannelV2_set_max_htlc_value_in_flight_msat(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint64_t val);
7479         public static native void OpenChannelV2_set_max_htlc_value_in_flight_msat(long this_ptr, long val);
7480         // uint64_t OpenChannelV2_get_htlc_minimum_msat(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7481         public static native long OpenChannelV2_get_htlc_minimum_msat(long this_ptr);
7482         // void OpenChannelV2_set_htlc_minimum_msat(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint64_t val);
7483         public static native void OpenChannelV2_set_htlc_minimum_msat(long this_ptr, long val);
7484         // uint16_t OpenChannelV2_get_to_self_delay(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7485         public static native short OpenChannelV2_get_to_self_delay(long this_ptr);
7486         // void OpenChannelV2_set_to_self_delay(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint16_t val);
7487         public static native void OpenChannelV2_set_to_self_delay(long this_ptr, short val);
7488         // uint16_t OpenChannelV2_get_max_accepted_htlcs(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7489         public static native short OpenChannelV2_get_max_accepted_htlcs(long this_ptr);
7490         // void OpenChannelV2_set_max_accepted_htlcs(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint16_t val);
7491         public static native void OpenChannelV2_set_max_accepted_htlcs(long this_ptr, short val);
7492         // uint32_t OpenChannelV2_get_locktime(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7493         public static native int OpenChannelV2_get_locktime(long this_ptr);
7494         // void OpenChannelV2_set_locktime(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint32_t val);
7495         public static native void OpenChannelV2_set_locktime(long this_ptr, int val);
7496         // struct LDKPublicKey OpenChannelV2_get_funding_pubkey(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7497         public static native byte[] OpenChannelV2_get_funding_pubkey(long this_ptr);
7498         // void OpenChannelV2_set_funding_pubkey(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7499         public static native void OpenChannelV2_set_funding_pubkey(long this_ptr, byte[] val);
7500         // struct LDKPublicKey OpenChannelV2_get_revocation_basepoint(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7501         public static native byte[] OpenChannelV2_get_revocation_basepoint(long this_ptr);
7502         // void OpenChannelV2_set_revocation_basepoint(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7503         public static native void OpenChannelV2_set_revocation_basepoint(long this_ptr, byte[] val);
7504         // struct LDKPublicKey OpenChannelV2_get_payment_basepoint(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7505         public static native byte[] OpenChannelV2_get_payment_basepoint(long this_ptr);
7506         // void OpenChannelV2_set_payment_basepoint(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7507         public static native void OpenChannelV2_set_payment_basepoint(long this_ptr, byte[] val);
7508         // struct LDKPublicKey OpenChannelV2_get_delayed_payment_basepoint(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7509         public static native byte[] OpenChannelV2_get_delayed_payment_basepoint(long this_ptr);
7510         // void OpenChannelV2_set_delayed_payment_basepoint(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7511         public static native void OpenChannelV2_set_delayed_payment_basepoint(long this_ptr, byte[] val);
7512         // struct LDKPublicKey OpenChannelV2_get_htlc_basepoint(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7513         public static native byte[] OpenChannelV2_get_htlc_basepoint(long this_ptr);
7514         // void OpenChannelV2_set_htlc_basepoint(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7515         public static native void OpenChannelV2_set_htlc_basepoint(long this_ptr, byte[] val);
7516         // struct LDKPublicKey OpenChannelV2_get_first_per_commitment_point(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7517         public static native byte[] OpenChannelV2_get_first_per_commitment_point(long this_ptr);
7518         // void OpenChannelV2_set_first_per_commitment_point(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7519         public static native void OpenChannelV2_set_first_per_commitment_point(long this_ptr, byte[] val);
7520         // struct LDKPublicKey OpenChannelV2_get_second_per_commitment_point(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7521         public static native byte[] OpenChannelV2_get_second_per_commitment_point(long this_ptr);
7522         // void OpenChannelV2_set_second_per_commitment_point(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7523         public static native void OpenChannelV2_set_second_per_commitment_point(long this_ptr, byte[] val);
7524         // uint8_t OpenChannelV2_get_channel_flags(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7525         public static native byte OpenChannelV2_get_channel_flags(long this_ptr);
7526         // void OpenChannelV2_set_channel_flags(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, uint8_t val);
7527         public static native void OpenChannelV2_set_channel_flags(long this_ptr, byte val);
7528         // struct LDKCOption_CVec_u8ZZ OpenChannelV2_get_shutdown_scriptpubkey(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7529         public static native long OpenChannelV2_get_shutdown_scriptpubkey(long this_ptr);
7530         // void OpenChannelV2_set_shutdown_scriptpubkey(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKCOption_CVec_u8ZZ val);
7531         public static native void OpenChannelV2_set_shutdown_scriptpubkey(long this_ptr, long val);
7532         // struct LDKChannelTypeFeatures OpenChannelV2_get_channel_type(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7533         public static native long OpenChannelV2_get_channel_type(long this_ptr);
7534         // void OpenChannelV2_set_channel_type(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, struct LDKChannelTypeFeatures val);
7535         public static native void OpenChannelV2_set_channel_type(long this_ptr, long val);
7536         // enum LDKCOption_NoneZ OpenChannelV2_get_require_confirmed_inputs(const struct LDKOpenChannelV2 *NONNULL_PTR this_ptr);
7537         public static native COption_NoneZ OpenChannelV2_get_require_confirmed_inputs(long this_ptr);
7538         // void OpenChannelV2_set_require_confirmed_inputs(struct LDKOpenChannelV2 *NONNULL_PTR this_ptr, enum LDKCOption_NoneZ val);
7539         public static native void OpenChannelV2_set_require_confirmed_inputs(long this_ptr, COption_NoneZ val);
7540         // MUST_USE_RES struct LDKOpenChannelV2 OpenChannelV2_new(struct LDKThirtyTwoBytes chain_hash_arg, struct LDKThirtyTwoBytes temporary_channel_id_arg, uint32_t funding_feerate_sat_per_1000_weight_arg, uint32_t commitment_feerate_sat_per_1000_weight_arg, uint64_t funding_satoshis_arg, uint64_t dust_limit_satoshis_arg, uint64_t max_htlc_value_in_flight_msat_arg, uint64_t htlc_minimum_msat_arg, uint16_t to_self_delay_arg, uint16_t max_accepted_htlcs_arg, uint32_t locktime_arg, struct LDKPublicKey funding_pubkey_arg, struct LDKPublicKey revocation_basepoint_arg, struct LDKPublicKey payment_basepoint_arg, struct LDKPublicKey delayed_payment_basepoint_arg, struct LDKPublicKey htlc_basepoint_arg, struct LDKPublicKey first_per_commitment_point_arg, struct LDKPublicKey second_per_commitment_point_arg, uint8_t channel_flags_arg, struct LDKCOption_CVec_u8ZZ shutdown_scriptpubkey_arg, struct LDKChannelTypeFeatures channel_type_arg, enum LDKCOption_NoneZ require_confirmed_inputs_arg);
7541         public static native long OpenChannelV2_new(byte[] chain_hash_arg, byte[] temporary_channel_id_arg, int funding_feerate_sat_per_1000_weight_arg, int commitment_feerate_sat_per_1000_weight_arg, long funding_satoshis_arg, long dust_limit_satoshis_arg, long max_htlc_value_in_flight_msat_arg, long htlc_minimum_msat_arg, short to_self_delay_arg, short max_accepted_htlcs_arg, int locktime_arg, byte[] funding_pubkey_arg, byte[] revocation_basepoint_arg, byte[] payment_basepoint_arg, byte[] delayed_payment_basepoint_arg, byte[] htlc_basepoint_arg, byte[] first_per_commitment_point_arg, byte[] second_per_commitment_point_arg, byte channel_flags_arg, long shutdown_scriptpubkey_arg, long channel_type_arg, COption_NoneZ require_confirmed_inputs_arg);
7542         // uint64_t OpenChannelV2_clone_ptr(LDKOpenChannelV2 *NONNULL_PTR arg);
7543         public static native long OpenChannelV2_clone_ptr(long arg);
7544         // struct LDKOpenChannelV2 OpenChannelV2_clone(const struct LDKOpenChannelV2 *NONNULL_PTR orig);
7545         public static native long OpenChannelV2_clone(long orig);
7546         // bool OpenChannelV2_eq(const struct LDKOpenChannelV2 *NONNULL_PTR a, const struct LDKOpenChannelV2 *NONNULL_PTR b);
7547         public static native boolean OpenChannelV2_eq(long a, long b);
7548         // void AcceptChannel_free(struct LDKAcceptChannel this_obj);
7549         public static native void AcceptChannel_free(long this_obj);
7550         // const uint8_t (*AcceptChannel_get_temporary_channel_id(const struct LDKAcceptChannel *NONNULL_PTR this_ptr))[32];
7551         public static native byte[] AcceptChannel_get_temporary_channel_id(long this_ptr);
7552         // void AcceptChannel_set_temporary_channel_id(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7553         public static native void AcceptChannel_set_temporary_channel_id(long this_ptr, byte[] val);
7554         // uint64_t AcceptChannel_get_dust_limit_satoshis(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7555         public static native long AcceptChannel_get_dust_limit_satoshis(long this_ptr);
7556         // void AcceptChannel_set_dust_limit_satoshis(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint64_t val);
7557         public static native void AcceptChannel_set_dust_limit_satoshis(long this_ptr, long val);
7558         // uint64_t AcceptChannel_get_max_htlc_value_in_flight_msat(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7559         public static native long AcceptChannel_get_max_htlc_value_in_flight_msat(long this_ptr);
7560         // void AcceptChannel_set_max_htlc_value_in_flight_msat(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint64_t val);
7561         public static native void AcceptChannel_set_max_htlc_value_in_flight_msat(long this_ptr, long val);
7562         // uint64_t AcceptChannel_get_channel_reserve_satoshis(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7563         public static native long AcceptChannel_get_channel_reserve_satoshis(long this_ptr);
7564         // void AcceptChannel_set_channel_reserve_satoshis(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint64_t val);
7565         public static native void AcceptChannel_set_channel_reserve_satoshis(long this_ptr, long val);
7566         // uint64_t AcceptChannel_get_htlc_minimum_msat(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7567         public static native long AcceptChannel_get_htlc_minimum_msat(long this_ptr);
7568         // void AcceptChannel_set_htlc_minimum_msat(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint64_t val);
7569         public static native void AcceptChannel_set_htlc_minimum_msat(long this_ptr, long val);
7570         // uint32_t AcceptChannel_get_minimum_depth(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7571         public static native int AcceptChannel_get_minimum_depth(long this_ptr);
7572         // void AcceptChannel_set_minimum_depth(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint32_t val);
7573         public static native void AcceptChannel_set_minimum_depth(long this_ptr, int val);
7574         // uint16_t AcceptChannel_get_to_self_delay(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7575         public static native short AcceptChannel_get_to_self_delay(long this_ptr);
7576         // void AcceptChannel_set_to_self_delay(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint16_t val);
7577         public static native void AcceptChannel_set_to_self_delay(long this_ptr, short val);
7578         // uint16_t AcceptChannel_get_max_accepted_htlcs(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7579         public static native short AcceptChannel_get_max_accepted_htlcs(long this_ptr);
7580         // void AcceptChannel_set_max_accepted_htlcs(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint16_t val);
7581         public static native void AcceptChannel_set_max_accepted_htlcs(long this_ptr, short val);
7582         // struct LDKPublicKey AcceptChannel_get_funding_pubkey(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7583         public static native byte[] AcceptChannel_get_funding_pubkey(long this_ptr);
7584         // void AcceptChannel_set_funding_pubkey(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7585         public static native void AcceptChannel_set_funding_pubkey(long this_ptr, byte[] val);
7586         // struct LDKPublicKey AcceptChannel_get_revocation_basepoint(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7587         public static native byte[] AcceptChannel_get_revocation_basepoint(long this_ptr);
7588         // void AcceptChannel_set_revocation_basepoint(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7589         public static native void AcceptChannel_set_revocation_basepoint(long this_ptr, byte[] val);
7590         // struct LDKPublicKey AcceptChannel_get_payment_point(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7591         public static native byte[] AcceptChannel_get_payment_point(long this_ptr);
7592         // void AcceptChannel_set_payment_point(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7593         public static native void AcceptChannel_set_payment_point(long this_ptr, byte[] val);
7594         // struct LDKPublicKey AcceptChannel_get_delayed_payment_basepoint(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7595         public static native byte[] AcceptChannel_get_delayed_payment_basepoint(long this_ptr);
7596         // void AcceptChannel_set_delayed_payment_basepoint(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7597         public static native void AcceptChannel_set_delayed_payment_basepoint(long this_ptr, byte[] val);
7598         // struct LDKPublicKey AcceptChannel_get_htlc_basepoint(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7599         public static native byte[] AcceptChannel_get_htlc_basepoint(long this_ptr);
7600         // void AcceptChannel_set_htlc_basepoint(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7601         public static native void AcceptChannel_set_htlc_basepoint(long this_ptr, byte[] val);
7602         // struct LDKPublicKey AcceptChannel_get_first_per_commitment_point(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7603         public static native byte[] AcceptChannel_get_first_per_commitment_point(long this_ptr);
7604         // void AcceptChannel_set_first_per_commitment_point(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7605         public static native void AcceptChannel_set_first_per_commitment_point(long this_ptr, byte[] val);
7606         // struct LDKCOption_CVec_u8ZZ AcceptChannel_get_shutdown_scriptpubkey(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7607         public static native long AcceptChannel_get_shutdown_scriptpubkey(long this_ptr);
7608         // void AcceptChannel_set_shutdown_scriptpubkey(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKCOption_CVec_u8ZZ val);
7609         public static native void AcceptChannel_set_shutdown_scriptpubkey(long this_ptr, long val);
7610         // struct LDKChannelTypeFeatures AcceptChannel_get_channel_type(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
7611         public static native long AcceptChannel_get_channel_type(long this_ptr);
7612         // void AcceptChannel_set_channel_type(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKChannelTypeFeatures val);
7613         public static native void AcceptChannel_set_channel_type(long this_ptr, long val);
7614         // MUST_USE_RES struct LDKAcceptChannel AcceptChannel_new(struct LDKThirtyTwoBytes temporary_channel_id_arg, uint64_t dust_limit_satoshis_arg, uint64_t max_htlc_value_in_flight_msat_arg, uint64_t channel_reserve_satoshis_arg, uint64_t htlc_minimum_msat_arg, uint32_t minimum_depth_arg, uint16_t to_self_delay_arg, uint16_t max_accepted_htlcs_arg, struct LDKPublicKey funding_pubkey_arg, struct LDKPublicKey revocation_basepoint_arg, struct LDKPublicKey payment_point_arg, struct LDKPublicKey delayed_payment_basepoint_arg, struct LDKPublicKey htlc_basepoint_arg, struct LDKPublicKey first_per_commitment_point_arg, struct LDKCOption_CVec_u8ZZ shutdown_scriptpubkey_arg, struct LDKChannelTypeFeatures channel_type_arg);
7615         public static native long AcceptChannel_new(byte[] temporary_channel_id_arg, long dust_limit_satoshis_arg, long max_htlc_value_in_flight_msat_arg, long channel_reserve_satoshis_arg, long htlc_minimum_msat_arg, int minimum_depth_arg, short to_self_delay_arg, short max_accepted_htlcs_arg, byte[] funding_pubkey_arg, byte[] revocation_basepoint_arg, byte[] payment_point_arg, byte[] delayed_payment_basepoint_arg, byte[] htlc_basepoint_arg, byte[] first_per_commitment_point_arg, long shutdown_scriptpubkey_arg, long channel_type_arg);
7616         // uint64_t AcceptChannel_clone_ptr(LDKAcceptChannel *NONNULL_PTR arg);
7617         public static native long AcceptChannel_clone_ptr(long arg);
7618         // struct LDKAcceptChannel AcceptChannel_clone(const struct LDKAcceptChannel *NONNULL_PTR orig);
7619         public static native long AcceptChannel_clone(long orig);
7620         // bool AcceptChannel_eq(const struct LDKAcceptChannel *NONNULL_PTR a, const struct LDKAcceptChannel *NONNULL_PTR b);
7621         public static native boolean AcceptChannel_eq(long a, long b);
7622         // void AcceptChannelV2_free(struct LDKAcceptChannelV2 this_obj);
7623         public static native void AcceptChannelV2_free(long this_obj);
7624         // const uint8_t (*AcceptChannelV2_get_temporary_channel_id(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr))[32];
7625         public static native byte[] AcceptChannelV2_get_temporary_channel_id(long this_ptr);
7626         // void AcceptChannelV2_set_temporary_channel_id(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7627         public static native void AcceptChannelV2_set_temporary_channel_id(long this_ptr, byte[] val);
7628         // uint64_t AcceptChannelV2_get_funding_satoshis(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7629         public static native long AcceptChannelV2_get_funding_satoshis(long this_ptr);
7630         // void AcceptChannelV2_set_funding_satoshis(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, uint64_t val);
7631         public static native void AcceptChannelV2_set_funding_satoshis(long this_ptr, long val);
7632         // uint64_t AcceptChannelV2_get_dust_limit_satoshis(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7633         public static native long AcceptChannelV2_get_dust_limit_satoshis(long this_ptr);
7634         // void AcceptChannelV2_set_dust_limit_satoshis(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, uint64_t val);
7635         public static native void AcceptChannelV2_set_dust_limit_satoshis(long this_ptr, long val);
7636         // uint64_t AcceptChannelV2_get_max_htlc_value_in_flight_msat(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7637         public static native long AcceptChannelV2_get_max_htlc_value_in_flight_msat(long this_ptr);
7638         // void AcceptChannelV2_set_max_htlc_value_in_flight_msat(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, uint64_t val);
7639         public static native void AcceptChannelV2_set_max_htlc_value_in_flight_msat(long this_ptr, long val);
7640         // uint64_t AcceptChannelV2_get_htlc_minimum_msat(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7641         public static native long AcceptChannelV2_get_htlc_minimum_msat(long this_ptr);
7642         // void AcceptChannelV2_set_htlc_minimum_msat(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, uint64_t val);
7643         public static native void AcceptChannelV2_set_htlc_minimum_msat(long this_ptr, long val);
7644         // uint32_t AcceptChannelV2_get_minimum_depth(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7645         public static native int AcceptChannelV2_get_minimum_depth(long this_ptr);
7646         // void AcceptChannelV2_set_minimum_depth(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, uint32_t val);
7647         public static native void AcceptChannelV2_set_minimum_depth(long this_ptr, int val);
7648         // uint16_t AcceptChannelV2_get_to_self_delay(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7649         public static native short AcceptChannelV2_get_to_self_delay(long this_ptr);
7650         // void AcceptChannelV2_set_to_self_delay(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, uint16_t val);
7651         public static native void AcceptChannelV2_set_to_self_delay(long this_ptr, short val);
7652         // uint16_t AcceptChannelV2_get_max_accepted_htlcs(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7653         public static native short AcceptChannelV2_get_max_accepted_htlcs(long this_ptr);
7654         // void AcceptChannelV2_set_max_accepted_htlcs(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, uint16_t val);
7655         public static native void AcceptChannelV2_set_max_accepted_htlcs(long this_ptr, short val);
7656         // struct LDKPublicKey AcceptChannelV2_get_funding_pubkey(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7657         public static native byte[] AcceptChannelV2_get_funding_pubkey(long this_ptr);
7658         // void AcceptChannelV2_set_funding_pubkey(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7659         public static native void AcceptChannelV2_set_funding_pubkey(long this_ptr, byte[] val);
7660         // struct LDKPublicKey AcceptChannelV2_get_revocation_basepoint(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7661         public static native byte[] AcceptChannelV2_get_revocation_basepoint(long this_ptr);
7662         // void AcceptChannelV2_set_revocation_basepoint(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7663         public static native void AcceptChannelV2_set_revocation_basepoint(long this_ptr, byte[] val);
7664         // struct LDKPublicKey AcceptChannelV2_get_payment_basepoint(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7665         public static native byte[] AcceptChannelV2_get_payment_basepoint(long this_ptr);
7666         // void AcceptChannelV2_set_payment_basepoint(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7667         public static native void AcceptChannelV2_set_payment_basepoint(long this_ptr, byte[] val);
7668         // struct LDKPublicKey AcceptChannelV2_get_delayed_payment_basepoint(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7669         public static native byte[] AcceptChannelV2_get_delayed_payment_basepoint(long this_ptr);
7670         // void AcceptChannelV2_set_delayed_payment_basepoint(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7671         public static native void AcceptChannelV2_set_delayed_payment_basepoint(long this_ptr, byte[] val);
7672         // struct LDKPublicKey AcceptChannelV2_get_htlc_basepoint(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7673         public static native byte[] AcceptChannelV2_get_htlc_basepoint(long this_ptr);
7674         // void AcceptChannelV2_set_htlc_basepoint(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7675         public static native void AcceptChannelV2_set_htlc_basepoint(long this_ptr, byte[] val);
7676         // struct LDKPublicKey AcceptChannelV2_get_first_per_commitment_point(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7677         public static native byte[] AcceptChannelV2_get_first_per_commitment_point(long this_ptr);
7678         // void AcceptChannelV2_set_first_per_commitment_point(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7679         public static native void AcceptChannelV2_set_first_per_commitment_point(long this_ptr, byte[] val);
7680         // struct LDKPublicKey AcceptChannelV2_get_second_per_commitment_point(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7681         public static native byte[] AcceptChannelV2_get_second_per_commitment_point(long this_ptr);
7682         // void AcceptChannelV2_set_second_per_commitment_point(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7683         public static native void AcceptChannelV2_set_second_per_commitment_point(long this_ptr, byte[] val);
7684         // struct LDKCOption_CVec_u8ZZ AcceptChannelV2_get_shutdown_scriptpubkey(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7685         public static native long AcceptChannelV2_get_shutdown_scriptpubkey(long this_ptr);
7686         // void AcceptChannelV2_set_shutdown_scriptpubkey(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKCOption_CVec_u8ZZ val);
7687         public static native void AcceptChannelV2_set_shutdown_scriptpubkey(long this_ptr, long val);
7688         // struct LDKChannelTypeFeatures AcceptChannelV2_get_channel_type(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7689         public static native long AcceptChannelV2_get_channel_type(long this_ptr);
7690         // void AcceptChannelV2_set_channel_type(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, struct LDKChannelTypeFeatures val);
7691         public static native void AcceptChannelV2_set_channel_type(long this_ptr, long val);
7692         // enum LDKCOption_NoneZ AcceptChannelV2_get_require_confirmed_inputs(const struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr);
7693         public static native COption_NoneZ AcceptChannelV2_get_require_confirmed_inputs(long this_ptr);
7694         // void AcceptChannelV2_set_require_confirmed_inputs(struct LDKAcceptChannelV2 *NONNULL_PTR this_ptr, enum LDKCOption_NoneZ val);
7695         public static native void AcceptChannelV2_set_require_confirmed_inputs(long this_ptr, COption_NoneZ val);
7696         // MUST_USE_RES struct LDKAcceptChannelV2 AcceptChannelV2_new(struct LDKThirtyTwoBytes temporary_channel_id_arg, uint64_t funding_satoshis_arg, uint64_t dust_limit_satoshis_arg, uint64_t max_htlc_value_in_flight_msat_arg, uint64_t htlc_minimum_msat_arg, uint32_t minimum_depth_arg, uint16_t to_self_delay_arg, uint16_t max_accepted_htlcs_arg, struct LDKPublicKey funding_pubkey_arg, struct LDKPublicKey revocation_basepoint_arg, struct LDKPublicKey payment_basepoint_arg, struct LDKPublicKey delayed_payment_basepoint_arg, struct LDKPublicKey htlc_basepoint_arg, struct LDKPublicKey first_per_commitment_point_arg, struct LDKPublicKey second_per_commitment_point_arg, struct LDKCOption_CVec_u8ZZ shutdown_scriptpubkey_arg, struct LDKChannelTypeFeatures channel_type_arg, enum LDKCOption_NoneZ require_confirmed_inputs_arg);
7697         public static native long AcceptChannelV2_new(byte[] temporary_channel_id_arg, long funding_satoshis_arg, long dust_limit_satoshis_arg, long max_htlc_value_in_flight_msat_arg, long htlc_minimum_msat_arg, int minimum_depth_arg, short to_self_delay_arg, short max_accepted_htlcs_arg, byte[] funding_pubkey_arg, byte[] revocation_basepoint_arg, byte[] payment_basepoint_arg, byte[] delayed_payment_basepoint_arg, byte[] htlc_basepoint_arg, byte[] first_per_commitment_point_arg, byte[] second_per_commitment_point_arg, long shutdown_scriptpubkey_arg, long channel_type_arg, COption_NoneZ require_confirmed_inputs_arg);
7698         // uint64_t AcceptChannelV2_clone_ptr(LDKAcceptChannelV2 *NONNULL_PTR arg);
7699         public static native long AcceptChannelV2_clone_ptr(long arg);
7700         // struct LDKAcceptChannelV2 AcceptChannelV2_clone(const struct LDKAcceptChannelV2 *NONNULL_PTR orig);
7701         public static native long AcceptChannelV2_clone(long orig);
7702         // bool AcceptChannelV2_eq(const struct LDKAcceptChannelV2 *NONNULL_PTR a, const struct LDKAcceptChannelV2 *NONNULL_PTR b);
7703         public static native boolean AcceptChannelV2_eq(long a, long b);
7704         // void FundingCreated_free(struct LDKFundingCreated this_obj);
7705         public static native void FundingCreated_free(long this_obj);
7706         // const uint8_t (*FundingCreated_get_temporary_channel_id(const struct LDKFundingCreated *NONNULL_PTR this_ptr))[32];
7707         public static native byte[] FundingCreated_get_temporary_channel_id(long this_ptr);
7708         // void FundingCreated_set_temporary_channel_id(struct LDKFundingCreated *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7709         public static native void FundingCreated_set_temporary_channel_id(long this_ptr, byte[] val);
7710         // const uint8_t (*FundingCreated_get_funding_txid(const struct LDKFundingCreated *NONNULL_PTR this_ptr))[32];
7711         public static native byte[] FundingCreated_get_funding_txid(long this_ptr);
7712         // void FundingCreated_set_funding_txid(struct LDKFundingCreated *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7713         public static native void FundingCreated_set_funding_txid(long this_ptr, byte[] val);
7714         // uint16_t FundingCreated_get_funding_output_index(const struct LDKFundingCreated *NONNULL_PTR this_ptr);
7715         public static native short FundingCreated_get_funding_output_index(long this_ptr);
7716         // void FundingCreated_set_funding_output_index(struct LDKFundingCreated *NONNULL_PTR this_ptr, uint16_t val);
7717         public static native void FundingCreated_set_funding_output_index(long this_ptr, short val);
7718         // struct LDKECDSASignature FundingCreated_get_signature(const struct LDKFundingCreated *NONNULL_PTR this_ptr);
7719         public static native byte[] FundingCreated_get_signature(long this_ptr);
7720         // void FundingCreated_set_signature(struct LDKFundingCreated *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
7721         public static native void FundingCreated_set_signature(long this_ptr, byte[] val);
7722         // MUST_USE_RES struct LDKFundingCreated FundingCreated_new(struct LDKThirtyTwoBytes temporary_channel_id_arg, struct LDKThirtyTwoBytes funding_txid_arg, uint16_t funding_output_index_arg, struct LDKECDSASignature signature_arg);
7723         public static native long FundingCreated_new(byte[] temporary_channel_id_arg, byte[] funding_txid_arg, short funding_output_index_arg, byte[] signature_arg);
7724         // uint64_t FundingCreated_clone_ptr(LDKFundingCreated *NONNULL_PTR arg);
7725         public static native long FundingCreated_clone_ptr(long arg);
7726         // struct LDKFundingCreated FundingCreated_clone(const struct LDKFundingCreated *NONNULL_PTR orig);
7727         public static native long FundingCreated_clone(long orig);
7728         // bool FundingCreated_eq(const struct LDKFundingCreated *NONNULL_PTR a, const struct LDKFundingCreated *NONNULL_PTR b);
7729         public static native boolean FundingCreated_eq(long a, long b);
7730         // void FundingSigned_free(struct LDKFundingSigned this_obj);
7731         public static native void FundingSigned_free(long this_obj);
7732         // const uint8_t (*FundingSigned_get_channel_id(const struct LDKFundingSigned *NONNULL_PTR this_ptr))[32];
7733         public static native byte[] FundingSigned_get_channel_id(long this_ptr);
7734         // void FundingSigned_set_channel_id(struct LDKFundingSigned *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7735         public static native void FundingSigned_set_channel_id(long this_ptr, byte[] val);
7736         // struct LDKECDSASignature FundingSigned_get_signature(const struct LDKFundingSigned *NONNULL_PTR this_ptr);
7737         public static native byte[] FundingSigned_get_signature(long this_ptr);
7738         // void FundingSigned_set_signature(struct LDKFundingSigned *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
7739         public static native void FundingSigned_set_signature(long this_ptr, byte[] val);
7740         // MUST_USE_RES struct LDKFundingSigned FundingSigned_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKECDSASignature signature_arg);
7741         public static native long FundingSigned_new(byte[] channel_id_arg, byte[] signature_arg);
7742         // uint64_t FundingSigned_clone_ptr(LDKFundingSigned *NONNULL_PTR arg);
7743         public static native long FundingSigned_clone_ptr(long arg);
7744         // struct LDKFundingSigned FundingSigned_clone(const struct LDKFundingSigned *NONNULL_PTR orig);
7745         public static native long FundingSigned_clone(long orig);
7746         // bool FundingSigned_eq(const struct LDKFundingSigned *NONNULL_PTR a, const struct LDKFundingSigned *NONNULL_PTR b);
7747         public static native boolean FundingSigned_eq(long a, long b);
7748         // void ChannelReady_free(struct LDKChannelReady this_obj);
7749         public static native void ChannelReady_free(long this_obj);
7750         // const uint8_t (*ChannelReady_get_channel_id(const struct LDKChannelReady *NONNULL_PTR this_ptr))[32];
7751         public static native byte[] ChannelReady_get_channel_id(long this_ptr);
7752         // void ChannelReady_set_channel_id(struct LDKChannelReady *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7753         public static native void ChannelReady_set_channel_id(long this_ptr, byte[] val);
7754         // struct LDKPublicKey ChannelReady_get_next_per_commitment_point(const struct LDKChannelReady *NONNULL_PTR this_ptr);
7755         public static native byte[] ChannelReady_get_next_per_commitment_point(long this_ptr);
7756         // void ChannelReady_set_next_per_commitment_point(struct LDKChannelReady *NONNULL_PTR this_ptr, struct LDKPublicKey val);
7757         public static native void ChannelReady_set_next_per_commitment_point(long this_ptr, byte[] val);
7758         // struct LDKCOption_u64Z ChannelReady_get_short_channel_id_alias(const struct LDKChannelReady *NONNULL_PTR this_ptr);
7759         public static native long ChannelReady_get_short_channel_id_alias(long this_ptr);
7760         // void ChannelReady_set_short_channel_id_alias(struct LDKChannelReady *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
7761         public static native void ChannelReady_set_short_channel_id_alias(long this_ptr, long val);
7762         // MUST_USE_RES struct LDKChannelReady ChannelReady_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKPublicKey next_per_commitment_point_arg, struct LDKCOption_u64Z short_channel_id_alias_arg);
7763         public static native long ChannelReady_new(byte[] channel_id_arg, byte[] next_per_commitment_point_arg, long short_channel_id_alias_arg);
7764         // uint64_t ChannelReady_clone_ptr(LDKChannelReady *NONNULL_PTR arg);
7765         public static native long ChannelReady_clone_ptr(long arg);
7766         // struct LDKChannelReady ChannelReady_clone(const struct LDKChannelReady *NONNULL_PTR orig);
7767         public static native long ChannelReady_clone(long orig);
7768         // bool ChannelReady_eq(const struct LDKChannelReady *NONNULL_PTR a, const struct LDKChannelReady *NONNULL_PTR b);
7769         public static native boolean ChannelReady_eq(long a, long b);
7770         // void TxAddInput_free(struct LDKTxAddInput this_obj);
7771         public static native void TxAddInput_free(long this_obj);
7772         // const uint8_t (*TxAddInput_get_channel_id(const struct LDKTxAddInput *NONNULL_PTR this_ptr))[32];
7773         public static native byte[] TxAddInput_get_channel_id(long this_ptr);
7774         // void TxAddInput_set_channel_id(struct LDKTxAddInput *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7775         public static native void TxAddInput_set_channel_id(long this_ptr, byte[] val);
7776         // uint64_t TxAddInput_get_serial_id(const struct LDKTxAddInput *NONNULL_PTR this_ptr);
7777         public static native long TxAddInput_get_serial_id(long this_ptr);
7778         // void TxAddInput_set_serial_id(struct LDKTxAddInput *NONNULL_PTR this_ptr, uint64_t val);
7779         public static native void TxAddInput_set_serial_id(long this_ptr, long val);
7780         // struct LDKTransactionU16LenLimited TxAddInput_get_prevtx(const struct LDKTxAddInput *NONNULL_PTR this_ptr);
7781         public static native long TxAddInput_get_prevtx(long this_ptr);
7782         // void TxAddInput_set_prevtx(struct LDKTxAddInput *NONNULL_PTR this_ptr, struct LDKTransactionU16LenLimited val);
7783         public static native void TxAddInput_set_prevtx(long this_ptr, long val);
7784         // uint32_t TxAddInput_get_prevtx_out(const struct LDKTxAddInput *NONNULL_PTR this_ptr);
7785         public static native int TxAddInput_get_prevtx_out(long this_ptr);
7786         // void TxAddInput_set_prevtx_out(struct LDKTxAddInput *NONNULL_PTR this_ptr, uint32_t val);
7787         public static native void TxAddInput_set_prevtx_out(long this_ptr, int val);
7788         // uint32_t TxAddInput_get_sequence(const struct LDKTxAddInput *NONNULL_PTR this_ptr);
7789         public static native int TxAddInput_get_sequence(long this_ptr);
7790         // void TxAddInput_set_sequence(struct LDKTxAddInput *NONNULL_PTR this_ptr, uint32_t val);
7791         public static native void TxAddInput_set_sequence(long this_ptr, int val);
7792         // MUST_USE_RES struct LDKTxAddInput TxAddInput_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t serial_id_arg, struct LDKTransactionU16LenLimited prevtx_arg, uint32_t prevtx_out_arg, uint32_t sequence_arg);
7793         public static native long TxAddInput_new(byte[] channel_id_arg, long serial_id_arg, long prevtx_arg, int prevtx_out_arg, int sequence_arg);
7794         // uint64_t TxAddInput_clone_ptr(LDKTxAddInput *NONNULL_PTR arg);
7795         public static native long TxAddInput_clone_ptr(long arg);
7796         // struct LDKTxAddInput TxAddInput_clone(const struct LDKTxAddInput *NONNULL_PTR orig);
7797         public static native long TxAddInput_clone(long orig);
7798         // bool TxAddInput_eq(const struct LDKTxAddInput *NONNULL_PTR a, const struct LDKTxAddInput *NONNULL_PTR b);
7799         public static native boolean TxAddInput_eq(long a, long b);
7800         // void TxAddOutput_free(struct LDKTxAddOutput this_obj);
7801         public static native void TxAddOutput_free(long this_obj);
7802         // const uint8_t (*TxAddOutput_get_channel_id(const struct LDKTxAddOutput *NONNULL_PTR this_ptr))[32];
7803         public static native byte[] TxAddOutput_get_channel_id(long this_ptr);
7804         // void TxAddOutput_set_channel_id(struct LDKTxAddOutput *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7805         public static native void TxAddOutput_set_channel_id(long this_ptr, byte[] val);
7806         // uint64_t TxAddOutput_get_serial_id(const struct LDKTxAddOutput *NONNULL_PTR this_ptr);
7807         public static native long TxAddOutput_get_serial_id(long this_ptr);
7808         // void TxAddOutput_set_serial_id(struct LDKTxAddOutput *NONNULL_PTR this_ptr, uint64_t val);
7809         public static native void TxAddOutput_set_serial_id(long this_ptr, long val);
7810         // uint64_t TxAddOutput_get_sats(const struct LDKTxAddOutput *NONNULL_PTR this_ptr);
7811         public static native long TxAddOutput_get_sats(long this_ptr);
7812         // void TxAddOutput_set_sats(struct LDKTxAddOutput *NONNULL_PTR this_ptr, uint64_t val);
7813         public static native void TxAddOutput_set_sats(long this_ptr, long val);
7814         // struct LDKu8slice TxAddOutput_get_script(const struct LDKTxAddOutput *NONNULL_PTR this_ptr);
7815         public static native byte[] TxAddOutput_get_script(long this_ptr);
7816         // void TxAddOutput_set_script(struct LDKTxAddOutput *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
7817         public static native void TxAddOutput_set_script(long this_ptr, byte[] val);
7818         // MUST_USE_RES struct LDKTxAddOutput TxAddOutput_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t serial_id_arg, uint64_t sats_arg, struct LDKCVec_u8Z script_arg);
7819         public static native long TxAddOutput_new(byte[] channel_id_arg, long serial_id_arg, long sats_arg, byte[] script_arg);
7820         // uint64_t TxAddOutput_clone_ptr(LDKTxAddOutput *NONNULL_PTR arg);
7821         public static native long TxAddOutput_clone_ptr(long arg);
7822         // struct LDKTxAddOutput TxAddOutput_clone(const struct LDKTxAddOutput *NONNULL_PTR orig);
7823         public static native long TxAddOutput_clone(long orig);
7824         // bool TxAddOutput_eq(const struct LDKTxAddOutput *NONNULL_PTR a, const struct LDKTxAddOutput *NONNULL_PTR b);
7825         public static native boolean TxAddOutput_eq(long a, long b);
7826         // void TxRemoveInput_free(struct LDKTxRemoveInput this_obj);
7827         public static native void TxRemoveInput_free(long this_obj);
7828         // const uint8_t (*TxRemoveInput_get_channel_id(const struct LDKTxRemoveInput *NONNULL_PTR this_ptr))[32];
7829         public static native byte[] TxRemoveInput_get_channel_id(long this_ptr);
7830         // void TxRemoveInput_set_channel_id(struct LDKTxRemoveInput *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7831         public static native void TxRemoveInput_set_channel_id(long this_ptr, byte[] val);
7832         // uint64_t TxRemoveInput_get_serial_id(const struct LDKTxRemoveInput *NONNULL_PTR this_ptr);
7833         public static native long TxRemoveInput_get_serial_id(long this_ptr);
7834         // void TxRemoveInput_set_serial_id(struct LDKTxRemoveInput *NONNULL_PTR this_ptr, uint64_t val);
7835         public static native void TxRemoveInput_set_serial_id(long this_ptr, long val);
7836         // MUST_USE_RES struct LDKTxRemoveInput TxRemoveInput_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t serial_id_arg);
7837         public static native long TxRemoveInput_new(byte[] channel_id_arg, long serial_id_arg);
7838         // uint64_t TxRemoveInput_clone_ptr(LDKTxRemoveInput *NONNULL_PTR arg);
7839         public static native long TxRemoveInput_clone_ptr(long arg);
7840         // struct LDKTxRemoveInput TxRemoveInput_clone(const struct LDKTxRemoveInput *NONNULL_PTR orig);
7841         public static native long TxRemoveInput_clone(long orig);
7842         // bool TxRemoveInput_eq(const struct LDKTxRemoveInput *NONNULL_PTR a, const struct LDKTxRemoveInput *NONNULL_PTR b);
7843         public static native boolean TxRemoveInput_eq(long a, long b);
7844         // void TxRemoveOutput_free(struct LDKTxRemoveOutput this_obj);
7845         public static native void TxRemoveOutput_free(long this_obj);
7846         // const uint8_t (*TxRemoveOutput_get_channel_id(const struct LDKTxRemoveOutput *NONNULL_PTR this_ptr))[32];
7847         public static native byte[] TxRemoveOutput_get_channel_id(long this_ptr);
7848         // void TxRemoveOutput_set_channel_id(struct LDKTxRemoveOutput *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7849         public static native void TxRemoveOutput_set_channel_id(long this_ptr, byte[] val);
7850         // uint64_t TxRemoveOutput_get_serial_id(const struct LDKTxRemoveOutput *NONNULL_PTR this_ptr);
7851         public static native long TxRemoveOutput_get_serial_id(long this_ptr);
7852         // void TxRemoveOutput_set_serial_id(struct LDKTxRemoveOutput *NONNULL_PTR this_ptr, uint64_t val);
7853         public static native void TxRemoveOutput_set_serial_id(long this_ptr, long val);
7854         // MUST_USE_RES struct LDKTxRemoveOutput TxRemoveOutput_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t serial_id_arg);
7855         public static native long TxRemoveOutput_new(byte[] channel_id_arg, long serial_id_arg);
7856         // uint64_t TxRemoveOutput_clone_ptr(LDKTxRemoveOutput *NONNULL_PTR arg);
7857         public static native long TxRemoveOutput_clone_ptr(long arg);
7858         // struct LDKTxRemoveOutput TxRemoveOutput_clone(const struct LDKTxRemoveOutput *NONNULL_PTR orig);
7859         public static native long TxRemoveOutput_clone(long orig);
7860         // bool TxRemoveOutput_eq(const struct LDKTxRemoveOutput *NONNULL_PTR a, const struct LDKTxRemoveOutput *NONNULL_PTR b);
7861         public static native boolean TxRemoveOutput_eq(long a, long b);
7862         // void TxComplete_free(struct LDKTxComplete this_obj);
7863         public static native void TxComplete_free(long this_obj);
7864         // const uint8_t (*TxComplete_get_channel_id(const struct LDKTxComplete *NONNULL_PTR this_ptr))[32];
7865         public static native byte[] TxComplete_get_channel_id(long this_ptr);
7866         // void TxComplete_set_channel_id(struct LDKTxComplete *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7867         public static native void TxComplete_set_channel_id(long this_ptr, byte[] val);
7868         // MUST_USE_RES struct LDKTxComplete TxComplete_new(struct LDKThirtyTwoBytes channel_id_arg);
7869         public static native long TxComplete_new(byte[] channel_id_arg);
7870         // uint64_t TxComplete_clone_ptr(LDKTxComplete *NONNULL_PTR arg);
7871         public static native long TxComplete_clone_ptr(long arg);
7872         // struct LDKTxComplete TxComplete_clone(const struct LDKTxComplete *NONNULL_PTR orig);
7873         public static native long TxComplete_clone(long orig);
7874         // bool TxComplete_eq(const struct LDKTxComplete *NONNULL_PTR a, const struct LDKTxComplete *NONNULL_PTR b);
7875         public static native boolean TxComplete_eq(long a, long b);
7876         // void TxSignatures_free(struct LDKTxSignatures this_obj);
7877         public static native void TxSignatures_free(long this_obj);
7878         // const uint8_t (*TxSignatures_get_channel_id(const struct LDKTxSignatures *NONNULL_PTR this_ptr))[32];
7879         public static native byte[] TxSignatures_get_channel_id(long this_ptr);
7880         // void TxSignatures_set_channel_id(struct LDKTxSignatures *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7881         public static native void TxSignatures_set_channel_id(long this_ptr, byte[] val);
7882         // const uint8_t (*TxSignatures_get_tx_hash(const struct LDKTxSignatures *NONNULL_PTR this_ptr))[32];
7883         public static native byte[] TxSignatures_get_tx_hash(long this_ptr);
7884         // void TxSignatures_set_tx_hash(struct LDKTxSignatures *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7885         public static native void TxSignatures_set_tx_hash(long this_ptr, byte[] val);
7886         // struct LDKCVec_WitnessZ TxSignatures_get_witnesses(const struct LDKTxSignatures *NONNULL_PTR this_ptr);
7887         public static native byte[][] TxSignatures_get_witnesses(long this_ptr);
7888         // void TxSignatures_set_witnesses(struct LDKTxSignatures *NONNULL_PTR this_ptr, struct LDKCVec_WitnessZ val);
7889         public static native void TxSignatures_set_witnesses(long this_ptr, byte[][] val);
7890         // MUST_USE_RES struct LDKTxSignatures TxSignatures_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKThirtyTwoBytes tx_hash_arg, struct LDKCVec_WitnessZ witnesses_arg);
7891         public static native long TxSignatures_new(byte[] channel_id_arg, byte[] tx_hash_arg, byte[][] witnesses_arg);
7892         // uint64_t TxSignatures_clone_ptr(LDKTxSignatures *NONNULL_PTR arg);
7893         public static native long TxSignatures_clone_ptr(long arg);
7894         // struct LDKTxSignatures TxSignatures_clone(const struct LDKTxSignatures *NONNULL_PTR orig);
7895         public static native long TxSignatures_clone(long orig);
7896         // bool TxSignatures_eq(const struct LDKTxSignatures *NONNULL_PTR a, const struct LDKTxSignatures *NONNULL_PTR b);
7897         public static native boolean TxSignatures_eq(long a, long b);
7898         // void TxInitRbf_free(struct LDKTxInitRbf this_obj);
7899         public static native void TxInitRbf_free(long this_obj);
7900         // const uint8_t (*TxInitRbf_get_channel_id(const struct LDKTxInitRbf *NONNULL_PTR this_ptr))[32];
7901         public static native byte[] TxInitRbf_get_channel_id(long this_ptr);
7902         // void TxInitRbf_set_channel_id(struct LDKTxInitRbf *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7903         public static native void TxInitRbf_set_channel_id(long this_ptr, byte[] val);
7904         // uint32_t TxInitRbf_get_locktime(const struct LDKTxInitRbf *NONNULL_PTR this_ptr);
7905         public static native int TxInitRbf_get_locktime(long this_ptr);
7906         // void TxInitRbf_set_locktime(struct LDKTxInitRbf *NONNULL_PTR this_ptr, uint32_t val);
7907         public static native void TxInitRbf_set_locktime(long this_ptr, int val);
7908         // uint32_t TxInitRbf_get_feerate_sat_per_1000_weight(const struct LDKTxInitRbf *NONNULL_PTR this_ptr);
7909         public static native int TxInitRbf_get_feerate_sat_per_1000_weight(long this_ptr);
7910         // void TxInitRbf_set_feerate_sat_per_1000_weight(struct LDKTxInitRbf *NONNULL_PTR this_ptr, uint32_t val);
7911         public static native void TxInitRbf_set_feerate_sat_per_1000_weight(long this_ptr, int val);
7912         // struct LDKCOption_i64Z TxInitRbf_get_funding_output_contribution(const struct LDKTxInitRbf *NONNULL_PTR this_ptr);
7913         public static native long TxInitRbf_get_funding_output_contribution(long this_ptr);
7914         // void TxInitRbf_set_funding_output_contribution(struct LDKTxInitRbf *NONNULL_PTR this_ptr, struct LDKCOption_i64Z val);
7915         public static native void TxInitRbf_set_funding_output_contribution(long this_ptr, long val);
7916         // MUST_USE_RES struct LDKTxInitRbf TxInitRbf_new(struct LDKThirtyTwoBytes channel_id_arg, uint32_t locktime_arg, uint32_t feerate_sat_per_1000_weight_arg, struct LDKCOption_i64Z funding_output_contribution_arg);
7917         public static native long TxInitRbf_new(byte[] channel_id_arg, int locktime_arg, int feerate_sat_per_1000_weight_arg, long funding_output_contribution_arg);
7918         // uint64_t TxInitRbf_clone_ptr(LDKTxInitRbf *NONNULL_PTR arg);
7919         public static native long TxInitRbf_clone_ptr(long arg);
7920         // struct LDKTxInitRbf TxInitRbf_clone(const struct LDKTxInitRbf *NONNULL_PTR orig);
7921         public static native long TxInitRbf_clone(long orig);
7922         // bool TxInitRbf_eq(const struct LDKTxInitRbf *NONNULL_PTR a, const struct LDKTxInitRbf *NONNULL_PTR b);
7923         public static native boolean TxInitRbf_eq(long a, long b);
7924         // void TxAckRbf_free(struct LDKTxAckRbf this_obj);
7925         public static native void TxAckRbf_free(long this_obj);
7926         // const uint8_t (*TxAckRbf_get_channel_id(const struct LDKTxAckRbf *NONNULL_PTR this_ptr))[32];
7927         public static native byte[] TxAckRbf_get_channel_id(long this_ptr);
7928         // void TxAckRbf_set_channel_id(struct LDKTxAckRbf *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7929         public static native void TxAckRbf_set_channel_id(long this_ptr, byte[] val);
7930         // struct LDKCOption_i64Z TxAckRbf_get_funding_output_contribution(const struct LDKTxAckRbf *NONNULL_PTR this_ptr);
7931         public static native long TxAckRbf_get_funding_output_contribution(long this_ptr);
7932         // void TxAckRbf_set_funding_output_contribution(struct LDKTxAckRbf *NONNULL_PTR this_ptr, struct LDKCOption_i64Z val);
7933         public static native void TxAckRbf_set_funding_output_contribution(long this_ptr, long val);
7934         // MUST_USE_RES struct LDKTxAckRbf TxAckRbf_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKCOption_i64Z funding_output_contribution_arg);
7935         public static native long TxAckRbf_new(byte[] channel_id_arg, long funding_output_contribution_arg);
7936         // uint64_t TxAckRbf_clone_ptr(LDKTxAckRbf *NONNULL_PTR arg);
7937         public static native long TxAckRbf_clone_ptr(long arg);
7938         // struct LDKTxAckRbf TxAckRbf_clone(const struct LDKTxAckRbf *NONNULL_PTR orig);
7939         public static native long TxAckRbf_clone(long orig);
7940         // bool TxAckRbf_eq(const struct LDKTxAckRbf *NONNULL_PTR a, const struct LDKTxAckRbf *NONNULL_PTR b);
7941         public static native boolean TxAckRbf_eq(long a, long b);
7942         // void TxAbort_free(struct LDKTxAbort this_obj);
7943         public static native void TxAbort_free(long this_obj);
7944         // const uint8_t (*TxAbort_get_channel_id(const struct LDKTxAbort *NONNULL_PTR this_ptr))[32];
7945         public static native byte[] TxAbort_get_channel_id(long this_ptr);
7946         // void TxAbort_set_channel_id(struct LDKTxAbort *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7947         public static native void TxAbort_set_channel_id(long this_ptr, byte[] val);
7948         // struct LDKCVec_u8Z TxAbort_get_data(const struct LDKTxAbort *NONNULL_PTR this_ptr);
7949         public static native byte[] TxAbort_get_data(long this_ptr);
7950         // void TxAbort_set_data(struct LDKTxAbort *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
7951         public static native void TxAbort_set_data(long this_ptr, byte[] val);
7952         // MUST_USE_RES struct LDKTxAbort TxAbort_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKCVec_u8Z data_arg);
7953         public static native long TxAbort_new(byte[] channel_id_arg, byte[] data_arg);
7954         // uint64_t TxAbort_clone_ptr(LDKTxAbort *NONNULL_PTR arg);
7955         public static native long TxAbort_clone_ptr(long arg);
7956         // struct LDKTxAbort TxAbort_clone(const struct LDKTxAbort *NONNULL_PTR orig);
7957         public static native long TxAbort_clone(long orig);
7958         // bool TxAbort_eq(const struct LDKTxAbort *NONNULL_PTR a, const struct LDKTxAbort *NONNULL_PTR b);
7959         public static native boolean TxAbort_eq(long a, long b);
7960         // void Shutdown_free(struct LDKShutdown this_obj);
7961         public static native void Shutdown_free(long this_obj);
7962         // const uint8_t (*Shutdown_get_channel_id(const struct LDKShutdown *NONNULL_PTR this_ptr))[32];
7963         public static native byte[] Shutdown_get_channel_id(long this_ptr);
7964         // void Shutdown_set_channel_id(struct LDKShutdown *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
7965         public static native void Shutdown_set_channel_id(long this_ptr, byte[] val);
7966         // struct LDKu8slice Shutdown_get_scriptpubkey(const struct LDKShutdown *NONNULL_PTR this_ptr);
7967         public static native byte[] Shutdown_get_scriptpubkey(long this_ptr);
7968         // void Shutdown_set_scriptpubkey(struct LDKShutdown *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
7969         public static native void Shutdown_set_scriptpubkey(long this_ptr, byte[] val);
7970         // MUST_USE_RES struct LDKShutdown Shutdown_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKCVec_u8Z scriptpubkey_arg);
7971         public static native long Shutdown_new(byte[] channel_id_arg, byte[] scriptpubkey_arg);
7972         // uint64_t Shutdown_clone_ptr(LDKShutdown *NONNULL_PTR arg);
7973         public static native long Shutdown_clone_ptr(long arg);
7974         // struct LDKShutdown Shutdown_clone(const struct LDKShutdown *NONNULL_PTR orig);
7975         public static native long Shutdown_clone(long orig);
7976         // bool Shutdown_eq(const struct LDKShutdown *NONNULL_PTR a, const struct LDKShutdown *NONNULL_PTR b);
7977         public static native boolean Shutdown_eq(long a, long b);
7978         // void ClosingSignedFeeRange_free(struct LDKClosingSignedFeeRange this_obj);
7979         public static native void ClosingSignedFeeRange_free(long this_obj);
7980         // uint64_t ClosingSignedFeeRange_get_min_fee_satoshis(const struct LDKClosingSignedFeeRange *NONNULL_PTR this_ptr);
7981         public static native long ClosingSignedFeeRange_get_min_fee_satoshis(long this_ptr);
7982         // void ClosingSignedFeeRange_set_min_fee_satoshis(struct LDKClosingSignedFeeRange *NONNULL_PTR this_ptr, uint64_t val);
7983         public static native void ClosingSignedFeeRange_set_min_fee_satoshis(long this_ptr, long val);
7984         // uint64_t ClosingSignedFeeRange_get_max_fee_satoshis(const struct LDKClosingSignedFeeRange *NONNULL_PTR this_ptr);
7985         public static native long ClosingSignedFeeRange_get_max_fee_satoshis(long this_ptr);
7986         // void ClosingSignedFeeRange_set_max_fee_satoshis(struct LDKClosingSignedFeeRange *NONNULL_PTR this_ptr, uint64_t val);
7987         public static native void ClosingSignedFeeRange_set_max_fee_satoshis(long this_ptr, long val);
7988         // MUST_USE_RES struct LDKClosingSignedFeeRange ClosingSignedFeeRange_new(uint64_t min_fee_satoshis_arg, uint64_t max_fee_satoshis_arg);
7989         public static native long ClosingSignedFeeRange_new(long min_fee_satoshis_arg, long max_fee_satoshis_arg);
7990         // uint64_t ClosingSignedFeeRange_clone_ptr(LDKClosingSignedFeeRange *NONNULL_PTR arg);
7991         public static native long ClosingSignedFeeRange_clone_ptr(long arg);
7992         // struct LDKClosingSignedFeeRange ClosingSignedFeeRange_clone(const struct LDKClosingSignedFeeRange *NONNULL_PTR orig);
7993         public static native long ClosingSignedFeeRange_clone(long orig);
7994         // bool ClosingSignedFeeRange_eq(const struct LDKClosingSignedFeeRange *NONNULL_PTR a, const struct LDKClosingSignedFeeRange *NONNULL_PTR b);
7995         public static native boolean ClosingSignedFeeRange_eq(long a, long b);
7996         // void ClosingSigned_free(struct LDKClosingSigned this_obj);
7997         public static native void ClosingSigned_free(long this_obj);
7998         // const uint8_t (*ClosingSigned_get_channel_id(const struct LDKClosingSigned *NONNULL_PTR this_ptr))[32];
7999         public static native byte[] ClosingSigned_get_channel_id(long this_ptr);
8000         // void ClosingSigned_set_channel_id(struct LDKClosingSigned *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8001         public static native void ClosingSigned_set_channel_id(long this_ptr, byte[] val);
8002         // uint64_t ClosingSigned_get_fee_satoshis(const struct LDKClosingSigned *NONNULL_PTR this_ptr);
8003         public static native long ClosingSigned_get_fee_satoshis(long this_ptr);
8004         // void ClosingSigned_set_fee_satoshis(struct LDKClosingSigned *NONNULL_PTR this_ptr, uint64_t val);
8005         public static native void ClosingSigned_set_fee_satoshis(long this_ptr, long val);
8006         // struct LDKECDSASignature ClosingSigned_get_signature(const struct LDKClosingSigned *NONNULL_PTR this_ptr);
8007         public static native byte[] ClosingSigned_get_signature(long this_ptr);
8008         // void ClosingSigned_set_signature(struct LDKClosingSigned *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8009         public static native void ClosingSigned_set_signature(long this_ptr, byte[] val);
8010         // struct LDKClosingSignedFeeRange ClosingSigned_get_fee_range(const struct LDKClosingSigned *NONNULL_PTR this_ptr);
8011         public static native long ClosingSigned_get_fee_range(long this_ptr);
8012         // void ClosingSigned_set_fee_range(struct LDKClosingSigned *NONNULL_PTR this_ptr, struct LDKClosingSignedFeeRange val);
8013         public static native void ClosingSigned_set_fee_range(long this_ptr, long val);
8014         // MUST_USE_RES struct LDKClosingSigned ClosingSigned_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t fee_satoshis_arg, struct LDKECDSASignature signature_arg, struct LDKClosingSignedFeeRange fee_range_arg);
8015         public static native long ClosingSigned_new(byte[] channel_id_arg, long fee_satoshis_arg, byte[] signature_arg, long fee_range_arg);
8016         // uint64_t ClosingSigned_clone_ptr(LDKClosingSigned *NONNULL_PTR arg);
8017         public static native long ClosingSigned_clone_ptr(long arg);
8018         // struct LDKClosingSigned ClosingSigned_clone(const struct LDKClosingSigned *NONNULL_PTR orig);
8019         public static native long ClosingSigned_clone(long orig);
8020         // bool ClosingSigned_eq(const struct LDKClosingSigned *NONNULL_PTR a, const struct LDKClosingSigned *NONNULL_PTR b);
8021         public static native boolean ClosingSigned_eq(long a, long b);
8022         // void UpdateAddHTLC_free(struct LDKUpdateAddHTLC this_obj);
8023         public static native void UpdateAddHTLC_free(long this_obj);
8024         // const uint8_t (*UpdateAddHTLC_get_channel_id(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr))[32];
8025         public static native byte[] UpdateAddHTLC_get_channel_id(long this_ptr);
8026         // void UpdateAddHTLC_set_channel_id(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8027         public static native void UpdateAddHTLC_set_channel_id(long this_ptr, byte[] val);
8028         // uint64_t UpdateAddHTLC_get_htlc_id(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr);
8029         public static native long UpdateAddHTLC_get_htlc_id(long this_ptr);
8030         // void UpdateAddHTLC_set_htlc_id(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, uint64_t val);
8031         public static native void UpdateAddHTLC_set_htlc_id(long this_ptr, long val);
8032         // uint64_t UpdateAddHTLC_get_amount_msat(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr);
8033         public static native long UpdateAddHTLC_get_amount_msat(long this_ptr);
8034         // void UpdateAddHTLC_set_amount_msat(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, uint64_t val);
8035         public static native void UpdateAddHTLC_set_amount_msat(long this_ptr, long val);
8036         // const uint8_t (*UpdateAddHTLC_get_payment_hash(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr))[32];
8037         public static native byte[] UpdateAddHTLC_get_payment_hash(long this_ptr);
8038         // void UpdateAddHTLC_set_payment_hash(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8039         public static native void UpdateAddHTLC_set_payment_hash(long this_ptr, byte[] val);
8040         // uint32_t UpdateAddHTLC_get_cltv_expiry(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr);
8041         public static native int UpdateAddHTLC_get_cltv_expiry(long this_ptr);
8042         // void UpdateAddHTLC_set_cltv_expiry(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, uint32_t val);
8043         public static native void UpdateAddHTLC_set_cltv_expiry(long this_ptr, int val);
8044         // struct LDKCOption_u64Z UpdateAddHTLC_get_skimmed_fee_msat(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr);
8045         public static native long UpdateAddHTLC_get_skimmed_fee_msat(long this_ptr);
8046         // void UpdateAddHTLC_set_skimmed_fee_msat(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
8047         public static native void UpdateAddHTLC_set_skimmed_fee_msat(long this_ptr, long val);
8048         // uint64_t UpdateAddHTLC_clone_ptr(LDKUpdateAddHTLC *NONNULL_PTR arg);
8049         public static native long UpdateAddHTLC_clone_ptr(long arg);
8050         // struct LDKUpdateAddHTLC UpdateAddHTLC_clone(const struct LDKUpdateAddHTLC *NONNULL_PTR orig);
8051         public static native long UpdateAddHTLC_clone(long orig);
8052         // bool UpdateAddHTLC_eq(const struct LDKUpdateAddHTLC *NONNULL_PTR a, const struct LDKUpdateAddHTLC *NONNULL_PTR b);
8053         public static native boolean UpdateAddHTLC_eq(long a, long b);
8054         // void OnionMessage_free(struct LDKOnionMessage this_obj);
8055         public static native void OnionMessage_free(long this_obj);
8056         // struct LDKPublicKey OnionMessage_get_blinding_point(const struct LDKOnionMessage *NONNULL_PTR this_ptr);
8057         public static native byte[] OnionMessage_get_blinding_point(long this_ptr);
8058         // void OnionMessage_set_blinding_point(struct LDKOnionMessage *NONNULL_PTR this_ptr, struct LDKPublicKey val);
8059         public static native void OnionMessage_set_blinding_point(long this_ptr, byte[] val);
8060         // struct LDKPacket OnionMessage_get_onion_routing_packet(const struct LDKOnionMessage *NONNULL_PTR this_ptr);
8061         public static native long OnionMessage_get_onion_routing_packet(long this_ptr);
8062         // void OnionMessage_set_onion_routing_packet(struct LDKOnionMessage *NONNULL_PTR this_ptr, struct LDKPacket val);
8063         public static native void OnionMessage_set_onion_routing_packet(long this_ptr, long val);
8064         // MUST_USE_RES struct LDKOnionMessage OnionMessage_new(struct LDKPublicKey blinding_point_arg, struct LDKPacket onion_routing_packet_arg);
8065         public static native long OnionMessage_new(byte[] blinding_point_arg, long onion_routing_packet_arg);
8066         // uint64_t OnionMessage_clone_ptr(LDKOnionMessage *NONNULL_PTR arg);
8067         public static native long OnionMessage_clone_ptr(long arg);
8068         // struct LDKOnionMessage OnionMessage_clone(const struct LDKOnionMessage *NONNULL_PTR orig);
8069         public static native long OnionMessage_clone(long orig);
8070         // bool OnionMessage_eq(const struct LDKOnionMessage *NONNULL_PTR a, const struct LDKOnionMessage *NONNULL_PTR b);
8071         public static native boolean OnionMessage_eq(long a, long b);
8072         // void UpdateFulfillHTLC_free(struct LDKUpdateFulfillHTLC this_obj);
8073         public static native void UpdateFulfillHTLC_free(long this_obj);
8074         // const uint8_t (*UpdateFulfillHTLC_get_channel_id(const struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr))[32];
8075         public static native byte[] UpdateFulfillHTLC_get_channel_id(long this_ptr);
8076         // void UpdateFulfillHTLC_set_channel_id(struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8077         public static native void UpdateFulfillHTLC_set_channel_id(long this_ptr, byte[] val);
8078         // uint64_t UpdateFulfillHTLC_get_htlc_id(const struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr);
8079         public static native long UpdateFulfillHTLC_get_htlc_id(long this_ptr);
8080         // void UpdateFulfillHTLC_set_htlc_id(struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr, uint64_t val);
8081         public static native void UpdateFulfillHTLC_set_htlc_id(long this_ptr, long val);
8082         // const uint8_t (*UpdateFulfillHTLC_get_payment_preimage(const struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr))[32];
8083         public static native byte[] UpdateFulfillHTLC_get_payment_preimage(long this_ptr);
8084         // void UpdateFulfillHTLC_set_payment_preimage(struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8085         public static native void UpdateFulfillHTLC_set_payment_preimage(long this_ptr, byte[] val);
8086         // MUST_USE_RES struct LDKUpdateFulfillHTLC UpdateFulfillHTLC_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t htlc_id_arg, struct LDKThirtyTwoBytes payment_preimage_arg);
8087         public static native long UpdateFulfillHTLC_new(byte[] channel_id_arg, long htlc_id_arg, byte[] payment_preimage_arg);
8088         // uint64_t UpdateFulfillHTLC_clone_ptr(LDKUpdateFulfillHTLC *NONNULL_PTR arg);
8089         public static native long UpdateFulfillHTLC_clone_ptr(long arg);
8090         // struct LDKUpdateFulfillHTLC UpdateFulfillHTLC_clone(const struct LDKUpdateFulfillHTLC *NONNULL_PTR orig);
8091         public static native long UpdateFulfillHTLC_clone(long orig);
8092         // bool UpdateFulfillHTLC_eq(const struct LDKUpdateFulfillHTLC *NONNULL_PTR a, const struct LDKUpdateFulfillHTLC *NONNULL_PTR b);
8093         public static native boolean UpdateFulfillHTLC_eq(long a, long b);
8094         // void UpdateFailHTLC_free(struct LDKUpdateFailHTLC this_obj);
8095         public static native void UpdateFailHTLC_free(long this_obj);
8096         // const uint8_t (*UpdateFailHTLC_get_channel_id(const struct LDKUpdateFailHTLC *NONNULL_PTR this_ptr))[32];
8097         public static native byte[] UpdateFailHTLC_get_channel_id(long this_ptr);
8098         // void UpdateFailHTLC_set_channel_id(struct LDKUpdateFailHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8099         public static native void UpdateFailHTLC_set_channel_id(long this_ptr, byte[] val);
8100         // uint64_t UpdateFailHTLC_get_htlc_id(const struct LDKUpdateFailHTLC *NONNULL_PTR this_ptr);
8101         public static native long UpdateFailHTLC_get_htlc_id(long this_ptr);
8102         // void UpdateFailHTLC_set_htlc_id(struct LDKUpdateFailHTLC *NONNULL_PTR this_ptr, uint64_t val);
8103         public static native void UpdateFailHTLC_set_htlc_id(long this_ptr, long val);
8104         // uint64_t UpdateFailHTLC_clone_ptr(LDKUpdateFailHTLC *NONNULL_PTR arg);
8105         public static native long UpdateFailHTLC_clone_ptr(long arg);
8106         // struct LDKUpdateFailHTLC UpdateFailHTLC_clone(const struct LDKUpdateFailHTLC *NONNULL_PTR orig);
8107         public static native long UpdateFailHTLC_clone(long orig);
8108         // bool UpdateFailHTLC_eq(const struct LDKUpdateFailHTLC *NONNULL_PTR a, const struct LDKUpdateFailHTLC *NONNULL_PTR b);
8109         public static native boolean UpdateFailHTLC_eq(long a, long b);
8110         // void UpdateFailMalformedHTLC_free(struct LDKUpdateFailMalformedHTLC this_obj);
8111         public static native void UpdateFailMalformedHTLC_free(long this_obj);
8112         // const uint8_t (*UpdateFailMalformedHTLC_get_channel_id(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr))[32];
8113         public static native byte[] UpdateFailMalformedHTLC_get_channel_id(long this_ptr);
8114         // void UpdateFailMalformedHTLC_set_channel_id(struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8115         public static native void UpdateFailMalformedHTLC_set_channel_id(long this_ptr, byte[] val);
8116         // uint64_t UpdateFailMalformedHTLC_get_htlc_id(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr);
8117         public static native long UpdateFailMalformedHTLC_get_htlc_id(long this_ptr);
8118         // void UpdateFailMalformedHTLC_set_htlc_id(struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr, uint64_t val);
8119         public static native void UpdateFailMalformedHTLC_set_htlc_id(long this_ptr, long val);
8120         // uint16_t UpdateFailMalformedHTLC_get_failure_code(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr);
8121         public static native short UpdateFailMalformedHTLC_get_failure_code(long this_ptr);
8122         // void UpdateFailMalformedHTLC_set_failure_code(struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr, uint16_t val);
8123         public static native void UpdateFailMalformedHTLC_set_failure_code(long this_ptr, short val);
8124         // uint64_t UpdateFailMalformedHTLC_clone_ptr(LDKUpdateFailMalformedHTLC *NONNULL_PTR arg);
8125         public static native long UpdateFailMalformedHTLC_clone_ptr(long arg);
8126         // struct LDKUpdateFailMalformedHTLC UpdateFailMalformedHTLC_clone(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR orig);
8127         public static native long UpdateFailMalformedHTLC_clone(long orig);
8128         // bool UpdateFailMalformedHTLC_eq(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR a, const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR b);
8129         public static native boolean UpdateFailMalformedHTLC_eq(long a, long b);
8130         // void CommitmentSigned_free(struct LDKCommitmentSigned this_obj);
8131         public static native void CommitmentSigned_free(long this_obj);
8132         // const uint8_t (*CommitmentSigned_get_channel_id(const struct LDKCommitmentSigned *NONNULL_PTR this_ptr))[32];
8133         public static native byte[] CommitmentSigned_get_channel_id(long this_ptr);
8134         // void CommitmentSigned_set_channel_id(struct LDKCommitmentSigned *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8135         public static native void CommitmentSigned_set_channel_id(long this_ptr, byte[] val);
8136         // struct LDKECDSASignature CommitmentSigned_get_signature(const struct LDKCommitmentSigned *NONNULL_PTR this_ptr);
8137         public static native byte[] CommitmentSigned_get_signature(long this_ptr);
8138         // void CommitmentSigned_set_signature(struct LDKCommitmentSigned *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8139         public static native void CommitmentSigned_set_signature(long this_ptr, byte[] val);
8140         // struct LDKCVec_ECDSASignatureZ CommitmentSigned_get_htlc_signatures(const struct LDKCommitmentSigned *NONNULL_PTR this_ptr);
8141         public static native byte[][] CommitmentSigned_get_htlc_signatures(long this_ptr);
8142         // void CommitmentSigned_set_htlc_signatures(struct LDKCommitmentSigned *NONNULL_PTR this_ptr, struct LDKCVec_ECDSASignatureZ val);
8143         public static native void CommitmentSigned_set_htlc_signatures(long this_ptr, byte[][] val);
8144         // MUST_USE_RES struct LDKCommitmentSigned CommitmentSigned_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKECDSASignature signature_arg, struct LDKCVec_ECDSASignatureZ htlc_signatures_arg);
8145         public static native long CommitmentSigned_new(byte[] channel_id_arg, byte[] signature_arg, byte[][] htlc_signatures_arg);
8146         // uint64_t CommitmentSigned_clone_ptr(LDKCommitmentSigned *NONNULL_PTR arg);
8147         public static native long CommitmentSigned_clone_ptr(long arg);
8148         // struct LDKCommitmentSigned CommitmentSigned_clone(const struct LDKCommitmentSigned *NONNULL_PTR orig);
8149         public static native long CommitmentSigned_clone(long orig);
8150         // bool CommitmentSigned_eq(const struct LDKCommitmentSigned *NONNULL_PTR a, const struct LDKCommitmentSigned *NONNULL_PTR b);
8151         public static native boolean CommitmentSigned_eq(long a, long b);
8152         // void RevokeAndACK_free(struct LDKRevokeAndACK this_obj);
8153         public static native void RevokeAndACK_free(long this_obj);
8154         // const uint8_t (*RevokeAndACK_get_channel_id(const struct LDKRevokeAndACK *NONNULL_PTR this_ptr))[32];
8155         public static native byte[] RevokeAndACK_get_channel_id(long this_ptr);
8156         // void RevokeAndACK_set_channel_id(struct LDKRevokeAndACK *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8157         public static native void RevokeAndACK_set_channel_id(long this_ptr, byte[] val);
8158         // const uint8_t (*RevokeAndACK_get_per_commitment_secret(const struct LDKRevokeAndACK *NONNULL_PTR this_ptr))[32];
8159         public static native byte[] RevokeAndACK_get_per_commitment_secret(long this_ptr);
8160         // void RevokeAndACK_set_per_commitment_secret(struct LDKRevokeAndACK *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8161         public static native void RevokeAndACK_set_per_commitment_secret(long this_ptr, byte[] val);
8162         // struct LDKPublicKey RevokeAndACK_get_next_per_commitment_point(const struct LDKRevokeAndACK *NONNULL_PTR this_ptr);
8163         public static native byte[] RevokeAndACK_get_next_per_commitment_point(long this_ptr);
8164         // void RevokeAndACK_set_next_per_commitment_point(struct LDKRevokeAndACK *NONNULL_PTR this_ptr, struct LDKPublicKey val);
8165         public static native void RevokeAndACK_set_next_per_commitment_point(long this_ptr, byte[] val);
8166         // MUST_USE_RES struct LDKRevokeAndACK RevokeAndACK_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKThirtyTwoBytes per_commitment_secret_arg, struct LDKPublicKey next_per_commitment_point_arg);
8167         public static native long RevokeAndACK_new(byte[] channel_id_arg, byte[] per_commitment_secret_arg, byte[] next_per_commitment_point_arg);
8168         // uint64_t RevokeAndACK_clone_ptr(LDKRevokeAndACK *NONNULL_PTR arg);
8169         public static native long RevokeAndACK_clone_ptr(long arg);
8170         // struct LDKRevokeAndACK RevokeAndACK_clone(const struct LDKRevokeAndACK *NONNULL_PTR orig);
8171         public static native long RevokeAndACK_clone(long orig);
8172         // bool RevokeAndACK_eq(const struct LDKRevokeAndACK *NONNULL_PTR a, const struct LDKRevokeAndACK *NONNULL_PTR b);
8173         public static native boolean RevokeAndACK_eq(long a, long b);
8174         // void UpdateFee_free(struct LDKUpdateFee this_obj);
8175         public static native void UpdateFee_free(long this_obj);
8176         // const uint8_t (*UpdateFee_get_channel_id(const struct LDKUpdateFee *NONNULL_PTR this_ptr))[32];
8177         public static native byte[] UpdateFee_get_channel_id(long this_ptr);
8178         // void UpdateFee_set_channel_id(struct LDKUpdateFee *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8179         public static native void UpdateFee_set_channel_id(long this_ptr, byte[] val);
8180         // uint32_t UpdateFee_get_feerate_per_kw(const struct LDKUpdateFee *NONNULL_PTR this_ptr);
8181         public static native int UpdateFee_get_feerate_per_kw(long this_ptr);
8182         // void UpdateFee_set_feerate_per_kw(struct LDKUpdateFee *NONNULL_PTR this_ptr, uint32_t val);
8183         public static native void UpdateFee_set_feerate_per_kw(long this_ptr, int val);
8184         // MUST_USE_RES struct LDKUpdateFee UpdateFee_new(struct LDKThirtyTwoBytes channel_id_arg, uint32_t feerate_per_kw_arg);
8185         public static native long UpdateFee_new(byte[] channel_id_arg, int feerate_per_kw_arg);
8186         // uint64_t UpdateFee_clone_ptr(LDKUpdateFee *NONNULL_PTR arg);
8187         public static native long UpdateFee_clone_ptr(long arg);
8188         // struct LDKUpdateFee UpdateFee_clone(const struct LDKUpdateFee *NONNULL_PTR orig);
8189         public static native long UpdateFee_clone(long orig);
8190         // bool UpdateFee_eq(const struct LDKUpdateFee *NONNULL_PTR a, const struct LDKUpdateFee *NONNULL_PTR b);
8191         public static native boolean UpdateFee_eq(long a, long b);
8192         // void ChannelReestablish_free(struct LDKChannelReestablish this_obj);
8193         public static native void ChannelReestablish_free(long this_obj);
8194         // const uint8_t (*ChannelReestablish_get_channel_id(const struct LDKChannelReestablish *NONNULL_PTR this_ptr))[32];
8195         public static native byte[] ChannelReestablish_get_channel_id(long this_ptr);
8196         // void ChannelReestablish_set_channel_id(struct LDKChannelReestablish *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8197         public static native void ChannelReestablish_set_channel_id(long this_ptr, byte[] val);
8198         // uint64_t ChannelReestablish_get_next_local_commitment_number(const struct LDKChannelReestablish *NONNULL_PTR this_ptr);
8199         public static native long ChannelReestablish_get_next_local_commitment_number(long this_ptr);
8200         // void ChannelReestablish_set_next_local_commitment_number(struct LDKChannelReestablish *NONNULL_PTR this_ptr, uint64_t val);
8201         public static native void ChannelReestablish_set_next_local_commitment_number(long this_ptr, long val);
8202         // uint64_t ChannelReestablish_get_next_remote_commitment_number(const struct LDKChannelReestablish *NONNULL_PTR this_ptr);
8203         public static native long ChannelReestablish_get_next_remote_commitment_number(long this_ptr);
8204         // void ChannelReestablish_set_next_remote_commitment_number(struct LDKChannelReestablish *NONNULL_PTR this_ptr, uint64_t val);
8205         public static native void ChannelReestablish_set_next_remote_commitment_number(long this_ptr, long val);
8206         // const uint8_t (*ChannelReestablish_get_your_last_per_commitment_secret(const struct LDKChannelReestablish *NONNULL_PTR this_ptr))[32];
8207         public static native byte[] ChannelReestablish_get_your_last_per_commitment_secret(long this_ptr);
8208         // void ChannelReestablish_set_your_last_per_commitment_secret(struct LDKChannelReestablish *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8209         public static native void ChannelReestablish_set_your_last_per_commitment_secret(long this_ptr, byte[] val);
8210         // struct LDKPublicKey ChannelReestablish_get_my_current_per_commitment_point(const struct LDKChannelReestablish *NONNULL_PTR this_ptr);
8211         public static native byte[] ChannelReestablish_get_my_current_per_commitment_point(long this_ptr);
8212         // void ChannelReestablish_set_my_current_per_commitment_point(struct LDKChannelReestablish *NONNULL_PTR this_ptr, struct LDKPublicKey val);
8213         public static native void ChannelReestablish_set_my_current_per_commitment_point(long this_ptr, byte[] val);
8214         // struct LDKCOption_ThirtyTwoBytesZ ChannelReestablish_get_next_funding_txid(const struct LDKChannelReestablish *NONNULL_PTR this_ptr);
8215         public static native long ChannelReestablish_get_next_funding_txid(long this_ptr);
8216         // void ChannelReestablish_set_next_funding_txid(struct LDKChannelReestablish *NONNULL_PTR this_ptr, struct LDKCOption_ThirtyTwoBytesZ val);
8217         public static native void ChannelReestablish_set_next_funding_txid(long this_ptr, long val);
8218         // MUST_USE_RES struct LDKChannelReestablish ChannelReestablish_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t next_local_commitment_number_arg, uint64_t next_remote_commitment_number_arg, struct LDKThirtyTwoBytes your_last_per_commitment_secret_arg, struct LDKPublicKey my_current_per_commitment_point_arg, struct LDKCOption_ThirtyTwoBytesZ next_funding_txid_arg);
8219         public static native long ChannelReestablish_new(byte[] channel_id_arg, long next_local_commitment_number_arg, long next_remote_commitment_number_arg, byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg, long next_funding_txid_arg);
8220         // uint64_t ChannelReestablish_clone_ptr(LDKChannelReestablish *NONNULL_PTR arg);
8221         public static native long ChannelReestablish_clone_ptr(long arg);
8222         // struct LDKChannelReestablish ChannelReestablish_clone(const struct LDKChannelReestablish *NONNULL_PTR orig);
8223         public static native long ChannelReestablish_clone(long orig);
8224         // bool ChannelReestablish_eq(const struct LDKChannelReestablish *NONNULL_PTR a, const struct LDKChannelReestablish *NONNULL_PTR b);
8225         public static native boolean ChannelReestablish_eq(long a, long b);
8226         // void AnnouncementSignatures_free(struct LDKAnnouncementSignatures this_obj);
8227         public static native void AnnouncementSignatures_free(long this_obj);
8228         // const uint8_t (*AnnouncementSignatures_get_channel_id(const struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr))[32];
8229         public static native byte[] AnnouncementSignatures_get_channel_id(long this_ptr);
8230         // void AnnouncementSignatures_set_channel_id(struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8231         public static native void AnnouncementSignatures_set_channel_id(long this_ptr, byte[] val);
8232         // uint64_t AnnouncementSignatures_get_short_channel_id(const struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr);
8233         public static native long AnnouncementSignatures_get_short_channel_id(long this_ptr);
8234         // void AnnouncementSignatures_set_short_channel_id(struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr, uint64_t val);
8235         public static native void AnnouncementSignatures_set_short_channel_id(long this_ptr, long val);
8236         // struct LDKECDSASignature AnnouncementSignatures_get_node_signature(const struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr);
8237         public static native byte[] AnnouncementSignatures_get_node_signature(long this_ptr);
8238         // void AnnouncementSignatures_set_node_signature(struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8239         public static native void AnnouncementSignatures_set_node_signature(long this_ptr, byte[] val);
8240         // struct LDKECDSASignature AnnouncementSignatures_get_bitcoin_signature(const struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr);
8241         public static native byte[] AnnouncementSignatures_get_bitcoin_signature(long this_ptr);
8242         // void AnnouncementSignatures_set_bitcoin_signature(struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8243         public static native void AnnouncementSignatures_set_bitcoin_signature(long this_ptr, byte[] val);
8244         // MUST_USE_RES struct LDKAnnouncementSignatures AnnouncementSignatures_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t short_channel_id_arg, struct LDKECDSASignature node_signature_arg, struct LDKECDSASignature bitcoin_signature_arg);
8245         public static native long AnnouncementSignatures_new(byte[] channel_id_arg, long short_channel_id_arg, byte[] node_signature_arg, byte[] bitcoin_signature_arg);
8246         // uint64_t AnnouncementSignatures_clone_ptr(LDKAnnouncementSignatures *NONNULL_PTR arg);
8247         public static native long AnnouncementSignatures_clone_ptr(long arg);
8248         // struct LDKAnnouncementSignatures AnnouncementSignatures_clone(const struct LDKAnnouncementSignatures *NONNULL_PTR orig);
8249         public static native long AnnouncementSignatures_clone(long orig);
8250         // bool AnnouncementSignatures_eq(const struct LDKAnnouncementSignatures *NONNULL_PTR a, const struct LDKAnnouncementSignatures *NONNULL_PTR b);
8251         public static native boolean AnnouncementSignatures_eq(long a, long b);
8252         // void SocketAddress_free(struct LDKSocketAddress this_ptr);
8253         public static native void SocketAddress_free(long this_ptr);
8254         // uint64_t SocketAddress_clone_ptr(LDKSocketAddress *NONNULL_PTR arg);
8255         public static native long SocketAddress_clone_ptr(long arg);
8256         // struct LDKSocketAddress SocketAddress_clone(const struct LDKSocketAddress *NONNULL_PTR orig);
8257         public static native long SocketAddress_clone(long orig);
8258         // struct LDKSocketAddress SocketAddress_tcp_ip_v4(struct LDKFourBytes addr, uint16_t port);
8259         public static native long SocketAddress_tcp_ip_v4(byte[] addr, short port);
8260         // struct LDKSocketAddress SocketAddress_tcp_ip_v6(struct LDKSixteenBytes addr, uint16_t port);
8261         public static native long SocketAddress_tcp_ip_v6(byte[] addr, short port);
8262         // struct LDKSocketAddress SocketAddress_onion_v2(struct LDKTwelveBytes a);
8263         public static native long SocketAddress_onion_v2(byte[] a);
8264         // struct LDKSocketAddress SocketAddress_onion_v3(struct LDKThirtyTwoBytes ed25519_pubkey, uint16_t checksum, uint8_t version, uint16_t port);
8265         public static native long SocketAddress_onion_v3(byte[] ed25519_pubkey, short checksum, byte version, short port);
8266         // struct LDKSocketAddress SocketAddress_hostname(struct LDKHostname hostname, uint16_t port);
8267         public static native long SocketAddress_hostname(long hostname, short port);
8268         // bool SocketAddress_eq(const struct LDKSocketAddress *NONNULL_PTR a, const struct LDKSocketAddress *NONNULL_PTR b);
8269         public static native boolean SocketAddress_eq(long a, long b);
8270         // struct LDKCVec_u8Z SocketAddress_write(const struct LDKSocketAddress *NONNULL_PTR obj);
8271         public static native byte[] SocketAddress_write(long obj);
8272         // struct LDKCResult_SocketAddressDecodeErrorZ SocketAddress_read(struct LDKu8slice ser);
8273         public static native long SocketAddress_read(byte[] ser);
8274         // enum LDKSocketAddressParseError SocketAddressParseError_clone(const enum LDKSocketAddressParseError *NONNULL_PTR orig);
8275         public static native SocketAddressParseError SocketAddressParseError_clone(long orig);
8276         // enum LDKSocketAddressParseError SocketAddressParseError_socket_addr_parse(void);
8277         public static native SocketAddressParseError SocketAddressParseError_socket_addr_parse();
8278         // enum LDKSocketAddressParseError SocketAddressParseError_invalid_input(void);
8279         public static native SocketAddressParseError SocketAddressParseError_invalid_input();
8280         // enum LDKSocketAddressParseError SocketAddressParseError_invalid_port(void);
8281         public static native SocketAddressParseError SocketAddressParseError_invalid_port();
8282         // enum LDKSocketAddressParseError SocketAddressParseError_invalid_onion_v3(void);
8283         public static native SocketAddressParseError SocketAddressParseError_invalid_onion_v3();
8284         // bool SocketAddressParseError_eq(const enum LDKSocketAddressParseError *NONNULL_PTR a, const enum LDKSocketAddressParseError *NONNULL_PTR b);
8285         public static native boolean SocketAddressParseError_eq(long a, long b);
8286         // struct LDKCResult_SocketAddressSocketAddressParseErrorZ parse_onion_address(struct LDKStr host, uint16_t port);
8287         public static native long parse_onion_address(String host, short port);
8288         // struct LDKCResult_SocketAddressSocketAddressParseErrorZ SocketAddress_from_str(struct LDKStr s);
8289         public static native long SocketAddress_from_str(String s);
8290         // void UnsignedGossipMessage_free(struct LDKUnsignedGossipMessage this_ptr);
8291         public static native void UnsignedGossipMessage_free(long this_ptr);
8292         // uint64_t UnsignedGossipMessage_clone_ptr(LDKUnsignedGossipMessage *NONNULL_PTR arg);
8293         public static native long UnsignedGossipMessage_clone_ptr(long arg);
8294         // struct LDKUnsignedGossipMessage UnsignedGossipMessage_clone(const struct LDKUnsignedGossipMessage *NONNULL_PTR orig);
8295         public static native long UnsignedGossipMessage_clone(long orig);
8296         // struct LDKUnsignedGossipMessage UnsignedGossipMessage_channel_announcement(struct LDKUnsignedChannelAnnouncement a);
8297         public static native long UnsignedGossipMessage_channel_announcement(long a);
8298         // struct LDKUnsignedGossipMessage UnsignedGossipMessage_channel_update(struct LDKUnsignedChannelUpdate a);
8299         public static native long UnsignedGossipMessage_channel_update(long a);
8300         // struct LDKUnsignedGossipMessage UnsignedGossipMessage_node_announcement(struct LDKUnsignedNodeAnnouncement a);
8301         public static native long UnsignedGossipMessage_node_announcement(long a);
8302         // struct LDKCVec_u8Z UnsignedGossipMessage_write(const struct LDKUnsignedGossipMessage *NONNULL_PTR obj);
8303         public static native byte[] UnsignedGossipMessage_write(long obj);
8304         // void UnsignedNodeAnnouncement_free(struct LDKUnsignedNodeAnnouncement this_obj);
8305         public static native void UnsignedNodeAnnouncement_free(long this_obj);
8306         // struct LDKNodeFeatures UnsignedNodeAnnouncement_get_features(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr);
8307         public static native long UnsignedNodeAnnouncement_get_features(long this_ptr);
8308         // void UnsignedNodeAnnouncement_set_features(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKNodeFeatures val);
8309         public static native void UnsignedNodeAnnouncement_set_features(long this_ptr, long val);
8310         // uint32_t UnsignedNodeAnnouncement_get_timestamp(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr);
8311         public static native int UnsignedNodeAnnouncement_get_timestamp(long this_ptr);
8312         // void UnsignedNodeAnnouncement_set_timestamp(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, uint32_t val);
8313         public static native void UnsignedNodeAnnouncement_set_timestamp(long this_ptr, int val);
8314         // struct LDKNodeId UnsignedNodeAnnouncement_get_node_id(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr);
8315         public static native long UnsignedNodeAnnouncement_get_node_id(long this_ptr);
8316         // void UnsignedNodeAnnouncement_set_node_id(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKNodeId val);
8317         public static native void UnsignedNodeAnnouncement_set_node_id(long this_ptr, long val);
8318         // const uint8_t (*UnsignedNodeAnnouncement_get_rgb(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr))[3];
8319         public static native byte[] UnsignedNodeAnnouncement_get_rgb(long this_ptr);
8320         // void UnsignedNodeAnnouncement_set_rgb(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKThreeBytes val);
8321         public static native void UnsignedNodeAnnouncement_set_rgb(long this_ptr, byte[] val);
8322         // struct LDKNodeAlias UnsignedNodeAnnouncement_get_alias(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr);
8323         public static native long UnsignedNodeAnnouncement_get_alias(long this_ptr);
8324         // void UnsignedNodeAnnouncement_set_alias(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKNodeAlias val);
8325         public static native void UnsignedNodeAnnouncement_set_alias(long this_ptr, long val);
8326         // struct LDKCVec_SocketAddressZ UnsignedNodeAnnouncement_get_addresses(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr);
8327         public static native long[] UnsignedNodeAnnouncement_get_addresses(long this_ptr);
8328         // void UnsignedNodeAnnouncement_set_addresses(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKCVec_SocketAddressZ val);
8329         public static native void UnsignedNodeAnnouncement_set_addresses(long this_ptr, long[] val);
8330         // uint64_t UnsignedNodeAnnouncement_clone_ptr(LDKUnsignedNodeAnnouncement *NONNULL_PTR arg);
8331         public static native long UnsignedNodeAnnouncement_clone_ptr(long arg);
8332         // struct LDKUnsignedNodeAnnouncement UnsignedNodeAnnouncement_clone(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR orig);
8333         public static native long UnsignedNodeAnnouncement_clone(long orig);
8334         // bool UnsignedNodeAnnouncement_eq(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR a, const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR b);
8335         public static native boolean UnsignedNodeAnnouncement_eq(long a, long b);
8336         // void NodeAnnouncement_free(struct LDKNodeAnnouncement this_obj);
8337         public static native void NodeAnnouncement_free(long this_obj);
8338         // struct LDKECDSASignature NodeAnnouncement_get_signature(const struct LDKNodeAnnouncement *NONNULL_PTR this_ptr);
8339         public static native byte[] NodeAnnouncement_get_signature(long this_ptr);
8340         // void NodeAnnouncement_set_signature(struct LDKNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8341         public static native void NodeAnnouncement_set_signature(long this_ptr, byte[] val);
8342         // struct LDKUnsignedNodeAnnouncement NodeAnnouncement_get_contents(const struct LDKNodeAnnouncement *NONNULL_PTR this_ptr);
8343         public static native long NodeAnnouncement_get_contents(long this_ptr);
8344         // void NodeAnnouncement_set_contents(struct LDKNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKUnsignedNodeAnnouncement val);
8345         public static native void NodeAnnouncement_set_contents(long this_ptr, long val);
8346         // MUST_USE_RES struct LDKNodeAnnouncement NodeAnnouncement_new(struct LDKECDSASignature signature_arg, struct LDKUnsignedNodeAnnouncement contents_arg);
8347         public static native long NodeAnnouncement_new(byte[] signature_arg, long contents_arg);
8348         // uint64_t NodeAnnouncement_clone_ptr(LDKNodeAnnouncement *NONNULL_PTR arg);
8349         public static native long NodeAnnouncement_clone_ptr(long arg);
8350         // struct LDKNodeAnnouncement NodeAnnouncement_clone(const struct LDKNodeAnnouncement *NONNULL_PTR orig);
8351         public static native long NodeAnnouncement_clone(long orig);
8352         // bool NodeAnnouncement_eq(const struct LDKNodeAnnouncement *NONNULL_PTR a, const struct LDKNodeAnnouncement *NONNULL_PTR b);
8353         public static native boolean NodeAnnouncement_eq(long a, long b);
8354         // void UnsignedChannelAnnouncement_free(struct LDKUnsignedChannelAnnouncement this_obj);
8355         public static native void UnsignedChannelAnnouncement_free(long this_obj);
8356         // struct LDKChannelFeatures UnsignedChannelAnnouncement_get_features(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
8357         public static native long UnsignedChannelAnnouncement_get_features(long this_ptr);
8358         // void UnsignedChannelAnnouncement_set_features(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKChannelFeatures val);
8359         public static native void UnsignedChannelAnnouncement_set_features(long this_ptr, long val);
8360         // const uint8_t (*UnsignedChannelAnnouncement_get_chain_hash(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr))[32];
8361         public static native byte[] UnsignedChannelAnnouncement_get_chain_hash(long this_ptr);
8362         // void UnsignedChannelAnnouncement_set_chain_hash(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8363         public static native void UnsignedChannelAnnouncement_set_chain_hash(long this_ptr, byte[] val);
8364         // uint64_t UnsignedChannelAnnouncement_get_short_channel_id(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
8365         public static native long UnsignedChannelAnnouncement_get_short_channel_id(long this_ptr);
8366         // void UnsignedChannelAnnouncement_set_short_channel_id(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, uint64_t val);
8367         public static native void UnsignedChannelAnnouncement_set_short_channel_id(long this_ptr, long val);
8368         // struct LDKNodeId UnsignedChannelAnnouncement_get_node_id_1(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
8369         public static native long UnsignedChannelAnnouncement_get_node_id_1(long this_ptr);
8370         // void UnsignedChannelAnnouncement_set_node_id_1(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKNodeId val);
8371         public static native void UnsignedChannelAnnouncement_set_node_id_1(long this_ptr, long val);
8372         // struct LDKNodeId UnsignedChannelAnnouncement_get_node_id_2(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
8373         public static native long UnsignedChannelAnnouncement_get_node_id_2(long this_ptr);
8374         // void UnsignedChannelAnnouncement_set_node_id_2(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKNodeId val);
8375         public static native void UnsignedChannelAnnouncement_set_node_id_2(long this_ptr, long val);
8376         // struct LDKNodeId UnsignedChannelAnnouncement_get_bitcoin_key_1(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
8377         public static native long UnsignedChannelAnnouncement_get_bitcoin_key_1(long this_ptr);
8378         // void UnsignedChannelAnnouncement_set_bitcoin_key_1(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKNodeId val);
8379         public static native void UnsignedChannelAnnouncement_set_bitcoin_key_1(long this_ptr, long val);
8380         // struct LDKNodeId UnsignedChannelAnnouncement_get_bitcoin_key_2(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
8381         public static native long UnsignedChannelAnnouncement_get_bitcoin_key_2(long this_ptr);
8382         // void UnsignedChannelAnnouncement_set_bitcoin_key_2(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKNodeId val);
8383         public static native void UnsignedChannelAnnouncement_set_bitcoin_key_2(long this_ptr, long val);
8384         // struct LDKCVec_u8Z UnsignedChannelAnnouncement_get_excess_data(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
8385         public static native byte[] UnsignedChannelAnnouncement_get_excess_data(long this_ptr);
8386         // void UnsignedChannelAnnouncement_set_excess_data(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
8387         public static native void UnsignedChannelAnnouncement_set_excess_data(long this_ptr, byte[] val);
8388         // MUST_USE_RES struct LDKUnsignedChannelAnnouncement UnsignedChannelAnnouncement_new(struct LDKChannelFeatures features_arg, struct LDKThirtyTwoBytes chain_hash_arg, uint64_t short_channel_id_arg, struct LDKNodeId node_id_1_arg, struct LDKNodeId node_id_2_arg, struct LDKNodeId bitcoin_key_1_arg, struct LDKNodeId bitcoin_key_2_arg, struct LDKCVec_u8Z excess_data_arg);
8389         public static native long UnsignedChannelAnnouncement_new(long features_arg, byte[] chain_hash_arg, long short_channel_id_arg, long node_id_1_arg, long node_id_2_arg, long bitcoin_key_1_arg, long bitcoin_key_2_arg, byte[] excess_data_arg);
8390         // uint64_t UnsignedChannelAnnouncement_clone_ptr(LDKUnsignedChannelAnnouncement *NONNULL_PTR arg);
8391         public static native long UnsignedChannelAnnouncement_clone_ptr(long arg);
8392         // struct LDKUnsignedChannelAnnouncement UnsignedChannelAnnouncement_clone(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR orig);
8393         public static native long UnsignedChannelAnnouncement_clone(long orig);
8394         // bool UnsignedChannelAnnouncement_eq(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR a, const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR b);
8395         public static native boolean UnsignedChannelAnnouncement_eq(long a, long b);
8396         // void ChannelAnnouncement_free(struct LDKChannelAnnouncement this_obj);
8397         public static native void ChannelAnnouncement_free(long this_obj);
8398         // struct LDKECDSASignature ChannelAnnouncement_get_node_signature_1(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
8399         public static native byte[] ChannelAnnouncement_get_node_signature_1(long this_ptr);
8400         // void ChannelAnnouncement_set_node_signature_1(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8401         public static native void ChannelAnnouncement_set_node_signature_1(long this_ptr, byte[] val);
8402         // struct LDKECDSASignature ChannelAnnouncement_get_node_signature_2(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
8403         public static native byte[] ChannelAnnouncement_get_node_signature_2(long this_ptr);
8404         // void ChannelAnnouncement_set_node_signature_2(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8405         public static native void ChannelAnnouncement_set_node_signature_2(long this_ptr, byte[] val);
8406         // struct LDKECDSASignature ChannelAnnouncement_get_bitcoin_signature_1(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
8407         public static native byte[] ChannelAnnouncement_get_bitcoin_signature_1(long this_ptr);
8408         // void ChannelAnnouncement_set_bitcoin_signature_1(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8409         public static native void ChannelAnnouncement_set_bitcoin_signature_1(long this_ptr, byte[] val);
8410         // struct LDKECDSASignature ChannelAnnouncement_get_bitcoin_signature_2(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
8411         public static native byte[] ChannelAnnouncement_get_bitcoin_signature_2(long this_ptr);
8412         // void ChannelAnnouncement_set_bitcoin_signature_2(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8413         public static native void ChannelAnnouncement_set_bitcoin_signature_2(long this_ptr, byte[] val);
8414         // struct LDKUnsignedChannelAnnouncement ChannelAnnouncement_get_contents(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
8415         public static native long ChannelAnnouncement_get_contents(long this_ptr);
8416         // void ChannelAnnouncement_set_contents(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKUnsignedChannelAnnouncement val);
8417         public static native void ChannelAnnouncement_set_contents(long this_ptr, long val);
8418         // MUST_USE_RES struct LDKChannelAnnouncement ChannelAnnouncement_new(struct LDKECDSASignature node_signature_1_arg, struct LDKECDSASignature node_signature_2_arg, struct LDKECDSASignature bitcoin_signature_1_arg, struct LDKECDSASignature bitcoin_signature_2_arg, struct LDKUnsignedChannelAnnouncement contents_arg);
8419         public static native long ChannelAnnouncement_new(byte[] node_signature_1_arg, byte[] node_signature_2_arg, byte[] bitcoin_signature_1_arg, byte[] bitcoin_signature_2_arg, long contents_arg);
8420         // uint64_t ChannelAnnouncement_clone_ptr(LDKChannelAnnouncement *NONNULL_PTR arg);
8421         public static native long ChannelAnnouncement_clone_ptr(long arg);
8422         // struct LDKChannelAnnouncement ChannelAnnouncement_clone(const struct LDKChannelAnnouncement *NONNULL_PTR orig);
8423         public static native long ChannelAnnouncement_clone(long orig);
8424         // bool ChannelAnnouncement_eq(const struct LDKChannelAnnouncement *NONNULL_PTR a, const struct LDKChannelAnnouncement *NONNULL_PTR b);
8425         public static native boolean ChannelAnnouncement_eq(long a, long b);
8426         // void UnsignedChannelUpdate_free(struct LDKUnsignedChannelUpdate this_obj);
8427         public static native void UnsignedChannelUpdate_free(long this_obj);
8428         // const uint8_t (*UnsignedChannelUpdate_get_chain_hash(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr))[32];
8429         public static native byte[] UnsignedChannelUpdate_get_chain_hash(long this_ptr);
8430         // void UnsignedChannelUpdate_set_chain_hash(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8431         public static native void UnsignedChannelUpdate_set_chain_hash(long this_ptr, byte[] val);
8432         // uint64_t UnsignedChannelUpdate_get_short_channel_id(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
8433         public static native long UnsignedChannelUpdate_get_short_channel_id(long this_ptr);
8434         // void UnsignedChannelUpdate_set_short_channel_id(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint64_t val);
8435         public static native void UnsignedChannelUpdate_set_short_channel_id(long this_ptr, long val);
8436         // uint32_t UnsignedChannelUpdate_get_timestamp(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
8437         public static native int UnsignedChannelUpdate_get_timestamp(long this_ptr);
8438         // void UnsignedChannelUpdate_set_timestamp(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint32_t val);
8439         public static native void UnsignedChannelUpdate_set_timestamp(long this_ptr, int val);
8440         // uint8_t UnsignedChannelUpdate_get_flags(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
8441         public static native byte UnsignedChannelUpdate_get_flags(long this_ptr);
8442         // void UnsignedChannelUpdate_set_flags(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint8_t val);
8443         public static native void UnsignedChannelUpdate_set_flags(long this_ptr, byte val);
8444         // uint16_t UnsignedChannelUpdate_get_cltv_expiry_delta(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
8445         public static native short UnsignedChannelUpdate_get_cltv_expiry_delta(long this_ptr);
8446         // void UnsignedChannelUpdate_set_cltv_expiry_delta(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint16_t val);
8447         public static native void UnsignedChannelUpdate_set_cltv_expiry_delta(long this_ptr, short val);
8448         // uint64_t UnsignedChannelUpdate_get_htlc_minimum_msat(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
8449         public static native long UnsignedChannelUpdate_get_htlc_minimum_msat(long this_ptr);
8450         // void UnsignedChannelUpdate_set_htlc_minimum_msat(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint64_t val);
8451         public static native void UnsignedChannelUpdate_set_htlc_minimum_msat(long this_ptr, long val);
8452         // uint64_t UnsignedChannelUpdate_get_htlc_maximum_msat(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
8453         public static native long UnsignedChannelUpdate_get_htlc_maximum_msat(long this_ptr);
8454         // void UnsignedChannelUpdate_set_htlc_maximum_msat(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint64_t val);
8455         public static native void UnsignedChannelUpdate_set_htlc_maximum_msat(long this_ptr, long val);
8456         // uint32_t UnsignedChannelUpdate_get_fee_base_msat(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
8457         public static native int UnsignedChannelUpdate_get_fee_base_msat(long this_ptr);
8458         // void UnsignedChannelUpdate_set_fee_base_msat(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint32_t val);
8459         public static native void UnsignedChannelUpdate_set_fee_base_msat(long this_ptr, int val);
8460         // uint32_t UnsignedChannelUpdate_get_fee_proportional_millionths(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
8461         public static native int UnsignedChannelUpdate_get_fee_proportional_millionths(long this_ptr);
8462         // void UnsignedChannelUpdate_set_fee_proportional_millionths(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint32_t val);
8463         public static native void UnsignedChannelUpdate_set_fee_proportional_millionths(long this_ptr, int val);
8464         // struct LDKCVec_u8Z UnsignedChannelUpdate_get_excess_data(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
8465         public static native byte[] UnsignedChannelUpdate_get_excess_data(long this_ptr);
8466         // void UnsignedChannelUpdate_set_excess_data(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
8467         public static native void UnsignedChannelUpdate_set_excess_data(long this_ptr, byte[] val);
8468         // MUST_USE_RES struct LDKUnsignedChannelUpdate UnsignedChannelUpdate_new(struct LDKThirtyTwoBytes chain_hash_arg, uint64_t short_channel_id_arg, uint32_t timestamp_arg, uint8_t flags_arg, uint16_t cltv_expiry_delta_arg, uint64_t htlc_minimum_msat_arg, uint64_t htlc_maximum_msat_arg, uint32_t fee_base_msat_arg, uint32_t fee_proportional_millionths_arg, struct LDKCVec_u8Z excess_data_arg);
8469         public static native long UnsignedChannelUpdate_new(byte[] chain_hash_arg, long short_channel_id_arg, int timestamp_arg, byte flags_arg, short cltv_expiry_delta_arg, long htlc_minimum_msat_arg, long htlc_maximum_msat_arg, int fee_base_msat_arg, int fee_proportional_millionths_arg, byte[] excess_data_arg);
8470         // uint64_t UnsignedChannelUpdate_clone_ptr(LDKUnsignedChannelUpdate *NONNULL_PTR arg);
8471         public static native long UnsignedChannelUpdate_clone_ptr(long arg);
8472         // struct LDKUnsignedChannelUpdate UnsignedChannelUpdate_clone(const struct LDKUnsignedChannelUpdate *NONNULL_PTR orig);
8473         public static native long UnsignedChannelUpdate_clone(long orig);
8474         // bool UnsignedChannelUpdate_eq(const struct LDKUnsignedChannelUpdate *NONNULL_PTR a, const struct LDKUnsignedChannelUpdate *NONNULL_PTR b);
8475         public static native boolean UnsignedChannelUpdate_eq(long a, long b);
8476         // void ChannelUpdate_free(struct LDKChannelUpdate this_obj);
8477         public static native void ChannelUpdate_free(long this_obj);
8478         // struct LDKECDSASignature ChannelUpdate_get_signature(const struct LDKChannelUpdate *NONNULL_PTR this_ptr);
8479         public static native byte[] ChannelUpdate_get_signature(long this_ptr);
8480         // void ChannelUpdate_set_signature(struct LDKChannelUpdate *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
8481         public static native void ChannelUpdate_set_signature(long this_ptr, byte[] val);
8482         // struct LDKUnsignedChannelUpdate ChannelUpdate_get_contents(const struct LDKChannelUpdate *NONNULL_PTR this_ptr);
8483         public static native long ChannelUpdate_get_contents(long this_ptr);
8484         // void ChannelUpdate_set_contents(struct LDKChannelUpdate *NONNULL_PTR this_ptr, struct LDKUnsignedChannelUpdate val);
8485         public static native void ChannelUpdate_set_contents(long this_ptr, long val);
8486         // MUST_USE_RES struct LDKChannelUpdate ChannelUpdate_new(struct LDKECDSASignature signature_arg, struct LDKUnsignedChannelUpdate contents_arg);
8487         public static native long ChannelUpdate_new(byte[] signature_arg, long contents_arg);
8488         // uint64_t ChannelUpdate_clone_ptr(LDKChannelUpdate *NONNULL_PTR arg);
8489         public static native long ChannelUpdate_clone_ptr(long arg);
8490         // struct LDKChannelUpdate ChannelUpdate_clone(const struct LDKChannelUpdate *NONNULL_PTR orig);
8491         public static native long ChannelUpdate_clone(long orig);
8492         // bool ChannelUpdate_eq(const struct LDKChannelUpdate *NONNULL_PTR a, const struct LDKChannelUpdate *NONNULL_PTR b);
8493         public static native boolean ChannelUpdate_eq(long a, long b);
8494         // void QueryChannelRange_free(struct LDKQueryChannelRange this_obj);
8495         public static native void QueryChannelRange_free(long this_obj);
8496         // const uint8_t (*QueryChannelRange_get_chain_hash(const struct LDKQueryChannelRange *NONNULL_PTR this_ptr))[32];
8497         public static native byte[] QueryChannelRange_get_chain_hash(long this_ptr);
8498         // void QueryChannelRange_set_chain_hash(struct LDKQueryChannelRange *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8499         public static native void QueryChannelRange_set_chain_hash(long this_ptr, byte[] val);
8500         // uint32_t QueryChannelRange_get_first_blocknum(const struct LDKQueryChannelRange *NONNULL_PTR this_ptr);
8501         public static native int QueryChannelRange_get_first_blocknum(long this_ptr);
8502         // void QueryChannelRange_set_first_blocknum(struct LDKQueryChannelRange *NONNULL_PTR this_ptr, uint32_t val);
8503         public static native void QueryChannelRange_set_first_blocknum(long this_ptr, int val);
8504         // uint32_t QueryChannelRange_get_number_of_blocks(const struct LDKQueryChannelRange *NONNULL_PTR this_ptr);
8505         public static native int QueryChannelRange_get_number_of_blocks(long this_ptr);
8506         // void QueryChannelRange_set_number_of_blocks(struct LDKQueryChannelRange *NONNULL_PTR this_ptr, uint32_t val);
8507         public static native void QueryChannelRange_set_number_of_blocks(long this_ptr, int val);
8508         // MUST_USE_RES struct LDKQueryChannelRange QueryChannelRange_new(struct LDKThirtyTwoBytes chain_hash_arg, uint32_t first_blocknum_arg, uint32_t number_of_blocks_arg);
8509         public static native long QueryChannelRange_new(byte[] chain_hash_arg, int first_blocknum_arg, int number_of_blocks_arg);
8510         // uint64_t QueryChannelRange_clone_ptr(LDKQueryChannelRange *NONNULL_PTR arg);
8511         public static native long QueryChannelRange_clone_ptr(long arg);
8512         // struct LDKQueryChannelRange QueryChannelRange_clone(const struct LDKQueryChannelRange *NONNULL_PTR orig);
8513         public static native long QueryChannelRange_clone(long orig);
8514         // bool QueryChannelRange_eq(const struct LDKQueryChannelRange *NONNULL_PTR a, const struct LDKQueryChannelRange *NONNULL_PTR b);
8515         public static native boolean QueryChannelRange_eq(long a, long b);
8516         // void ReplyChannelRange_free(struct LDKReplyChannelRange this_obj);
8517         public static native void ReplyChannelRange_free(long this_obj);
8518         // const uint8_t (*ReplyChannelRange_get_chain_hash(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr))[32];
8519         public static native byte[] ReplyChannelRange_get_chain_hash(long this_ptr);
8520         // void ReplyChannelRange_set_chain_hash(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8521         public static native void ReplyChannelRange_set_chain_hash(long this_ptr, byte[] val);
8522         // uint32_t ReplyChannelRange_get_first_blocknum(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr);
8523         public static native int ReplyChannelRange_get_first_blocknum(long this_ptr);
8524         // void ReplyChannelRange_set_first_blocknum(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, uint32_t val);
8525         public static native void ReplyChannelRange_set_first_blocknum(long this_ptr, int val);
8526         // uint32_t ReplyChannelRange_get_number_of_blocks(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr);
8527         public static native int ReplyChannelRange_get_number_of_blocks(long this_ptr);
8528         // void ReplyChannelRange_set_number_of_blocks(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, uint32_t val);
8529         public static native void ReplyChannelRange_set_number_of_blocks(long this_ptr, int val);
8530         // bool ReplyChannelRange_get_sync_complete(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr);
8531         public static native boolean ReplyChannelRange_get_sync_complete(long this_ptr);
8532         // void ReplyChannelRange_set_sync_complete(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, bool val);
8533         public static native void ReplyChannelRange_set_sync_complete(long this_ptr, boolean val);
8534         // struct LDKCVec_u64Z ReplyChannelRange_get_short_channel_ids(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr);
8535         public static native long[] ReplyChannelRange_get_short_channel_ids(long this_ptr);
8536         // void ReplyChannelRange_set_short_channel_ids(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, struct LDKCVec_u64Z val);
8537         public static native void ReplyChannelRange_set_short_channel_ids(long this_ptr, long[] val);
8538         // MUST_USE_RES struct LDKReplyChannelRange ReplyChannelRange_new(struct LDKThirtyTwoBytes chain_hash_arg, uint32_t first_blocknum_arg, uint32_t number_of_blocks_arg, bool sync_complete_arg, struct LDKCVec_u64Z short_channel_ids_arg);
8539         public static native long ReplyChannelRange_new(byte[] chain_hash_arg, int first_blocknum_arg, int number_of_blocks_arg, boolean sync_complete_arg, long[] short_channel_ids_arg);
8540         // uint64_t ReplyChannelRange_clone_ptr(LDKReplyChannelRange *NONNULL_PTR arg);
8541         public static native long ReplyChannelRange_clone_ptr(long arg);
8542         // struct LDKReplyChannelRange ReplyChannelRange_clone(const struct LDKReplyChannelRange *NONNULL_PTR orig);
8543         public static native long ReplyChannelRange_clone(long orig);
8544         // bool ReplyChannelRange_eq(const struct LDKReplyChannelRange *NONNULL_PTR a, const struct LDKReplyChannelRange *NONNULL_PTR b);
8545         public static native boolean ReplyChannelRange_eq(long a, long b);
8546         // void QueryShortChannelIds_free(struct LDKQueryShortChannelIds this_obj);
8547         public static native void QueryShortChannelIds_free(long this_obj);
8548         // const uint8_t (*QueryShortChannelIds_get_chain_hash(const struct LDKQueryShortChannelIds *NONNULL_PTR this_ptr))[32];
8549         public static native byte[] QueryShortChannelIds_get_chain_hash(long this_ptr);
8550         // void QueryShortChannelIds_set_chain_hash(struct LDKQueryShortChannelIds *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8551         public static native void QueryShortChannelIds_set_chain_hash(long this_ptr, byte[] val);
8552         // struct LDKCVec_u64Z QueryShortChannelIds_get_short_channel_ids(const struct LDKQueryShortChannelIds *NONNULL_PTR this_ptr);
8553         public static native long[] QueryShortChannelIds_get_short_channel_ids(long this_ptr);
8554         // void QueryShortChannelIds_set_short_channel_ids(struct LDKQueryShortChannelIds *NONNULL_PTR this_ptr, struct LDKCVec_u64Z val);
8555         public static native void QueryShortChannelIds_set_short_channel_ids(long this_ptr, long[] val);
8556         // MUST_USE_RES struct LDKQueryShortChannelIds QueryShortChannelIds_new(struct LDKThirtyTwoBytes chain_hash_arg, struct LDKCVec_u64Z short_channel_ids_arg);
8557         public static native long QueryShortChannelIds_new(byte[] chain_hash_arg, long[] short_channel_ids_arg);
8558         // uint64_t QueryShortChannelIds_clone_ptr(LDKQueryShortChannelIds *NONNULL_PTR arg);
8559         public static native long QueryShortChannelIds_clone_ptr(long arg);
8560         // struct LDKQueryShortChannelIds QueryShortChannelIds_clone(const struct LDKQueryShortChannelIds *NONNULL_PTR orig);
8561         public static native long QueryShortChannelIds_clone(long orig);
8562         // bool QueryShortChannelIds_eq(const struct LDKQueryShortChannelIds *NONNULL_PTR a, const struct LDKQueryShortChannelIds *NONNULL_PTR b);
8563         public static native boolean QueryShortChannelIds_eq(long a, long b);
8564         // void ReplyShortChannelIdsEnd_free(struct LDKReplyShortChannelIdsEnd this_obj);
8565         public static native void ReplyShortChannelIdsEnd_free(long this_obj);
8566         // const uint8_t (*ReplyShortChannelIdsEnd_get_chain_hash(const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR this_ptr))[32];
8567         public static native byte[] ReplyShortChannelIdsEnd_get_chain_hash(long this_ptr);
8568         // void ReplyShortChannelIdsEnd_set_chain_hash(struct LDKReplyShortChannelIdsEnd *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8569         public static native void ReplyShortChannelIdsEnd_set_chain_hash(long this_ptr, byte[] val);
8570         // bool ReplyShortChannelIdsEnd_get_full_information(const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR this_ptr);
8571         public static native boolean ReplyShortChannelIdsEnd_get_full_information(long this_ptr);
8572         // void ReplyShortChannelIdsEnd_set_full_information(struct LDKReplyShortChannelIdsEnd *NONNULL_PTR this_ptr, bool val);
8573         public static native void ReplyShortChannelIdsEnd_set_full_information(long this_ptr, boolean val);
8574         // MUST_USE_RES struct LDKReplyShortChannelIdsEnd ReplyShortChannelIdsEnd_new(struct LDKThirtyTwoBytes chain_hash_arg, bool full_information_arg);
8575         public static native long ReplyShortChannelIdsEnd_new(byte[] chain_hash_arg, boolean full_information_arg);
8576         // uint64_t ReplyShortChannelIdsEnd_clone_ptr(LDKReplyShortChannelIdsEnd *NONNULL_PTR arg);
8577         public static native long ReplyShortChannelIdsEnd_clone_ptr(long arg);
8578         // struct LDKReplyShortChannelIdsEnd ReplyShortChannelIdsEnd_clone(const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR orig);
8579         public static native long ReplyShortChannelIdsEnd_clone(long orig);
8580         // bool ReplyShortChannelIdsEnd_eq(const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR a, const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR b);
8581         public static native boolean ReplyShortChannelIdsEnd_eq(long a, long b);
8582         // void GossipTimestampFilter_free(struct LDKGossipTimestampFilter this_obj);
8583         public static native void GossipTimestampFilter_free(long this_obj);
8584         // const uint8_t (*GossipTimestampFilter_get_chain_hash(const struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr))[32];
8585         public static native byte[] GossipTimestampFilter_get_chain_hash(long this_ptr);
8586         // void GossipTimestampFilter_set_chain_hash(struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
8587         public static native void GossipTimestampFilter_set_chain_hash(long this_ptr, byte[] val);
8588         // uint32_t GossipTimestampFilter_get_first_timestamp(const struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr);
8589         public static native int GossipTimestampFilter_get_first_timestamp(long this_ptr);
8590         // void GossipTimestampFilter_set_first_timestamp(struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr, uint32_t val);
8591         public static native void GossipTimestampFilter_set_first_timestamp(long this_ptr, int val);
8592         // uint32_t GossipTimestampFilter_get_timestamp_range(const struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr);
8593         public static native int GossipTimestampFilter_get_timestamp_range(long this_ptr);
8594         // void GossipTimestampFilter_set_timestamp_range(struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr, uint32_t val);
8595         public static native void GossipTimestampFilter_set_timestamp_range(long this_ptr, int val);
8596         // MUST_USE_RES struct LDKGossipTimestampFilter GossipTimestampFilter_new(struct LDKThirtyTwoBytes chain_hash_arg, uint32_t first_timestamp_arg, uint32_t timestamp_range_arg);
8597         public static native long GossipTimestampFilter_new(byte[] chain_hash_arg, int first_timestamp_arg, int timestamp_range_arg);
8598         // uint64_t GossipTimestampFilter_clone_ptr(LDKGossipTimestampFilter *NONNULL_PTR arg);
8599         public static native long GossipTimestampFilter_clone_ptr(long arg);
8600         // struct LDKGossipTimestampFilter GossipTimestampFilter_clone(const struct LDKGossipTimestampFilter *NONNULL_PTR orig);
8601         public static native long GossipTimestampFilter_clone(long orig);
8602         // bool GossipTimestampFilter_eq(const struct LDKGossipTimestampFilter *NONNULL_PTR a, const struct LDKGossipTimestampFilter *NONNULL_PTR b);
8603         public static native boolean GossipTimestampFilter_eq(long a, long b);
8604         // void ErrorAction_free(struct LDKErrorAction this_ptr);
8605         public static native void ErrorAction_free(long this_ptr);
8606         // uint64_t ErrorAction_clone_ptr(LDKErrorAction *NONNULL_PTR arg);
8607         public static native long ErrorAction_clone_ptr(long arg);
8608         // struct LDKErrorAction ErrorAction_clone(const struct LDKErrorAction *NONNULL_PTR orig);
8609         public static native long ErrorAction_clone(long orig);
8610         // struct LDKErrorAction ErrorAction_disconnect_peer(struct LDKErrorMessage msg);
8611         public static native long ErrorAction_disconnect_peer(long msg);
8612         // struct LDKErrorAction ErrorAction_disconnect_peer_with_warning(struct LDKWarningMessage msg);
8613         public static native long ErrorAction_disconnect_peer_with_warning(long msg);
8614         // struct LDKErrorAction ErrorAction_ignore_error(void);
8615         public static native long ErrorAction_ignore_error();
8616         // struct LDKErrorAction ErrorAction_ignore_and_log(enum LDKLevel a);
8617         public static native long ErrorAction_ignore_and_log(Level a);
8618         // struct LDKErrorAction ErrorAction_ignore_duplicate_gossip(void);
8619         public static native long ErrorAction_ignore_duplicate_gossip();
8620         // struct LDKErrorAction ErrorAction_send_error_message(struct LDKErrorMessage msg);
8621         public static native long ErrorAction_send_error_message(long msg);
8622         // struct LDKErrorAction ErrorAction_send_warning_message(struct LDKWarningMessage msg, enum LDKLevel log_level);
8623         public static native long ErrorAction_send_warning_message(long msg, Level log_level);
8624         // void LightningError_free(struct LDKLightningError this_obj);
8625         public static native void LightningError_free(long this_obj);
8626         // struct LDKStr LightningError_get_err(const struct LDKLightningError *NONNULL_PTR this_ptr);
8627         public static native String LightningError_get_err(long this_ptr);
8628         // void LightningError_set_err(struct LDKLightningError *NONNULL_PTR this_ptr, struct LDKStr val);
8629         public static native void LightningError_set_err(long this_ptr, String val);
8630         // struct LDKErrorAction LightningError_get_action(const struct LDKLightningError *NONNULL_PTR this_ptr);
8631         public static native long LightningError_get_action(long this_ptr);
8632         // void LightningError_set_action(struct LDKLightningError *NONNULL_PTR this_ptr, struct LDKErrorAction val);
8633         public static native void LightningError_set_action(long this_ptr, long val);
8634         // MUST_USE_RES struct LDKLightningError LightningError_new(struct LDKStr err_arg, struct LDKErrorAction action_arg);
8635         public static native long LightningError_new(String err_arg, long action_arg);
8636         // uint64_t LightningError_clone_ptr(LDKLightningError *NONNULL_PTR arg);
8637         public static native long LightningError_clone_ptr(long arg);
8638         // struct LDKLightningError LightningError_clone(const struct LDKLightningError *NONNULL_PTR orig);
8639         public static native long LightningError_clone(long orig);
8640         // void CommitmentUpdate_free(struct LDKCommitmentUpdate this_obj);
8641         public static native void CommitmentUpdate_free(long this_obj);
8642         // struct LDKCVec_UpdateAddHTLCZ CommitmentUpdate_get_update_add_htlcs(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
8643         public static native long[] CommitmentUpdate_get_update_add_htlcs(long this_ptr);
8644         // void CommitmentUpdate_set_update_add_htlcs(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCVec_UpdateAddHTLCZ val);
8645         public static native void CommitmentUpdate_set_update_add_htlcs(long this_ptr, long[] val);
8646         // struct LDKCVec_UpdateFulfillHTLCZ CommitmentUpdate_get_update_fulfill_htlcs(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
8647         public static native long[] CommitmentUpdate_get_update_fulfill_htlcs(long this_ptr);
8648         // void CommitmentUpdate_set_update_fulfill_htlcs(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCVec_UpdateFulfillHTLCZ val);
8649         public static native void CommitmentUpdate_set_update_fulfill_htlcs(long this_ptr, long[] val);
8650         // struct LDKCVec_UpdateFailHTLCZ CommitmentUpdate_get_update_fail_htlcs(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
8651         public static native long[] CommitmentUpdate_get_update_fail_htlcs(long this_ptr);
8652         // void CommitmentUpdate_set_update_fail_htlcs(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCVec_UpdateFailHTLCZ val);
8653         public static native void CommitmentUpdate_set_update_fail_htlcs(long this_ptr, long[] val);
8654         // struct LDKCVec_UpdateFailMalformedHTLCZ CommitmentUpdate_get_update_fail_malformed_htlcs(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
8655         public static native long[] CommitmentUpdate_get_update_fail_malformed_htlcs(long this_ptr);
8656         // void CommitmentUpdate_set_update_fail_malformed_htlcs(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCVec_UpdateFailMalformedHTLCZ val);
8657         public static native void CommitmentUpdate_set_update_fail_malformed_htlcs(long this_ptr, long[] val);
8658         // struct LDKUpdateFee CommitmentUpdate_get_update_fee(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
8659         public static native long CommitmentUpdate_get_update_fee(long this_ptr);
8660         // void CommitmentUpdate_set_update_fee(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKUpdateFee val);
8661         public static native void CommitmentUpdate_set_update_fee(long this_ptr, long val);
8662         // struct LDKCommitmentSigned CommitmentUpdate_get_commitment_signed(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
8663         public static native long CommitmentUpdate_get_commitment_signed(long this_ptr);
8664         // void CommitmentUpdate_set_commitment_signed(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCommitmentSigned val);
8665         public static native void CommitmentUpdate_set_commitment_signed(long this_ptr, long val);
8666         // MUST_USE_RES struct LDKCommitmentUpdate CommitmentUpdate_new(struct LDKCVec_UpdateAddHTLCZ update_add_htlcs_arg, struct LDKCVec_UpdateFulfillHTLCZ update_fulfill_htlcs_arg, struct LDKCVec_UpdateFailHTLCZ update_fail_htlcs_arg, struct LDKCVec_UpdateFailMalformedHTLCZ update_fail_malformed_htlcs_arg, struct LDKUpdateFee update_fee_arg, struct LDKCommitmentSigned commitment_signed_arg);
8667         public static native long CommitmentUpdate_new(long[] update_add_htlcs_arg, long[] update_fulfill_htlcs_arg, long[] update_fail_htlcs_arg, long[] update_fail_malformed_htlcs_arg, long update_fee_arg, long commitment_signed_arg);
8668         // uint64_t CommitmentUpdate_clone_ptr(LDKCommitmentUpdate *NONNULL_PTR arg);
8669         public static native long CommitmentUpdate_clone_ptr(long arg);
8670         // struct LDKCommitmentUpdate CommitmentUpdate_clone(const struct LDKCommitmentUpdate *NONNULL_PTR orig);
8671         public static native long CommitmentUpdate_clone(long orig);
8672         // bool CommitmentUpdate_eq(const struct LDKCommitmentUpdate *NONNULL_PTR a, const struct LDKCommitmentUpdate *NONNULL_PTR b);
8673         public static native boolean CommitmentUpdate_eq(long a, long b);
8674         // void ChannelMessageHandler_free(struct LDKChannelMessageHandler this_ptr);
8675         public static native void ChannelMessageHandler_free(long this_ptr);
8676         // void RoutingMessageHandler_free(struct LDKRoutingMessageHandler this_ptr);
8677         public static native void RoutingMessageHandler_free(long this_ptr);
8678         // void OnionMessageHandler_free(struct LDKOnionMessageHandler this_ptr);
8679         public static native void OnionMessageHandler_free(long this_ptr);
8680         // struct LDKCVec_u8Z AcceptChannel_write(const struct LDKAcceptChannel *NONNULL_PTR obj);
8681         public static native byte[] AcceptChannel_write(long obj);
8682         // struct LDKCResult_AcceptChannelDecodeErrorZ AcceptChannel_read(struct LDKu8slice ser);
8683         public static native long AcceptChannel_read(byte[] ser);
8684         // struct LDKCVec_u8Z AcceptChannelV2_write(const struct LDKAcceptChannelV2 *NONNULL_PTR obj);
8685         public static native byte[] AcceptChannelV2_write(long obj);
8686         // struct LDKCResult_AcceptChannelV2DecodeErrorZ AcceptChannelV2_read(struct LDKu8slice ser);
8687         public static native long AcceptChannelV2_read(byte[] ser);
8688         // struct LDKCVec_u8Z TxAddInput_write(const struct LDKTxAddInput *NONNULL_PTR obj);
8689         public static native byte[] TxAddInput_write(long obj);
8690         // struct LDKCResult_TxAddInputDecodeErrorZ TxAddInput_read(struct LDKu8slice ser);
8691         public static native long TxAddInput_read(byte[] ser);
8692         // struct LDKCVec_u8Z TxAddOutput_write(const struct LDKTxAddOutput *NONNULL_PTR obj);
8693         public static native byte[] TxAddOutput_write(long obj);
8694         // struct LDKCResult_TxAddOutputDecodeErrorZ TxAddOutput_read(struct LDKu8slice ser);
8695         public static native long TxAddOutput_read(byte[] ser);
8696         // struct LDKCVec_u8Z TxRemoveInput_write(const struct LDKTxRemoveInput *NONNULL_PTR obj);
8697         public static native byte[] TxRemoveInput_write(long obj);
8698         // struct LDKCResult_TxRemoveInputDecodeErrorZ TxRemoveInput_read(struct LDKu8slice ser);
8699         public static native long TxRemoveInput_read(byte[] ser);
8700         // struct LDKCVec_u8Z TxRemoveOutput_write(const struct LDKTxRemoveOutput *NONNULL_PTR obj);
8701         public static native byte[] TxRemoveOutput_write(long obj);
8702         // struct LDKCResult_TxRemoveOutputDecodeErrorZ TxRemoveOutput_read(struct LDKu8slice ser);
8703         public static native long TxRemoveOutput_read(byte[] ser);
8704         // struct LDKCVec_u8Z TxComplete_write(const struct LDKTxComplete *NONNULL_PTR obj);
8705         public static native byte[] TxComplete_write(long obj);
8706         // struct LDKCResult_TxCompleteDecodeErrorZ TxComplete_read(struct LDKu8slice ser);
8707         public static native long TxComplete_read(byte[] ser);
8708         // struct LDKCVec_u8Z TxSignatures_write(const struct LDKTxSignatures *NONNULL_PTR obj);
8709         public static native byte[] TxSignatures_write(long obj);
8710         // struct LDKCResult_TxSignaturesDecodeErrorZ TxSignatures_read(struct LDKu8slice ser);
8711         public static native long TxSignatures_read(byte[] ser);
8712         // struct LDKCVec_u8Z TxInitRbf_write(const struct LDKTxInitRbf *NONNULL_PTR obj);
8713         public static native byte[] TxInitRbf_write(long obj);
8714         // struct LDKCResult_TxInitRbfDecodeErrorZ TxInitRbf_read(struct LDKu8slice ser);
8715         public static native long TxInitRbf_read(byte[] ser);
8716         // struct LDKCVec_u8Z TxAckRbf_write(const struct LDKTxAckRbf *NONNULL_PTR obj);
8717         public static native byte[] TxAckRbf_write(long obj);
8718         // struct LDKCResult_TxAckRbfDecodeErrorZ TxAckRbf_read(struct LDKu8slice ser);
8719         public static native long TxAckRbf_read(byte[] ser);
8720         // struct LDKCVec_u8Z TxAbort_write(const struct LDKTxAbort *NONNULL_PTR obj);
8721         public static native byte[] TxAbort_write(long obj);
8722         // struct LDKCResult_TxAbortDecodeErrorZ TxAbort_read(struct LDKu8slice ser);
8723         public static native long TxAbort_read(byte[] ser);
8724         // struct LDKCVec_u8Z AnnouncementSignatures_write(const struct LDKAnnouncementSignatures *NONNULL_PTR obj);
8725         public static native byte[] AnnouncementSignatures_write(long obj);
8726         // struct LDKCResult_AnnouncementSignaturesDecodeErrorZ AnnouncementSignatures_read(struct LDKu8slice ser);
8727         public static native long AnnouncementSignatures_read(byte[] ser);
8728         // struct LDKCVec_u8Z ChannelReestablish_write(const struct LDKChannelReestablish *NONNULL_PTR obj);
8729         public static native byte[] ChannelReestablish_write(long obj);
8730         // struct LDKCResult_ChannelReestablishDecodeErrorZ ChannelReestablish_read(struct LDKu8slice ser);
8731         public static native long ChannelReestablish_read(byte[] ser);
8732         // struct LDKCVec_u8Z ClosingSigned_write(const struct LDKClosingSigned *NONNULL_PTR obj);
8733         public static native byte[] ClosingSigned_write(long obj);
8734         // struct LDKCResult_ClosingSignedDecodeErrorZ ClosingSigned_read(struct LDKu8slice ser);
8735         public static native long ClosingSigned_read(byte[] ser);
8736         // struct LDKCVec_u8Z ClosingSignedFeeRange_write(const struct LDKClosingSignedFeeRange *NONNULL_PTR obj);
8737         public static native byte[] ClosingSignedFeeRange_write(long obj);
8738         // struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ ClosingSignedFeeRange_read(struct LDKu8slice ser);
8739         public static native long ClosingSignedFeeRange_read(byte[] ser);
8740         // struct LDKCVec_u8Z CommitmentSigned_write(const struct LDKCommitmentSigned *NONNULL_PTR obj);
8741         public static native byte[] CommitmentSigned_write(long obj);
8742         // struct LDKCResult_CommitmentSignedDecodeErrorZ CommitmentSigned_read(struct LDKu8slice ser);
8743         public static native long CommitmentSigned_read(byte[] ser);
8744         // struct LDKCVec_u8Z FundingCreated_write(const struct LDKFundingCreated *NONNULL_PTR obj);
8745         public static native byte[] FundingCreated_write(long obj);
8746         // struct LDKCResult_FundingCreatedDecodeErrorZ FundingCreated_read(struct LDKu8slice ser);
8747         public static native long FundingCreated_read(byte[] ser);
8748         // struct LDKCVec_u8Z FundingSigned_write(const struct LDKFundingSigned *NONNULL_PTR obj);
8749         public static native byte[] FundingSigned_write(long obj);
8750         // struct LDKCResult_FundingSignedDecodeErrorZ FundingSigned_read(struct LDKu8slice ser);
8751         public static native long FundingSigned_read(byte[] ser);
8752         // struct LDKCVec_u8Z ChannelReady_write(const struct LDKChannelReady *NONNULL_PTR obj);
8753         public static native byte[] ChannelReady_write(long obj);
8754         // struct LDKCResult_ChannelReadyDecodeErrorZ ChannelReady_read(struct LDKu8slice ser);
8755         public static native long ChannelReady_read(byte[] ser);
8756         // struct LDKCVec_u8Z Init_write(const struct LDKInit *NONNULL_PTR obj);
8757         public static native byte[] Init_write(long obj);
8758         // struct LDKCResult_InitDecodeErrorZ Init_read(struct LDKu8slice ser);
8759         public static native long Init_read(byte[] ser);
8760         // struct LDKCVec_u8Z OpenChannel_write(const struct LDKOpenChannel *NONNULL_PTR obj);
8761         public static native byte[] OpenChannel_write(long obj);
8762         // struct LDKCResult_OpenChannelDecodeErrorZ OpenChannel_read(struct LDKu8slice ser);
8763         public static native long OpenChannel_read(byte[] ser);
8764         // struct LDKCVec_u8Z OpenChannelV2_write(const struct LDKOpenChannelV2 *NONNULL_PTR obj);
8765         public static native byte[] OpenChannelV2_write(long obj);
8766         // struct LDKCResult_OpenChannelV2DecodeErrorZ OpenChannelV2_read(struct LDKu8slice ser);
8767         public static native long OpenChannelV2_read(byte[] ser);
8768         // struct LDKCVec_u8Z RevokeAndACK_write(const struct LDKRevokeAndACK *NONNULL_PTR obj);
8769         public static native byte[] RevokeAndACK_write(long obj);
8770         // struct LDKCResult_RevokeAndACKDecodeErrorZ RevokeAndACK_read(struct LDKu8slice ser);
8771         public static native long RevokeAndACK_read(byte[] ser);
8772         // struct LDKCVec_u8Z Shutdown_write(const struct LDKShutdown *NONNULL_PTR obj);
8773         public static native byte[] Shutdown_write(long obj);
8774         // struct LDKCResult_ShutdownDecodeErrorZ Shutdown_read(struct LDKu8slice ser);
8775         public static native long Shutdown_read(byte[] ser);
8776         // struct LDKCVec_u8Z UpdateFailHTLC_write(const struct LDKUpdateFailHTLC *NONNULL_PTR obj);
8777         public static native byte[] UpdateFailHTLC_write(long obj);
8778         // struct LDKCResult_UpdateFailHTLCDecodeErrorZ UpdateFailHTLC_read(struct LDKu8slice ser);
8779         public static native long UpdateFailHTLC_read(byte[] ser);
8780         // struct LDKCVec_u8Z UpdateFailMalformedHTLC_write(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR obj);
8781         public static native byte[] UpdateFailMalformedHTLC_write(long obj);
8782         // struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ UpdateFailMalformedHTLC_read(struct LDKu8slice ser);
8783         public static native long UpdateFailMalformedHTLC_read(byte[] ser);
8784         // struct LDKCVec_u8Z UpdateFee_write(const struct LDKUpdateFee *NONNULL_PTR obj);
8785         public static native byte[] UpdateFee_write(long obj);
8786         // struct LDKCResult_UpdateFeeDecodeErrorZ UpdateFee_read(struct LDKu8slice ser);
8787         public static native long UpdateFee_read(byte[] ser);
8788         // struct LDKCVec_u8Z UpdateFulfillHTLC_write(const struct LDKUpdateFulfillHTLC *NONNULL_PTR obj);
8789         public static native byte[] UpdateFulfillHTLC_write(long obj);
8790         // struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ UpdateFulfillHTLC_read(struct LDKu8slice ser);
8791         public static native long UpdateFulfillHTLC_read(byte[] ser);
8792         // struct LDKCVec_u8Z UpdateAddHTLC_write(const struct LDKUpdateAddHTLC *NONNULL_PTR obj);
8793         public static native byte[] UpdateAddHTLC_write(long obj);
8794         // struct LDKCResult_UpdateAddHTLCDecodeErrorZ UpdateAddHTLC_read(struct LDKu8slice ser);
8795         public static native long UpdateAddHTLC_read(byte[] ser);
8796         // struct LDKCResult_OnionMessageDecodeErrorZ OnionMessage_read(struct LDKu8slice ser);
8797         public static native long OnionMessage_read(byte[] ser);
8798         // struct LDKCVec_u8Z OnionMessage_write(const struct LDKOnionMessage *NONNULL_PTR obj);
8799         public static native byte[] OnionMessage_write(long obj);
8800         // struct LDKCVec_u8Z Ping_write(const struct LDKPing *NONNULL_PTR obj);
8801         public static native byte[] Ping_write(long obj);
8802         // struct LDKCResult_PingDecodeErrorZ Ping_read(struct LDKu8slice ser);
8803         public static native long Ping_read(byte[] ser);
8804         // struct LDKCVec_u8Z Pong_write(const struct LDKPong *NONNULL_PTR obj);
8805         public static native byte[] Pong_write(long obj);
8806         // struct LDKCResult_PongDecodeErrorZ Pong_read(struct LDKu8slice ser);
8807         public static native long Pong_read(byte[] ser);
8808         // struct LDKCVec_u8Z UnsignedChannelAnnouncement_write(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR obj);
8809         public static native byte[] UnsignedChannelAnnouncement_write(long obj);
8810         // struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ UnsignedChannelAnnouncement_read(struct LDKu8slice ser);
8811         public static native long UnsignedChannelAnnouncement_read(byte[] ser);
8812         // struct LDKCVec_u8Z ChannelAnnouncement_write(const struct LDKChannelAnnouncement *NONNULL_PTR obj);
8813         public static native byte[] ChannelAnnouncement_write(long obj);
8814         // struct LDKCResult_ChannelAnnouncementDecodeErrorZ ChannelAnnouncement_read(struct LDKu8slice ser);
8815         public static native long ChannelAnnouncement_read(byte[] ser);
8816         // struct LDKCVec_u8Z UnsignedChannelUpdate_write(const struct LDKUnsignedChannelUpdate *NONNULL_PTR obj);
8817         public static native byte[] UnsignedChannelUpdate_write(long obj);
8818         // struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ UnsignedChannelUpdate_read(struct LDKu8slice ser);
8819         public static native long UnsignedChannelUpdate_read(byte[] ser);
8820         // struct LDKCVec_u8Z ChannelUpdate_write(const struct LDKChannelUpdate *NONNULL_PTR obj);
8821         public static native byte[] ChannelUpdate_write(long obj);
8822         // struct LDKCResult_ChannelUpdateDecodeErrorZ ChannelUpdate_read(struct LDKu8slice ser);
8823         public static native long ChannelUpdate_read(byte[] ser);
8824         // struct LDKCVec_u8Z ErrorMessage_write(const struct LDKErrorMessage *NONNULL_PTR obj);
8825         public static native byte[] ErrorMessage_write(long obj);
8826         // struct LDKCResult_ErrorMessageDecodeErrorZ ErrorMessage_read(struct LDKu8slice ser);
8827         public static native long ErrorMessage_read(byte[] ser);
8828         // struct LDKCVec_u8Z WarningMessage_write(const struct LDKWarningMessage *NONNULL_PTR obj);
8829         public static native byte[] WarningMessage_write(long obj);
8830         // struct LDKCResult_WarningMessageDecodeErrorZ WarningMessage_read(struct LDKu8slice ser);
8831         public static native long WarningMessage_read(byte[] ser);
8832         // struct LDKCVec_u8Z UnsignedNodeAnnouncement_write(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR obj);
8833         public static native byte[] UnsignedNodeAnnouncement_write(long obj);
8834         // struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ UnsignedNodeAnnouncement_read(struct LDKu8slice ser);
8835         public static native long UnsignedNodeAnnouncement_read(byte[] ser);
8836         // struct LDKCVec_u8Z NodeAnnouncement_write(const struct LDKNodeAnnouncement *NONNULL_PTR obj);
8837         public static native byte[] NodeAnnouncement_write(long obj);
8838         // struct LDKCResult_NodeAnnouncementDecodeErrorZ NodeAnnouncement_read(struct LDKu8slice ser);
8839         public static native long NodeAnnouncement_read(byte[] ser);
8840         // struct LDKCResult_QueryShortChannelIdsDecodeErrorZ QueryShortChannelIds_read(struct LDKu8slice ser);
8841         public static native long QueryShortChannelIds_read(byte[] ser);
8842         // struct LDKCVec_u8Z QueryShortChannelIds_write(const struct LDKQueryShortChannelIds *NONNULL_PTR obj);
8843         public static native byte[] QueryShortChannelIds_write(long obj);
8844         // struct LDKCVec_u8Z ReplyShortChannelIdsEnd_write(const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR obj);
8845         public static native byte[] ReplyShortChannelIdsEnd_write(long obj);
8846         // struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ ReplyShortChannelIdsEnd_read(struct LDKu8slice ser);
8847         public static native long ReplyShortChannelIdsEnd_read(byte[] ser);
8848         // MUST_USE_RES uint32_t QueryChannelRange_end_blocknum(const struct LDKQueryChannelRange *NONNULL_PTR this_arg);
8849         public static native int QueryChannelRange_end_blocknum(long this_arg);
8850         // struct LDKCVec_u8Z QueryChannelRange_write(const struct LDKQueryChannelRange *NONNULL_PTR obj);
8851         public static native byte[] QueryChannelRange_write(long obj);
8852         // struct LDKCResult_QueryChannelRangeDecodeErrorZ QueryChannelRange_read(struct LDKu8slice ser);
8853         public static native long QueryChannelRange_read(byte[] ser);
8854         // struct LDKCResult_ReplyChannelRangeDecodeErrorZ ReplyChannelRange_read(struct LDKu8slice ser);
8855         public static native long ReplyChannelRange_read(byte[] ser);
8856         // struct LDKCVec_u8Z ReplyChannelRange_write(const struct LDKReplyChannelRange *NONNULL_PTR obj);
8857         public static native byte[] ReplyChannelRange_write(long obj);
8858         // struct LDKCVec_u8Z GossipTimestampFilter_write(const struct LDKGossipTimestampFilter *NONNULL_PTR obj);
8859         public static native byte[] GossipTimestampFilter_write(long obj);
8860         // struct LDKCResult_GossipTimestampFilterDecodeErrorZ GossipTimestampFilter_read(struct LDKu8slice ser);
8861         public static native long GossipTimestampFilter_read(byte[] ser);
8862         // void CustomMessageHandler_free(struct LDKCustomMessageHandler this_ptr);
8863         public static native void CustomMessageHandler_free(long this_ptr);
8864         // void IgnoringMessageHandler_free(struct LDKIgnoringMessageHandler this_obj);
8865         public static native void IgnoringMessageHandler_free(long this_obj);
8866         // MUST_USE_RES struct LDKIgnoringMessageHandler IgnoringMessageHandler_new(void);
8867         public static native long IgnoringMessageHandler_new();
8868         // struct LDKMessageSendEventsProvider IgnoringMessageHandler_as_MessageSendEventsProvider(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
8869         public static native long IgnoringMessageHandler_as_MessageSendEventsProvider(long this_arg);
8870         // struct LDKRoutingMessageHandler IgnoringMessageHandler_as_RoutingMessageHandler(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
8871         public static native long IgnoringMessageHandler_as_RoutingMessageHandler(long this_arg);
8872         // struct LDKOnionMessageProvider IgnoringMessageHandler_as_OnionMessageProvider(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
8873         public static native long IgnoringMessageHandler_as_OnionMessageProvider(long this_arg);
8874         // struct LDKOnionMessageHandler IgnoringMessageHandler_as_OnionMessageHandler(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
8875         public static native long IgnoringMessageHandler_as_OnionMessageHandler(long this_arg);
8876         // struct LDKOffersMessageHandler IgnoringMessageHandler_as_OffersMessageHandler(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
8877         public static native long IgnoringMessageHandler_as_OffersMessageHandler(long this_arg);
8878         // struct LDKCustomOnionMessageHandler IgnoringMessageHandler_as_CustomOnionMessageHandler(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
8879         public static native long IgnoringMessageHandler_as_CustomOnionMessageHandler(long this_arg);
8880         // struct LDKCustomMessageReader IgnoringMessageHandler_as_CustomMessageReader(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
8881         public static native long IgnoringMessageHandler_as_CustomMessageReader(long this_arg);
8882         // struct LDKCustomMessageHandler IgnoringMessageHandler_as_CustomMessageHandler(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
8883         public static native long IgnoringMessageHandler_as_CustomMessageHandler(long this_arg);
8884         // void ErroringMessageHandler_free(struct LDKErroringMessageHandler this_obj);
8885         public static native void ErroringMessageHandler_free(long this_obj);
8886         // MUST_USE_RES struct LDKErroringMessageHandler ErroringMessageHandler_new(void);
8887         public static native long ErroringMessageHandler_new();
8888         // struct LDKMessageSendEventsProvider ErroringMessageHandler_as_MessageSendEventsProvider(const struct LDKErroringMessageHandler *NONNULL_PTR this_arg);
8889         public static native long ErroringMessageHandler_as_MessageSendEventsProvider(long this_arg);
8890         // struct LDKChannelMessageHandler ErroringMessageHandler_as_ChannelMessageHandler(const struct LDKErroringMessageHandler *NONNULL_PTR this_arg);
8891         public static native long ErroringMessageHandler_as_ChannelMessageHandler(long this_arg);
8892         // void MessageHandler_free(struct LDKMessageHandler this_obj);
8893         public static native void MessageHandler_free(long this_obj);
8894         // const struct LDKChannelMessageHandler *MessageHandler_get_chan_handler(const struct LDKMessageHandler *NONNULL_PTR this_ptr);
8895         public static native long MessageHandler_get_chan_handler(long this_ptr);
8896         // void MessageHandler_set_chan_handler(struct LDKMessageHandler *NONNULL_PTR this_ptr, struct LDKChannelMessageHandler val);
8897         public static native void MessageHandler_set_chan_handler(long this_ptr, long val);
8898         // const struct LDKRoutingMessageHandler *MessageHandler_get_route_handler(const struct LDKMessageHandler *NONNULL_PTR this_ptr);
8899         public static native long MessageHandler_get_route_handler(long this_ptr);
8900         // void MessageHandler_set_route_handler(struct LDKMessageHandler *NONNULL_PTR this_ptr, struct LDKRoutingMessageHandler val);
8901         public static native void MessageHandler_set_route_handler(long this_ptr, long val);
8902         // const struct LDKOnionMessageHandler *MessageHandler_get_onion_message_handler(const struct LDKMessageHandler *NONNULL_PTR this_ptr);
8903         public static native long MessageHandler_get_onion_message_handler(long this_ptr);
8904         // void MessageHandler_set_onion_message_handler(struct LDKMessageHandler *NONNULL_PTR this_ptr, struct LDKOnionMessageHandler val);
8905         public static native void MessageHandler_set_onion_message_handler(long this_ptr, long val);
8906         // const struct LDKCustomMessageHandler *MessageHandler_get_custom_message_handler(const struct LDKMessageHandler *NONNULL_PTR this_ptr);
8907         public static native long MessageHandler_get_custom_message_handler(long this_ptr);
8908         // void MessageHandler_set_custom_message_handler(struct LDKMessageHandler *NONNULL_PTR this_ptr, struct LDKCustomMessageHandler val);
8909         public static native void MessageHandler_set_custom_message_handler(long this_ptr, long val);
8910         // MUST_USE_RES struct LDKMessageHandler MessageHandler_new(struct LDKChannelMessageHandler chan_handler_arg, struct LDKRoutingMessageHandler route_handler_arg, struct LDKOnionMessageHandler onion_message_handler_arg, struct LDKCustomMessageHandler custom_message_handler_arg);
8911         public static native long MessageHandler_new(long chan_handler_arg, long route_handler_arg, long onion_message_handler_arg, long custom_message_handler_arg);
8912         // uint64_t SocketDescriptor_clone_ptr(LDKSocketDescriptor *NONNULL_PTR arg);
8913         public static native long SocketDescriptor_clone_ptr(long arg);
8914         // struct LDKSocketDescriptor SocketDescriptor_clone(const struct LDKSocketDescriptor *NONNULL_PTR orig);
8915         public static native long SocketDescriptor_clone(long orig);
8916         // void SocketDescriptor_free(struct LDKSocketDescriptor this_ptr);
8917         public static native void SocketDescriptor_free(long this_ptr);
8918         // void PeerHandleError_free(struct LDKPeerHandleError this_obj);
8919         public static native void PeerHandleError_free(long this_obj);
8920         // MUST_USE_RES struct LDKPeerHandleError PeerHandleError_new(void);
8921         public static native long PeerHandleError_new();
8922         // uint64_t PeerHandleError_clone_ptr(LDKPeerHandleError *NONNULL_PTR arg);
8923         public static native long PeerHandleError_clone_ptr(long arg);
8924         // struct LDKPeerHandleError PeerHandleError_clone(const struct LDKPeerHandleError *NONNULL_PTR orig);
8925         public static native long PeerHandleError_clone(long orig);
8926         // void PeerManager_free(struct LDKPeerManager this_obj);
8927         public static native void PeerManager_free(long this_obj);
8928         // MUST_USE_RES struct LDKPeerManager PeerManager_new(struct LDKMessageHandler message_handler, uint32_t current_time, const uint8_t (*ephemeral_random_data)[32], struct LDKLogger logger, struct LDKNodeSigner node_signer);
8929         public static native long PeerManager_new(long message_handler, int current_time, byte[] ephemeral_random_data, long logger, long node_signer);
8930         // MUST_USE_RES struct LDKCVec_C2Tuple_PublicKeyCOption_SocketAddressZZZ PeerManager_get_peer_node_ids(const struct LDKPeerManager *NONNULL_PTR this_arg);
8931         public static native long[] PeerManager_get_peer_node_ids(long this_arg);
8932         // MUST_USE_RES struct LDKCResult_CVec_u8ZPeerHandleErrorZ PeerManager_new_outbound_connection(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKSocketDescriptor descriptor, struct LDKCOption_SocketAddressZ remote_network_address);
8933         public static native long PeerManager_new_outbound_connection(long this_arg, byte[] their_node_id, long descriptor, long remote_network_address);
8934         // MUST_USE_RES struct LDKCResult_NonePeerHandleErrorZ PeerManager_new_inbound_connection(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKSocketDescriptor descriptor, struct LDKCOption_SocketAddressZ remote_network_address);
8935         public static native long PeerManager_new_inbound_connection(long this_arg, long descriptor, long remote_network_address);
8936         // MUST_USE_RES struct LDKCResult_NonePeerHandleErrorZ PeerManager_write_buffer_space_avail(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKSocketDescriptor *NONNULL_PTR descriptor);
8937         public static native long PeerManager_write_buffer_space_avail(long this_arg, long descriptor);
8938         // MUST_USE_RES struct LDKCResult_boolPeerHandleErrorZ PeerManager_read_event(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKSocketDescriptor *NONNULL_PTR peer_descriptor, struct LDKu8slice data);
8939         public static native long PeerManager_read_event(long this_arg, long peer_descriptor, byte[] data);
8940         // void PeerManager_process_events(const struct LDKPeerManager *NONNULL_PTR this_arg);
8941         public static native void PeerManager_process_events(long this_arg);
8942         // void PeerManager_socket_disconnected(const struct LDKPeerManager *NONNULL_PTR this_arg, const struct LDKSocketDescriptor *NONNULL_PTR descriptor);
8943         public static native void PeerManager_socket_disconnected(long this_arg, long descriptor);
8944         // void PeerManager_disconnect_by_node_id(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKPublicKey node_id);
8945         public static native void PeerManager_disconnect_by_node_id(long this_arg, byte[] node_id);
8946         // void PeerManager_disconnect_all_peers(const struct LDKPeerManager *NONNULL_PTR this_arg);
8947         public static native void PeerManager_disconnect_all_peers(long this_arg);
8948         // void PeerManager_timer_tick_occurred(const struct LDKPeerManager *NONNULL_PTR this_arg);
8949         public static native void PeerManager_timer_tick_occurred(long this_arg);
8950         // void PeerManager_broadcast_node_announcement(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKThreeBytes rgb, struct LDKThirtyTwoBytes alias, struct LDKCVec_SocketAddressZ addresses);
8951         public static native void PeerManager_broadcast_node_announcement(long this_arg, byte[] rgb, byte[] alias, long[] addresses);
8952         // uint64_t htlc_success_tx_weight(const struct LDKChannelTypeFeatures *NONNULL_PTR channel_type_features);
8953         public static native long htlc_success_tx_weight(long channel_type_features);
8954         // uint64_t htlc_timeout_tx_weight(const struct LDKChannelTypeFeatures *NONNULL_PTR channel_type_features);
8955         public static native long htlc_timeout_tx_weight(long channel_type_features);
8956         // enum LDKHTLCClaim HTLCClaim_clone(const enum LDKHTLCClaim *NONNULL_PTR orig);
8957         public static native HTLCClaim HTLCClaim_clone(long orig);
8958         // enum LDKHTLCClaim HTLCClaim_offered_timeout(void);
8959         public static native HTLCClaim HTLCClaim_offered_timeout();
8960         // enum LDKHTLCClaim HTLCClaim_offered_preimage(void);
8961         public static native HTLCClaim HTLCClaim_offered_preimage();
8962         // enum LDKHTLCClaim HTLCClaim_accepted_timeout(void);
8963         public static native HTLCClaim HTLCClaim_accepted_timeout();
8964         // enum LDKHTLCClaim HTLCClaim_accepted_preimage(void);
8965         public static native HTLCClaim HTLCClaim_accepted_preimage();
8966         // enum LDKHTLCClaim HTLCClaim_revocation(void);
8967         public static native HTLCClaim HTLCClaim_revocation();
8968         // bool HTLCClaim_eq(const enum LDKHTLCClaim *NONNULL_PTR a, const enum LDKHTLCClaim *NONNULL_PTR b);
8969         public static native boolean HTLCClaim_eq(long a, long b);
8970         // MUST_USE_RES struct LDKCOption_HTLCClaimZ HTLCClaim_from_witness(struct LDKWitness witness);
8971         public static native long HTLCClaim_from_witness(byte[] witness);
8972         // struct LDKThirtyTwoBytes build_commitment_secret(const uint8_t (*commitment_seed)[32], uint64_t idx);
8973         public static native byte[] build_commitment_secret(byte[] commitment_seed, long idx);
8974         // struct LDKTransaction build_closing_transaction(uint64_t to_holder_value_sat, uint64_t to_counterparty_value_sat, struct LDKCVec_u8Z to_holder_script, struct LDKCVec_u8Z to_counterparty_script, struct LDKOutPoint funding_outpoint);
8975         public static native byte[] build_closing_transaction(long to_holder_value_sat, long to_counterparty_value_sat, byte[] to_holder_script, byte[] to_counterparty_script, long funding_outpoint);
8976         // void CounterpartyCommitmentSecrets_free(struct LDKCounterpartyCommitmentSecrets this_obj);
8977         public static native void CounterpartyCommitmentSecrets_free(long this_obj);
8978         // uint64_t CounterpartyCommitmentSecrets_clone_ptr(LDKCounterpartyCommitmentSecrets *NONNULL_PTR arg);
8979         public static native long CounterpartyCommitmentSecrets_clone_ptr(long arg);
8980         // struct LDKCounterpartyCommitmentSecrets CounterpartyCommitmentSecrets_clone(const struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR orig);
8981         public static native long CounterpartyCommitmentSecrets_clone(long orig);
8982         // MUST_USE_RES struct LDKCounterpartyCommitmentSecrets CounterpartyCommitmentSecrets_new(void);
8983         public static native long CounterpartyCommitmentSecrets_new();
8984         // MUST_USE_RES uint64_t CounterpartyCommitmentSecrets_get_min_seen_secret(const struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR this_arg);
8985         public static native long CounterpartyCommitmentSecrets_get_min_seen_secret(long this_arg);
8986         // MUST_USE_RES struct LDKCResult_NoneNoneZ CounterpartyCommitmentSecrets_provide_secret(struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR this_arg, uint64_t idx, struct LDKThirtyTwoBytes secret);
8987         public static native long CounterpartyCommitmentSecrets_provide_secret(long this_arg, long idx, byte[] secret);
8988         // MUST_USE_RES struct LDKThirtyTwoBytes CounterpartyCommitmentSecrets_get_secret(const struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR this_arg, uint64_t idx);
8989         public static native byte[] CounterpartyCommitmentSecrets_get_secret(long this_arg, long idx);
8990         // struct LDKCVec_u8Z CounterpartyCommitmentSecrets_write(const struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR obj);
8991         public static native byte[] CounterpartyCommitmentSecrets_write(long obj);
8992         // struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ CounterpartyCommitmentSecrets_read(struct LDKu8slice ser);
8993         public static native long CounterpartyCommitmentSecrets_read(byte[] ser);
8994         // struct LDKSecretKey derive_private_key(struct LDKPublicKey per_commitment_point, const uint8_t (*base_secret)[32]);
8995         public static native byte[] derive_private_key(byte[] per_commitment_point, byte[] base_secret);
8996         // struct LDKPublicKey derive_public_key(struct LDKPublicKey per_commitment_point, struct LDKPublicKey base_point);
8997         public static native byte[] derive_public_key(byte[] per_commitment_point, byte[] base_point);
8998         // struct LDKSecretKey derive_private_revocation_key(const uint8_t (*per_commitment_secret)[32], const uint8_t (*countersignatory_revocation_base_secret)[32]);
8999         public static native byte[] derive_private_revocation_key(byte[] per_commitment_secret, byte[] countersignatory_revocation_base_secret);
9000         // struct LDKPublicKey derive_public_revocation_key(struct LDKPublicKey per_commitment_point, struct LDKPublicKey countersignatory_revocation_base_point);
9001         public static native byte[] derive_public_revocation_key(byte[] per_commitment_point, byte[] countersignatory_revocation_base_point);
9002         // void TxCreationKeys_free(struct LDKTxCreationKeys this_obj);
9003         public static native void TxCreationKeys_free(long this_obj);
9004         // struct LDKPublicKey TxCreationKeys_get_per_commitment_point(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
9005         public static native byte[] TxCreationKeys_get_per_commitment_point(long this_ptr);
9006         // void TxCreationKeys_set_per_commitment_point(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9007         public static native void TxCreationKeys_set_per_commitment_point(long this_ptr, byte[] val);
9008         // struct LDKPublicKey TxCreationKeys_get_revocation_key(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
9009         public static native byte[] TxCreationKeys_get_revocation_key(long this_ptr);
9010         // void TxCreationKeys_set_revocation_key(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9011         public static native void TxCreationKeys_set_revocation_key(long this_ptr, byte[] val);
9012         // struct LDKPublicKey TxCreationKeys_get_broadcaster_htlc_key(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
9013         public static native byte[] TxCreationKeys_get_broadcaster_htlc_key(long this_ptr);
9014         // void TxCreationKeys_set_broadcaster_htlc_key(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9015         public static native void TxCreationKeys_set_broadcaster_htlc_key(long this_ptr, byte[] val);
9016         // struct LDKPublicKey TxCreationKeys_get_countersignatory_htlc_key(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
9017         public static native byte[] TxCreationKeys_get_countersignatory_htlc_key(long this_ptr);
9018         // void TxCreationKeys_set_countersignatory_htlc_key(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9019         public static native void TxCreationKeys_set_countersignatory_htlc_key(long this_ptr, byte[] val);
9020         // struct LDKPublicKey TxCreationKeys_get_broadcaster_delayed_payment_key(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
9021         public static native byte[] TxCreationKeys_get_broadcaster_delayed_payment_key(long this_ptr);
9022         // void TxCreationKeys_set_broadcaster_delayed_payment_key(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9023         public static native void TxCreationKeys_set_broadcaster_delayed_payment_key(long this_ptr, byte[] val);
9024         // MUST_USE_RES struct LDKTxCreationKeys TxCreationKeys_new(struct LDKPublicKey per_commitment_point_arg, struct LDKPublicKey revocation_key_arg, struct LDKPublicKey broadcaster_htlc_key_arg, struct LDKPublicKey countersignatory_htlc_key_arg, struct LDKPublicKey broadcaster_delayed_payment_key_arg);
9025         public static native long TxCreationKeys_new(byte[] per_commitment_point_arg, byte[] revocation_key_arg, byte[] broadcaster_htlc_key_arg, byte[] countersignatory_htlc_key_arg, byte[] broadcaster_delayed_payment_key_arg);
9026         // bool TxCreationKeys_eq(const struct LDKTxCreationKeys *NONNULL_PTR a, const struct LDKTxCreationKeys *NONNULL_PTR b);
9027         public static native boolean TxCreationKeys_eq(long a, long b);
9028         // uint64_t TxCreationKeys_clone_ptr(LDKTxCreationKeys *NONNULL_PTR arg);
9029         public static native long TxCreationKeys_clone_ptr(long arg);
9030         // struct LDKTxCreationKeys TxCreationKeys_clone(const struct LDKTxCreationKeys *NONNULL_PTR orig);
9031         public static native long TxCreationKeys_clone(long orig);
9032         // struct LDKCVec_u8Z TxCreationKeys_write(const struct LDKTxCreationKeys *NONNULL_PTR obj);
9033         public static native byte[] TxCreationKeys_write(long obj);
9034         // struct LDKCResult_TxCreationKeysDecodeErrorZ TxCreationKeys_read(struct LDKu8slice ser);
9035         public static native long TxCreationKeys_read(byte[] ser);
9036         // void ChannelPublicKeys_free(struct LDKChannelPublicKeys this_obj);
9037         public static native void ChannelPublicKeys_free(long this_obj);
9038         // struct LDKPublicKey ChannelPublicKeys_get_funding_pubkey(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
9039         public static native byte[] ChannelPublicKeys_get_funding_pubkey(long this_ptr);
9040         // void ChannelPublicKeys_set_funding_pubkey(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9041         public static native void ChannelPublicKeys_set_funding_pubkey(long this_ptr, byte[] val);
9042         // struct LDKPublicKey ChannelPublicKeys_get_revocation_basepoint(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
9043         public static native byte[] ChannelPublicKeys_get_revocation_basepoint(long this_ptr);
9044         // void ChannelPublicKeys_set_revocation_basepoint(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9045         public static native void ChannelPublicKeys_set_revocation_basepoint(long this_ptr, byte[] val);
9046         // struct LDKPublicKey ChannelPublicKeys_get_payment_point(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
9047         public static native byte[] ChannelPublicKeys_get_payment_point(long this_ptr);
9048         // void ChannelPublicKeys_set_payment_point(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9049         public static native void ChannelPublicKeys_set_payment_point(long this_ptr, byte[] val);
9050         // struct LDKPublicKey ChannelPublicKeys_get_delayed_payment_basepoint(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
9051         public static native byte[] ChannelPublicKeys_get_delayed_payment_basepoint(long this_ptr);
9052         // void ChannelPublicKeys_set_delayed_payment_basepoint(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9053         public static native void ChannelPublicKeys_set_delayed_payment_basepoint(long this_ptr, byte[] val);
9054         // struct LDKPublicKey ChannelPublicKeys_get_htlc_basepoint(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
9055         public static native byte[] ChannelPublicKeys_get_htlc_basepoint(long this_ptr);
9056         // void ChannelPublicKeys_set_htlc_basepoint(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
9057         public static native void ChannelPublicKeys_set_htlc_basepoint(long this_ptr, byte[] val);
9058         // MUST_USE_RES struct LDKChannelPublicKeys ChannelPublicKeys_new(struct LDKPublicKey funding_pubkey_arg, struct LDKPublicKey revocation_basepoint_arg, struct LDKPublicKey payment_point_arg, struct LDKPublicKey delayed_payment_basepoint_arg, struct LDKPublicKey htlc_basepoint_arg);
9059         public static native long ChannelPublicKeys_new(byte[] funding_pubkey_arg, byte[] revocation_basepoint_arg, byte[] payment_point_arg, byte[] delayed_payment_basepoint_arg, byte[] htlc_basepoint_arg);
9060         // uint64_t ChannelPublicKeys_clone_ptr(LDKChannelPublicKeys *NONNULL_PTR arg);
9061         public static native long ChannelPublicKeys_clone_ptr(long arg);
9062         // struct LDKChannelPublicKeys ChannelPublicKeys_clone(const struct LDKChannelPublicKeys *NONNULL_PTR orig);
9063         public static native long ChannelPublicKeys_clone(long orig);
9064         // uint64_t ChannelPublicKeys_hash(const struct LDKChannelPublicKeys *NONNULL_PTR o);
9065         public static native long ChannelPublicKeys_hash(long o);
9066         // bool ChannelPublicKeys_eq(const struct LDKChannelPublicKeys *NONNULL_PTR a, const struct LDKChannelPublicKeys *NONNULL_PTR b);
9067         public static native boolean ChannelPublicKeys_eq(long a, long b);
9068         // struct LDKCVec_u8Z ChannelPublicKeys_write(const struct LDKChannelPublicKeys *NONNULL_PTR obj);
9069         public static native byte[] ChannelPublicKeys_write(long obj);
9070         // struct LDKCResult_ChannelPublicKeysDecodeErrorZ ChannelPublicKeys_read(struct LDKu8slice ser);
9071         public static native long ChannelPublicKeys_read(byte[] ser);
9072         // MUST_USE_RES struct LDKTxCreationKeys TxCreationKeys_derive_new(struct LDKPublicKey per_commitment_point, struct LDKPublicKey broadcaster_delayed_payment_base, struct LDKPublicKey broadcaster_htlc_base, struct LDKPublicKey countersignatory_revocation_base, struct LDKPublicKey countersignatory_htlc_base);
9073         public static native long TxCreationKeys_derive_new(byte[] per_commitment_point, byte[] broadcaster_delayed_payment_base, byte[] broadcaster_htlc_base, byte[] countersignatory_revocation_base, byte[] countersignatory_htlc_base);
9074         // MUST_USE_RES struct LDKTxCreationKeys TxCreationKeys_from_channel_static_keys(struct LDKPublicKey per_commitment_point, const struct LDKChannelPublicKeys *NONNULL_PTR broadcaster_keys, const struct LDKChannelPublicKeys *NONNULL_PTR countersignatory_keys);
9075         public static native long TxCreationKeys_from_channel_static_keys(byte[] per_commitment_point, long broadcaster_keys, long countersignatory_keys);
9076         // struct LDKCVec_u8Z get_revokeable_redeemscript(struct LDKPublicKey revocation_key, uint16_t contest_delay, struct LDKPublicKey broadcaster_delayed_payment_key);
9077         public static native byte[] get_revokeable_redeemscript(byte[] revocation_key, short contest_delay, byte[] broadcaster_delayed_payment_key);
9078         // struct LDKCVec_u8Z get_counterparty_payment_script(const struct LDKChannelTypeFeatures *NONNULL_PTR channel_type_features, struct LDKPublicKey payment_key);
9079         public static native byte[] get_counterparty_payment_script(long channel_type_features, byte[] payment_key);
9080         // void HTLCOutputInCommitment_free(struct LDKHTLCOutputInCommitment this_obj);
9081         public static native void HTLCOutputInCommitment_free(long this_obj);
9082         // bool HTLCOutputInCommitment_get_offered(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr);
9083         public static native boolean HTLCOutputInCommitment_get_offered(long this_ptr);
9084         // void HTLCOutputInCommitment_set_offered(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, bool val);
9085         public static native void HTLCOutputInCommitment_set_offered(long this_ptr, boolean val);
9086         // uint64_t HTLCOutputInCommitment_get_amount_msat(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr);
9087         public static native long HTLCOutputInCommitment_get_amount_msat(long this_ptr);
9088         // void HTLCOutputInCommitment_set_amount_msat(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, uint64_t val);
9089         public static native void HTLCOutputInCommitment_set_amount_msat(long this_ptr, long val);
9090         // uint32_t HTLCOutputInCommitment_get_cltv_expiry(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr);
9091         public static native int HTLCOutputInCommitment_get_cltv_expiry(long this_ptr);
9092         // void HTLCOutputInCommitment_set_cltv_expiry(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, uint32_t val);
9093         public static native void HTLCOutputInCommitment_set_cltv_expiry(long this_ptr, int val);
9094         // const uint8_t (*HTLCOutputInCommitment_get_payment_hash(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr))[32];
9095         public static native byte[] HTLCOutputInCommitment_get_payment_hash(long this_ptr);
9096         // void HTLCOutputInCommitment_set_payment_hash(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
9097         public static native void HTLCOutputInCommitment_set_payment_hash(long this_ptr, byte[] val);
9098         // struct LDKCOption_u32Z HTLCOutputInCommitment_get_transaction_output_index(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr);
9099         public static native long HTLCOutputInCommitment_get_transaction_output_index(long this_ptr);
9100         // void HTLCOutputInCommitment_set_transaction_output_index(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, struct LDKCOption_u32Z val);
9101         public static native void HTLCOutputInCommitment_set_transaction_output_index(long this_ptr, long val);
9102         // MUST_USE_RES struct LDKHTLCOutputInCommitment HTLCOutputInCommitment_new(bool offered_arg, uint64_t amount_msat_arg, uint32_t cltv_expiry_arg, struct LDKThirtyTwoBytes payment_hash_arg, struct LDKCOption_u32Z transaction_output_index_arg);
9103         public static native long HTLCOutputInCommitment_new(boolean offered_arg, long amount_msat_arg, int cltv_expiry_arg, byte[] payment_hash_arg, long transaction_output_index_arg);
9104         // uint64_t HTLCOutputInCommitment_clone_ptr(LDKHTLCOutputInCommitment *NONNULL_PTR arg);
9105         public static native long HTLCOutputInCommitment_clone_ptr(long arg);
9106         // struct LDKHTLCOutputInCommitment HTLCOutputInCommitment_clone(const struct LDKHTLCOutputInCommitment *NONNULL_PTR orig);
9107         public static native long HTLCOutputInCommitment_clone(long orig);
9108         // bool HTLCOutputInCommitment_eq(const struct LDKHTLCOutputInCommitment *NONNULL_PTR a, const struct LDKHTLCOutputInCommitment *NONNULL_PTR b);
9109         public static native boolean HTLCOutputInCommitment_eq(long a, long b);
9110         // struct LDKCVec_u8Z HTLCOutputInCommitment_write(const struct LDKHTLCOutputInCommitment *NONNULL_PTR obj);
9111         public static native byte[] HTLCOutputInCommitment_write(long obj);
9112         // struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ HTLCOutputInCommitment_read(struct LDKu8slice ser);
9113         public static native long HTLCOutputInCommitment_read(byte[] ser);
9114         // struct LDKCVec_u8Z get_htlc_redeemscript(const struct LDKHTLCOutputInCommitment *NONNULL_PTR htlc, const struct LDKChannelTypeFeatures *NONNULL_PTR channel_type_features, const struct LDKTxCreationKeys *NONNULL_PTR keys);
9115         public static native byte[] get_htlc_redeemscript(long htlc, long channel_type_features, long keys);
9116         // struct LDKCVec_u8Z make_funding_redeemscript(struct LDKPublicKey broadcaster, struct LDKPublicKey countersignatory);
9117         public static native byte[] make_funding_redeemscript(byte[] broadcaster, byte[] countersignatory);
9118         // struct LDKTransaction build_htlc_transaction(const uint8_t (*commitment_txid)[32], uint32_t feerate_per_kw, uint16_t contest_delay, const struct LDKHTLCOutputInCommitment *NONNULL_PTR htlc, const struct LDKChannelTypeFeatures *NONNULL_PTR channel_type_features, struct LDKPublicKey broadcaster_delayed_payment_key, struct LDKPublicKey revocation_key);
9119         public static native byte[] build_htlc_transaction(byte[] commitment_txid, int feerate_per_kw, short contest_delay, long htlc, long channel_type_features, byte[] broadcaster_delayed_payment_key, byte[] revocation_key);
9120         // struct LDKWitness build_htlc_input_witness(struct LDKECDSASignature local_sig, struct LDKECDSASignature remote_sig, struct LDKCOption_ThirtyTwoBytesZ preimage, struct LDKu8slice redeem_script, const struct LDKChannelTypeFeatures *NONNULL_PTR channel_type_features);
9121         public static native byte[] build_htlc_input_witness(byte[] local_sig, byte[] remote_sig, long preimage, byte[] redeem_script, long channel_type_features);
9122         // struct LDKCVec_u8Z get_to_countersignatory_with_anchors_redeemscript(struct LDKPublicKey payment_point);
9123         public static native byte[] get_to_countersignatory_with_anchors_redeemscript(byte[] payment_point);
9124         // struct LDKCVec_u8Z get_anchor_redeemscript(struct LDKPublicKey funding_pubkey);
9125         public static native byte[] get_anchor_redeemscript(byte[] funding_pubkey);
9126         // struct LDKWitness build_anchor_input_witness(struct LDKPublicKey funding_key, struct LDKECDSASignature funding_sig);
9127         public static native byte[] build_anchor_input_witness(byte[] funding_key, byte[] funding_sig);
9128         // void ChannelTransactionParameters_free(struct LDKChannelTransactionParameters this_obj);
9129         public static native void ChannelTransactionParameters_free(long this_obj);
9130         // struct LDKChannelPublicKeys ChannelTransactionParameters_get_holder_pubkeys(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
9131         public static native long ChannelTransactionParameters_get_holder_pubkeys(long this_ptr);
9132         // void ChannelTransactionParameters_set_holder_pubkeys(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, struct LDKChannelPublicKeys val);
9133         public static native void ChannelTransactionParameters_set_holder_pubkeys(long this_ptr, long val);
9134         // uint16_t ChannelTransactionParameters_get_holder_selected_contest_delay(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
9135         public static native short ChannelTransactionParameters_get_holder_selected_contest_delay(long this_ptr);
9136         // void ChannelTransactionParameters_set_holder_selected_contest_delay(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, uint16_t val);
9137         public static native void ChannelTransactionParameters_set_holder_selected_contest_delay(long this_ptr, short val);
9138         // bool ChannelTransactionParameters_get_is_outbound_from_holder(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
9139         public static native boolean ChannelTransactionParameters_get_is_outbound_from_holder(long this_ptr);
9140         // void ChannelTransactionParameters_set_is_outbound_from_holder(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, bool val);
9141         public static native void ChannelTransactionParameters_set_is_outbound_from_holder(long this_ptr, boolean val);
9142         // struct LDKCounterpartyChannelTransactionParameters ChannelTransactionParameters_get_counterparty_parameters(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
9143         public static native long ChannelTransactionParameters_get_counterparty_parameters(long this_ptr);
9144         // void ChannelTransactionParameters_set_counterparty_parameters(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, struct LDKCounterpartyChannelTransactionParameters val);
9145         public static native void ChannelTransactionParameters_set_counterparty_parameters(long this_ptr, long val);
9146         // struct LDKOutPoint ChannelTransactionParameters_get_funding_outpoint(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
9147         public static native long ChannelTransactionParameters_get_funding_outpoint(long this_ptr);
9148         // void ChannelTransactionParameters_set_funding_outpoint(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, struct LDKOutPoint val);
9149         public static native void ChannelTransactionParameters_set_funding_outpoint(long this_ptr, long val);
9150         // struct LDKChannelTypeFeatures ChannelTransactionParameters_get_channel_type_features(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
9151         public static native long ChannelTransactionParameters_get_channel_type_features(long this_ptr);
9152         // void ChannelTransactionParameters_set_channel_type_features(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, struct LDKChannelTypeFeatures val);
9153         public static native void ChannelTransactionParameters_set_channel_type_features(long this_ptr, long val);
9154         // MUST_USE_RES struct LDKChannelTransactionParameters ChannelTransactionParameters_new(struct LDKChannelPublicKeys holder_pubkeys_arg, uint16_t holder_selected_contest_delay_arg, bool is_outbound_from_holder_arg, struct LDKCounterpartyChannelTransactionParameters counterparty_parameters_arg, struct LDKOutPoint funding_outpoint_arg, struct LDKChannelTypeFeatures channel_type_features_arg);
9155         public static native long ChannelTransactionParameters_new(long holder_pubkeys_arg, short holder_selected_contest_delay_arg, boolean is_outbound_from_holder_arg, long counterparty_parameters_arg, long funding_outpoint_arg, long channel_type_features_arg);
9156         // uint64_t ChannelTransactionParameters_clone_ptr(LDKChannelTransactionParameters *NONNULL_PTR arg);
9157         public static native long ChannelTransactionParameters_clone_ptr(long arg);
9158         // struct LDKChannelTransactionParameters ChannelTransactionParameters_clone(const struct LDKChannelTransactionParameters *NONNULL_PTR orig);
9159         public static native long ChannelTransactionParameters_clone(long orig);
9160         // uint64_t ChannelTransactionParameters_hash(const struct LDKChannelTransactionParameters *NONNULL_PTR o);
9161         public static native long ChannelTransactionParameters_hash(long o);
9162         // bool ChannelTransactionParameters_eq(const struct LDKChannelTransactionParameters *NONNULL_PTR a, const struct LDKChannelTransactionParameters *NONNULL_PTR b);
9163         public static native boolean ChannelTransactionParameters_eq(long a, long b);
9164         // void CounterpartyChannelTransactionParameters_free(struct LDKCounterpartyChannelTransactionParameters this_obj);
9165         public static native void CounterpartyChannelTransactionParameters_free(long this_obj);
9166         // struct LDKChannelPublicKeys CounterpartyChannelTransactionParameters_get_pubkeys(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR this_ptr);
9167         public static native long CounterpartyChannelTransactionParameters_get_pubkeys(long this_ptr);
9168         // void CounterpartyChannelTransactionParameters_set_pubkeys(struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR this_ptr, struct LDKChannelPublicKeys val);
9169         public static native void CounterpartyChannelTransactionParameters_set_pubkeys(long this_ptr, long val);
9170         // uint16_t CounterpartyChannelTransactionParameters_get_selected_contest_delay(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR this_ptr);
9171         public static native short CounterpartyChannelTransactionParameters_get_selected_contest_delay(long this_ptr);
9172         // void CounterpartyChannelTransactionParameters_set_selected_contest_delay(struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR this_ptr, uint16_t val);
9173         public static native void CounterpartyChannelTransactionParameters_set_selected_contest_delay(long this_ptr, short val);
9174         // MUST_USE_RES struct LDKCounterpartyChannelTransactionParameters CounterpartyChannelTransactionParameters_new(struct LDKChannelPublicKeys pubkeys_arg, uint16_t selected_contest_delay_arg);
9175         public static native long CounterpartyChannelTransactionParameters_new(long pubkeys_arg, short selected_contest_delay_arg);
9176         // uint64_t CounterpartyChannelTransactionParameters_clone_ptr(LDKCounterpartyChannelTransactionParameters *NONNULL_PTR arg);
9177         public static native long CounterpartyChannelTransactionParameters_clone_ptr(long arg);
9178         // struct LDKCounterpartyChannelTransactionParameters CounterpartyChannelTransactionParameters_clone(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR orig);
9179         public static native long CounterpartyChannelTransactionParameters_clone(long orig);
9180         // uint64_t CounterpartyChannelTransactionParameters_hash(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR o);
9181         public static native long CounterpartyChannelTransactionParameters_hash(long o);
9182         // bool CounterpartyChannelTransactionParameters_eq(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR a, const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR b);
9183         public static native boolean CounterpartyChannelTransactionParameters_eq(long a, long b);
9184         // MUST_USE_RES bool ChannelTransactionParameters_is_populated(const struct LDKChannelTransactionParameters *NONNULL_PTR this_arg);
9185         public static native boolean ChannelTransactionParameters_is_populated(long this_arg);
9186         // MUST_USE_RES struct LDKDirectedChannelTransactionParameters ChannelTransactionParameters_as_holder_broadcastable(const struct LDKChannelTransactionParameters *NONNULL_PTR this_arg);
9187         public static native long ChannelTransactionParameters_as_holder_broadcastable(long this_arg);
9188         // MUST_USE_RES struct LDKDirectedChannelTransactionParameters ChannelTransactionParameters_as_counterparty_broadcastable(const struct LDKChannelTransactionParameters *NONNULL_PTR this_arg);
9189         public static native long ChannelTransactionParameters_as_counterparty_broadcastable(long this_arg);
9190         // struct LDKCVec_u8Z CounterpartyChannelTransactionParameters_write(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR obj);
9191         public static native byte[] CounterpartyChannelTransactionParameters_write(long obj);
9192         // struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ CounterpartyChannelTransactionParameters_read(struct LDKu8slice ser);
9193         public static native long CounterpartyChannelTransactionParameters_read(byte[] ser);
9194         // struct LDKCVec_u8Z ChannelTransactionParameters_write(const struct LDKChannelTransactionParameters *NONNULL_PTR obj);
9195         public static native byte[] ChannelTransactionParameters_write(long obj);
9196         // struct LDKCResult_ChannelTransactionParametersDecodeErrorZ ChannelTransactionParameters_read(struct LDKu8slice ser);
9197         public static native long ChannelTransactionParameters_read(byte[] ser);
9198         // void DirectedChannelTransactionParameters_free(struct LDKDirectedChannelTransactionParameters this_obj);
9199         public static native void DirectedChannelTransactionParameters_free(long this_obj);
9200         // MUST_USE_RES struct LDKChannelPublicKeys DirectedChannelTransactionParameters_broadcaster_pubkeys(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
9201         public static native long DirectedChannelTransactionParameters_broadcaster_pubkeys(long this_arg);
9202         // MUST_USE_RES struct LDKChannelPublicKeys DirectedChannelTransactionParameters_countersignatory_pubkeys(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
9203         public static native long DirectedChannelTransactionParameters_countersignatory_pubkeys(long this_arg);
9204         // MUST_USE_RES uint16_t DirectedChannelTransactionParameters_contest_delay(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
9205         public static native short DirectedChannelTransactionParameters_contest_delay(long this_arg);
9206         // MUST_USE_RES bool DirectedChannelTransactionParameters_is_outbound(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
9207         public static native boolean DirectedChannelTransactionParameters_is_outbound(long this_arg);
9208         // MUST_USE_RES struct LDKOutPoint DirectedChannelTransactionParameters_funding_outpoint(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
9209         public static native long DirectedChannelTransactionParameters_funding_outpoint(long this_arg);
9210         // MUST_USE_RES struct LDKChannelTypeFeatures DirectedChannelTransactionParameters_channel_type_features(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
9211         public static native long DirectedChannelTransactionParameters_channel_type_features(long this_arg);
9212         // void HolderCommitmentTransaction_free(struct LDKHolderCommitmentTransaction this_obj);
9213         public static native void HolderCommitmentTransaction_free(long this_obj);
9214         // struct LDKECDSASignature HolderCommitmentTransaction_get_counterparty_sig(const struct LDKHolderCommitmentTransaction *NONNULL_PTR this_ptr);
9215         public static native byte[] HolderCommitmentTransaction_get_counterparty_sig(long this_ptr);
9216         // void HolderCommitmentTransaction_set_counterparty_sig(struct LDKHolderCommitmentTransaction *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
9217         public static native void HolderCommitmentTransaction_set_counterparty_sig(long this_ptr, byte[] val);
9218         // struct LDKCVec_ECDSASignatureZ HolderCommitmentTransaction_get_counterparty_htlc_sigs(const struct LDKHolderCommitmentTransaction *NONNULL_PTR this_ptr);
9219         public static native byte[][] HolderCommitmentTransaction_get_counterparty_htlc_sigs(long this_ptr);
9220         // void HolderCommitmentTransaction_set_counterparty_htlc_sigs(struct LDKHolderCommitmentTransaction *NONNULL_PTR this_ptr, struct LDKCVec_ECDSASignatureZ val);
9221         public static native void HolderCommitmentTransaction_set_counterparty_htlc_sigs(long this_ptr, byte[][] val);
9222         // uint64_t HolderCommitmentTransaction_clone_ptr(LDKHolderCommitmentTransaction *NONNULL_PTR arg);
9223         public static native long HolderCommitmentTransaction_clone_ptr(long arg);
9224         // struct LDKHolderCommitmentTransaction HolderCommitmentTransaction_clone(const struct LDKHolderCommitmentTransaction *NONNULL_PTR orig);
9225         public static native long HolderCommitmentTransaction_clone(long orig);
9226         // struct LDKCVec_u8Z HolderCommitmentTransaction_write(const struct LDKHolderCommitmentTransaction *NONNULL_PTR obj);
9227         public static native byte[] HolderCommitmentTransaction_write(long obj);
9228         // struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ HolderCommitmentTransaction_read(struct LDKu8slice ser);
9229         public static native long HolderCommitmentTransaction_read(byte[] ser);
9230         // MUST_USE_RES struct LDKHolderCommitmentTransaction HolderCommitmentTransaction_new(struct LDKCommitmentTransaction commitment_tx, struct LDKECDSASignature counterparty_sig, struct LDKCVec_ECDSASignatureZ counterparty_htlc_sigs, struct LDKPublicKey holder_funding_key, struct LDKPublicKey counterparty_funding_key);
9231         public static native long HolderCommitmentTransaction_new(long commitment_tx, byte[] counterparty_sig, byte[][] counterparty_htlc_sigs, byte[] holder_funding_key, byte[] counterparty_funding_key);
9232         // void BuiltCommitmentTransaction_free(struct LDKBuiltCommitmentTransaction this_obj);
9233         public static native void BuiltCommitmentTransaction_free(long this_obj);
9234         // struct LDKTransaction BuiltCommitmentTransaction_get_transaction(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_ptr);
9235         public static native byte[] BuiltCommitmentTransaction_get_transaction(long this_ptr);
9236         // void BuiltCommitmentTransaction_set_transaction(struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_ptr, struct LDKTransaction val);
9237         public static native void BuiltCommitmentTransaction_set_transaction(long this_ptr, byte[] val);
9238         // const uint8_t (*BuiltCommitmentTransaction_get_txid(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_ptr))[32];
9239         public static native byte[] BuiltCommitmentTransaction_get_txid(long this_ptr);
9240         // void BuiltCommitmentTransaction_set_txid(struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
9241         public static native void BuiltCommitmentTransaction_set_txid(long this_ptr, byte[] val);
9242         // MUST_USE_RES struct LDKBuiltCommitmentTransaction BuiltCommitmentTransaction_new(struct LDKTransaction transaction_arg, struct LDKThirtyTwoBytes txid_arg);
9243         public static native long BuiltCommitmentTransaction_new(byte[] transaction_arg, byte[] txid_arg);
9244         // uint64_t BuiltCommitmentTransaction_clone_ptr(LDKBuiltCommitmentTransaction *NONNULL_PTR arg);
9245         public static native long BuiltCommitmentTransaction_clone_ptr(long arg);
9246         // struct LDKBuiltCommitmentTransaction BuiltCommitmentTransaction_clone(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR orig);
9247         public static native long BuiltCommitmentTransaction_clone(long orig);
9248         // struct LDKCVec_u8Z BuiltCommitmentTransaction_write(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR obj);
9249         public static native byte[] BuiltCommitmentTransaction_write(long obj);
9250         // struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ BuiltCommitmentTransaction_read(struct LDKu8slice ser);
9251         public static native long BuiltCommitmentTransaction_read(byte[] ser);
9252         // MUST_USE_RES struct LDKThirtyTwoBytes BuiltCommitmentTransaction_get_sighash_all(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_arg, struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
9253         public static native byte[] BuiltCommitmentTransaction_get_sighash_all(long this_arg, byte[] funding_redeemscript, long channel_value_satoshis);
9254         // MUST_USE_RES struct LDKECDSASignature BuiltCommitmentTransaction_sign_counterparty_commitment(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_arg, const uint8_t (*funding_key)[32], struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
9255         public static native byte[] BuiltCommitmentTransaction_sign_counterparty_commitment(long this_arg, byte[] funding_key, byte[] funding_redeemscript, long channel_value_satoshis);
9256         // MUST_USE_RES struct LDKECDSASignature BuiltCommitmentTransaction_sign_holder_commitment(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_arg, const uint8_t (*funding_key)[32], struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis, const struct LDKEntropySource *NONNULL_PTR entropy_source);
9257         public static native byte[] BuiltCommitmentTransaction_sign_holder_commitment(long this_arg, byte[] funding_key, byte[] funding_redeemscript, long channel_value_satoshis, long entropy_source);
9258         // void ClosingTransaction_free(struct LDKClosingTransaction this_obj);
9259         public static native void ClosingTransaction_free(long this_obj);
9260         // uint64_t ClosingTransaction_clone_ptr(LDKClosingTransaction *NONNULL_PTR arg);
9261         public static native long ClosingTransaction_clone_ptr(long arg);
9262         // struct LDKClosingTransaction ClosingTransaction_clone(const struct LDKClosingTransaction *NONNULL_PTR orig);
9263         public static native long ClosingTransaction_clone(long orig);
9264         // uint64_t ClosingTransaction_hash(const struct LDKClosingTransaction *NONNULL_PTR o);
9265         public static native long ClosingTransaction_hash(long o);
9266         // bool ClosingTransaction_eq(const struct LDKClosingTransaction *NONNULL_PTR a, const struct LDKClosingTransaction *NONNULL_PTR b);
9267         public static native boolean ClosingTransaction_eq(long a, long b);
9268         // MUST_USE_RES struct LDKClosingTransaction ClosingTransaction_new(uint64_t to_holder_value_sat, uint64_t to_counterparty_value_sat, struct LDKCVec_u8Z to_holder_script, struct LDKCVec_u8Z to_counterparty_script, struct LDKOutPoint funding_outpoint);
9269         public static native long ClosingTransaction_new(long to_holder_value_sat, long to_counterparty_value_sat, byte[] to_holder_script, byte[] to_counterparty_script, long funding_outpoint);
9270         // MUST_USE_RES struct LDKTrustedClosingTransaction ClosingTransaction_trust(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
9271         public static native long ClosingTransaction_trust(long this_arg);
9272         // MUST_USE_RES struct LDKCResult_TrustedClosingTransactionNoneZ ClosingTransaction_verify(const struct LDKClosingTransaction *NONNULL_PTR this_arg, struct LDKOutPoint funding_outpoint);
9273         public static native long ClosingTransaction_verify(long this_arg, long funding_outpoint);
9274         // MUST_USE_RES uint64_t ClosingTransaction_to_holder_value_sat(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
9275         public static native long ClosingTransaction_to_holder_value_sat(long this_arg);
9276         // MUST_USE_RES uint64_t ClosingTransaction_to_counterparty_value_sat(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
9277         public static native long ClosingTransaction_to_counterparty_value_sat(long this_arg);
9278         // MUST_USE_RES struct LDKu8slice ClosingTransaction_to_holder_script(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
9279         public static native byte[] ClosingTransaction_to_holder_script(long this_arg);
9280         // MUST_USE_RES struct LDKu8slice ClosingTransaction_to_counterparty_script(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
9281         public static native byte[] ClosingTransaction_to_counterparty_script(long this_arg);
9282         // void TrustedClosingTransaction_free(struct LDKTrustedClosingTransaction this_obj);
9283         public static native void TrustedClosingTransaction_free(long this_obj);
9284         // MUST_USE_RES struct LDKTransaction TrustedClosingTransaction_built_transaction(const struct LDKTrustedClosingTransaction *NONNULL_PTR this_arg);
9285         public static native byte[] TrustedClosingTransaction_built_transaction(long this_arg);
9286         // MUST_USE_RES struct LDKThirtyTwoBytes TrustedClosingTransaction_get_sighash_all(const struct LDKTrustedClosingTransaction *NONNULL_PTR this_arg, struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
9287         public static native byte[] TrustedClosingTransaction_get_sighash_all(long this_arg, byte[] funding_redeemscript, long channel_value_satoshis);
9288         // MUST_USE_RES struct LDKECDSASignature TrustedClosingTransaction_sign(const struct LDKTrustedClosingTransaction *NONNULL_PTR this_arg, const uint8_t (*funding_key)[32], struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
9289         public static native byte[] TrustedClosingTransaction_sign(long this_arg, byte[] funding_key, byte[] funding_redeemscript, long channel_value_satoshis);
9290         // void CommitmentTransaction_free(struct LDKCommitmentTransaction this_obj);
9291         public static native void CommitmentTransaction_free(long this_obj);
9292         // uint64_t CommitmentTransaction_clone_ptr(LDKCommitmentTransaction *NONNULL_PTR arg);
9293         public static native long CommitmentTransaction_clone_ptr(long arg);
9294         // struct LDKCommitmentTransaction CommitmentTransaction_clone(const struct LDKCommitmentTransaction *NONNULL_PTR orig);
9295         public static native long CommitmentTransaction_clone(long orig);
9296         // struct LDKCVec_u8Z CommitmentTransaction_write(const struct LDKCommitmentTransaction *NONNULL_PTR obj);
9297         public static native byte[] CommitmentTransaction_write(long obj);
9298         // struct LDKCResult_CommitmentTransactionDecodeErrorZ CommitmentTransaction_read(struct LDKu8slice ser);
9299         public static native long CommitmentTransaction_read(byte[] ser);
9300         // MUST_USE_RES uint64_t CommitmentTransaction_commitment_number(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
9301         public static native long CommitmentTransaction_commitment_number(long this_arg);
9302         // MUST_USE_RES uint64_t CommitmentTransaction_to_broadcaster_value_sat(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
9303         public static native long CommitmentTransaction_to_broadcaster_value_sat(long this_arg);
9304         // MUST_USE_RES uint64_t CommitmentTransaction_to_countersignatory_value_sat(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
9305         public static native long CommitmentTransaction_to_countersignatory_value_sat(long this_arg);
9306         // MUST_USE_RES uint32_t CommitmentTransaction_feerate_per_kw(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
9307         public static native int CommitmentTransaction_feerate_per_kw(long this_arg);
9308         // MUST_USE_RES struct LDKTrustedCommitmentTransaction CommitmentTransaction_trust(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
9309         public static native long CommitmentTransaction_trust(long this_arg);
9310         // MUST_USE_RES struct LDKCResult_TrustedCommitmentTransactionNoneZ CommitmentTransaction_verify(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg, const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR channel_parameters, const struct LDKChannelPublicKeys *NONNULL_PTR broadcaster_keys, const struct LDKChannelPublicKeys *NONNULL_PTR countersignatory_keys);
9311         public static native long CommitmentTransaction_verify(long this_arg, long channel_parameters, long broadcaster_keys, long countersignatory_keys);
9312         // void TrustedCommitmentTransaction_free(struct LDKTrustedCommitmentTransaction this_obj);
9313         public static native void TrustedCommitmentTransaction_free(long this_obj);
9314         // MUST_USE_RES struct LDKThirtyTwoBytes TrustedCommitmentTransaction_txid(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg);
9315         public static native byte[] TrustedCommitmentTransaction_txid(long this_arg);
9316         // MUST_USE_RES struct LDKBuiltCommitmentTransaction TrustedCommitmentTransaction_built_transaction(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg);
9317         public static native long TrustedCommitmentTransaction_built_transaction(long this_arg);
9318         // MUST_USE_RES struct LDKTxCreationKeys TrustedCommitmentTransaction_keys(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg);
9319         public static native long TrustedCommitmentTransaction_keys(long this_arg);
9320         // MUST_USE_RES struct LDKChannelTypeFeatures TrustedCommitmentTransaction_channel_type_features(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg);
9321         public static native long TrustedCommitmentTransaction_channel_type_features(long this_arg);
9322         // MUST_USE_RES struct LDKCResult_CVec_ECDSASignatureZNoneZ TrustedCommitmentTransaction_get_htlc_sigs(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg, const uint8_t (*htlc_base_key)[32], const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR channel_parameters, const struct LDKEntropySource *NONNULL_PTR entropy_source);
9323         public static native long TrustedCommitmentTransaction_get_htlc_sigs(long this_arg, byte[] htlc_base_key, long channel_parameters, long entropy_source);
9324         // MUST_USE_RES struct LDKCOption_usizeZ TrustedCommitmentTransaction_revokeable_output_index(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg);
9325         public static native long TrustedCommitmentTransaction_revokeable_output_index(long this_arg);
9326         // MUST_USE_RES struct LDKCResult_TransactionNoneZ TrustedCommitmentTransaction_build_to_local_justice_tx(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg, uint64_t feerate_per_kw, struct LDKCVec_u8Z destination_script);
9327         public static native long TrustedCommitmentTransaction_build_to_local_justice_tx(long this_arg, long feerate_per_kw, byte[] destination_script);
9328         // uint64_t get_commitment_transaction_number_obscure_factor(struct LDKPublicKey broadcaster_payment_basepoint, struct LDKPublicKey countersignatory_payment_basepoint, bool outbound_from_broadcaster);
9329         public static native long get_commitment_transaction_number_obscure_factor(byte[] broadcaster_payment_basepoint, byte[] countersignatory_payment_basepoint, boolean outbound_from_broadcaster);
9330         // bool InitFeatures_eq(const struct LDKInitFeatures *NONNULL_PTR a, const struct LDKInitFeatures *NONNULL_PTR b);
9331         public static native boolean InitFeatures_eq(long a, long b);
9332         // bool NodeFeatures_eq(const struct LDKNodeFeatures *NONNULL_PTR a, const struct LDKNodeFeatures *NONNULL_PTR b);
9333         public static native boolean NodeFeatures_eq(long a, long b);
9334         // bool ChannelFeatures_eq(const struct LDKChannelFeatures *NONNULL_PTR a, const struct LDKChannelFeatures *NONNULL_PTR b);
9335         public static native boolean ChannelFeatures_eq(long a, long b);
9336         // bool Bolt11InvoiceFeatures_eq(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR a, const struct LDKBolt11InvoiceFeatures *NONNULL_PTR b);
9337         public static native boolean Bolt11InvoiceFeatures_eq(long a, long b);
9338         // bool OfferFeatures_eq(const struct LDKOfferFeatures *NONNULL_PTR a, const struct LDKOfferFeatures *NONNULL_PTR b);
9339         public static native boolean OfferFeatures_eq(long a, long b);
9340         // bool InvoiceRequestFeatures_eq(const struct LDKInvoiceRequestFeatures *NONNULL_PTR a, const struct LDKInvoiceRequestFeatures *NONNULL_PTR b);
9341         public static native boolean InvoiceRequestFeatures_eq(long a, long b);
9342         // bool Bolt12InvoiceFeatures_eq(const struct LDKBolt12InvoiceFeatures *NONNULL_PTR a, const struct LDKBolt12InvoiceFeatures *NONNULL_PTR b);
9343         public static native boolean Bolt12InvoiceFeatures_eq(long a, long b);
9344         // bool BlindedHopFeatures_eq(const struct LDKBlindedHopFeatures *NONNULL_PTR a, const struct LDKBlindedHopFeatures *NONNULL_PTR b);
9345         public static native boolean BlindedHopFeatures_eq(long a, long b);
9346         // bool ChannelTypeFeatures_eq(const struct LDKChannelTypeFeatures *NONNULL_PTR a, const struct LDKChannelTypeFeatures *NONNULL_PTR b);
9347         public static native boolean ChannelTypeFeatures_eq(long a, long b);
9348         // uint64_t InitFeatures_clone_ptr(LDKInitFeatures *NONNULL_PTR arg);
9349         public static native long InitFeatures_clone_ptr(long arg);
9350         // struct LDKInitFeatures InitFeatures_clone(const struct LDKInitFeatures *NONNULL_PTR orig);
9351         public static native long InitFeatures_clone(long orig);
9352         // uint64_t NodeFeatures_clone_ptr(LDKNodeFeatures *NONNULL_PTR arg);
9353         public static native long NodeFeatures_clone_ptr(long arg);
9354         // struct LDKNodeFeatures NodeFeatures_clone(const struct LDKNodeFeatures *NONNULL_PTR orig);
9355         public static native long NodeFeatures_clone(long orig);
9356         // uint64_t ChannelFeatures_clone_ptr(LDKChannelFeatures *NONNULL_PTR arg);
9357         public static native long ChannelFeatures_clone_ptr(long arg);
9358         // struct LDKChannelFeatures ChannelFeatures_clone(const struct LDKChannelFeatures *NONNULL_PTR orig);
9359         public static native long ChannelFeatures_clone(long orig);
9360         // uint64_t Bolt11InvoiceFeatures_clone_ptr(LDKBolt11InvoiceFeatures *NONNULL_PTR arg);
9361         public static native long Bolt11InvoiceFeatures_clone_ptr(long arg);
9362         // struct LDKBolt11InvoiceFeatures Bolt11InvoiceFeatures_clone(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR orig);
9363         public static native long Bolt11InvoiceFeatures_clone(long orig);
9364         // uint64_t OfferFeatures_clone_ptr(LDKOfferFeatures *NONNULL_PTR arg);
9365         public static native long OfferFeatures_clone_ptr(long arg);
9366         // struct LDKOfferFeatures OfferFeatures_clone(const struct LDKOfferFeatures *NONNULL_PTR orig);
9367         public static native long OfferFeatures_clone(long orig);
9368         // uint64_t InvoiceRequestFeatures_clone_ptr(LDKInvoiceRequestFeatures *NONNULL_PTR arg);
9369         public static native long InvoiceRequestFeatures_clone_ptr(long arg);
9370         // struct LDKInvoiceRequestFeatures InvoiceRequestFeatures_clone(const struct LDKInvoiceRequestFeatures *NONNULL_PTR orig);
9371         public static native long InvoiceRequestFeatures_clone(long orig);
9372         // uint64_t Bolt12InvoiceFeatures_clone_ptr(LDKBolt12InvoiceFeatures *NONNULL_PTR arg);
9373         public static native long Bolt12InvoiceFeatures_clone_ptr(long arg);
9374         // struct LDKBolt12InvoiceFeatures Bolt12InvoiceFeatures_clone(const struct LDKBolt12InvoiceFeatures *NONNULL_PTR orig);
9375         public static native long Bolt12InvoiceFeatures_clone(long orig);
9376         // uint64_t BlindedHopFeatures_clone_ptr(LDKBlindedHopFeatures *NONNULL_PTR arg);
9377         public static native long BlindedHopFeatures_clone_ptr(long arg);
9378         // struct LDKBlindedHopFeatures BlindedHopFeatures_clone(const struct LDKBlindedHopFeatures *NONNULL_PTR orig);
9379         public static native long BlindedHopFeatures_clone(long orig);
9380         // uint64_t ChannelTypeFeatures_clone_ptr(LDKChannelTypeFeatures *NONNULL_PTR arg);
9381         public static native long ChannelTypeFeatures_clone_ptr(long arg);
9382         // struct LDKChannelTypeFeatures ChannelTypeFeatures_clone(const struct LDKChannelTypeFeatures *NONNULL_PTR orig);
9383         public static native long ChannelTypeFeatures_clone(long orig);
9384         // void InitFeatures_free(struct LDKInitFeatures this_obj);
9385         public static native void InitFeatures_free(long this_obj);
9386         // void NodeFeatures_free(struct LDKNodeFeatures this_obj);
9387         public static native void NodeFeatures_free(long this_obj);
9388         // void ChannelFeatures_free(struct LDKChannelFeatures this_obj);
9389         public static native void ChannelFeatures_free(long this_obj);
9390         // void Bolt11InvoiceFeatures_free(struct LDKBolt11InvoiceFeatures this_obj);
9391         public static native void Bolt11InvoiceFeatures_free(long this_obj);
9392         // void OfferFeatures_free(struct LDKOfferFeatures this_obj);
9393         public static native void OfferFeatures_free(long this_obj);
9394         // void InvoiceRequestFeatures_free(struct LDKInvoiceRequestFeatures this_obj);
9395         public static native void InvoiceRequestFeatures_free(long this_obj);
9396         // void Bolt12InvoiceFeatures_free(struct LDKBolt12InvoiceFeatures this_obj);
9397         public static native void Bolt12InvoiceFeatures_free(long this_obj);
9398         // void BlindedHopFeatures_free(struct LDKBlindedHopFeatures this_obj);
9399         public static native void BlindedHopFeatures_free(long this_obj);
9400         // void ChannelTypeFeatures_free(struct LDKChannelTypeFeatures this_obj);
9401         public static native void ChannelTypeFeatures_free(long this_obj);
9402         // MUST_USE_RES struct LDKInitFeatures InitFeatures_empty(void);
9403         public static native long InitFeatures_empty();
9404         // MUST_USE_RES bool InitFeatures_requires_unknown_bits_from(const struct LDKInitFeatures *NONNULL_PTR this_arg, const struct LDKInitFeatures *NONNULL_PTR other);
9405         public static native boolean InitFeatures_requires_unknown_bits_from(long this_arg, long other);
9406         // MUST_USE_RES bool InitFeatures_requires_unknown_bits(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9407         public static native boolean InitFeatures_requires_unknown_bits(long this_arg);
9408         // MUST_USE_RES struct LDKCResult_NoneNoneZ InitFeatures_set_required_feature_bit(struct LDKInitFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9409         public static native long InitFeatures_set_required_feature_bit(long this_arg, long bit);
9410         // MUST_USE_RES struct LDKCResult_NoneNoneZ InitFeatures_set_optional_feature_bit(struct LDKInitFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9411         public static native long InitFeatures_set_optional_feature_bit(long this_arg, long bit);
9412         // MUST_USE_RES struct LDKCResult_NoneNoneZ InitFeatures_set_required_custom_bit(struct LDKInitFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9413         public static native long InitFeatures_set_required_custom_bit(long this_arg, long bit);
9414         // MUST_USE_RES struct LDKCResult_NoneNoneZ InitFeatures_set_optional_custom_bit(struct LDKInitFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9415         public static native long InitFeatures_set_optional_custom_bit(long this_arg, long bit);
9416         // MUST_USE_RES struct LDKNodeFeatures NodeFeatures_empty(void);
9417         public static native long NodeFeatures_empty();
9418         // MUST_USE_RES bool NodeFeatures_requires_unknown_bits_from(const struct LDKNodeFeatures *NONNULL_PTR this_arg, const struct LDKNodeFeatures *NONNULL_PTR other);
9419         public static native boolean NodeFeatures_requires_unknown_bits_from(long this_arg, long other);
9420         // MUST_USE_RES bool NodeFeatures_requires_unknown_bits(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9421         public static native boolean NodeFeatures_requires_unknown_bits(long this_arg);
9422         // MUST_USE_RES struct LDKCResult_NoneNoneZ NodeFeatures_set_required_feature_bit(struct LDKNodeFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9423         public static native long NodeFeatures_set_required_feature_bit(long this_arg, long bit);
9424         // MUST_USE_RES struct LDKCResult_NoneNoneZ NodeFeatures_set_optional_feature_bit(struct LDKNodeFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9425         public static native long NodeFeatures_set_optional_feature_bit(long this_arg, long bit);
9426         // MUST_USE_RES struct LDKCResult_NoneNoneZ NodeFeatures_set_required_custom_bit(struct LDKNodeFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9427         public static native long NodeFeatures_set_required_custom_bit(long this_arg, long bit);
9428         // MUST_USE_RES struct LDKCResult_NoneNoneZ NodeFeatures_set_optional_custom_bit(struct LDKNodeFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9429         public static native long NodeFeatures_set_optional_custom_bit(long this_arg, long bit);
9430         // MUST_USE_RES struct LDKChannelFeatures ChannelFeatures_empty(void);
9431         public static native long ChannelFeatures_empty();
9432         // MUST_USE_RES bool ChannelFeatures_requires_unknown_bits_from(const struct LDKChannelFeatures *NONNULL_PTR this_arg, const struct LDKChannelFeatures *NONNULL_PTR other);
9433         public static native boolean ChannelFeatures_requires_unknown_bits_from(long this_arg, long other);
9434         // MUST_USE_RES bool ChannelFeatures_requires_unknown_bits(const struct LDKChannelFeatures *NONNULL_PTR this_arg);
9435         public static native boolean ChannelFeatures_requires_unknown_bits(long this_arg);
9436         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelFeatures_set_required_feature_bit(struct LDKChannelFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9437         public static native long ChannelFeatures_set_required_feature_bit(long this_arg, long bit);
9438         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelFeatures_set_optional_feature_bit(struct LDKChannelFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9439         public static native long ChannelFeatures_set_optional_feature_bit(long this_arg, long bit);
9440         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelFeatures_set_required_custom_bit(struct LDKChannelFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9441         public static native long ChannelFeatures_set_required_custom_bit(long this_arg, long bit);
9442         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelFeatures_set_optional_custom_bit(struct LDKChannelFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9443         public static native long ChannelFeatures_set_optional_custom_bit(long this_arg, long bit);
9444         // MUST_USE_RES struct LDKBolt11InvoiceFeatures Bolt11InvoiceFeatures_empty(void);
9445         public static native long Bolt11InvoiceFeatures_empty();
9446         // MUST_USE_RES bool Bolt11InvoiceFeatures_requires_unknown_bits_from(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg, const struct LDKBolt11InvoiceFeatures *NONNULL_PTR other);
9447         public static native boolean Bolt11InvoiceFeatures_requires_unknown_bits_from(long this_arg, long other);
9448         // MUST_USE_RES bool Bolt11InvoiceFeatures_requires_unknown_bits(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9449         public static native boolean Bolt11InvoiceFeatures_requires_unknown_bits(long this_arg);
9450         // MUST_USE_RES struct LDKCResult_NoneNoneZ Bolt11InvoiceFeatures_set_required_feature_bit(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9451         public static native long Bolt11InvoiceFeatures_set_required_feature_bit(long this_arg, long bit);
9452         // MUST_USE_RES struct LDKCResult_NoneNoneZ Bolt11InvoiceFeatures_set_optional_feature_bit(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9453         public static native long Bolt11InvoiceFeatures_set_optional_feature_bit(long this_arg, long bit);
9454         // MUST_USE_RES struct LDKCResult_NoneNoneZ Bolt11InvoiceFeatures_set_required_custom_bit(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9455         public static native long Bolt11InvoiceFeatures_set_required_custom_bit(long this_arg, long bit);
9456         // MUST_USE_RES struct LDKCResult_NoneNoneZ Bolt11InvoiceFeatures_set_optional_custom_bit(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9457         public static native long Bolt11InvoiceFeatures_set_optional_custom_bit(long this_arg, long bit);
9458         // MUST_USE_RES struct LDKOfferFeatures OfferFeatures_empty(void);
9459         public static native long OfferFeatures_empty();
9460         // MUST_USE_RES bool OfferFeatures_requires_unknown_bits_from(const struct LDKOfferFeatures *NONNULL_PTR this_arg, const struct LDKOfferFeatures *NONNULL_PTR other);
9461         public static native boolean OfferFeatures_requires_unknown_bits_from(long this_arg, long other);
9462         // MUST_USE_RES bool OfferFeatures_requires_unknown_bits(const struct LDKOfferFeatures *NONNULL_PTR this_arg);
9463         public static native boolean OfferFeatures_requires_unknown_bits(long this_arg);
9464         // MUST_USE_RES struct LDKCResult_NoneNoneZ OfferFeatures_set_required_feature_bit(struct LDKOfferFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9465         public static native long OfferFeatures_set_required_feature_bit(long this_arg, long bit);
9466         // MUST_USE_RES struct LDKCResult_NoneNoneZ OfferFeatures_set_optional_feature_bit(struct LDKOfferFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9467         public static native long OfferFeatures_set_optional_feature_bit(long this_arg, long bit);
9468         // MUST_USE_RES struct LDKCResult_NoneNoneZ OfferFeatures_set_required_custom_bit(struct LDKOfferFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9469         public static native long OfferFeatures_set_required_custom_bit(long this_arg, long bit);
9470         // MUST_USE_RES struct LDKCResult_NoneNoneZ OfferFeatures_set_optional_custom_bit(struct LDKOfferFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9471         public static native long OfferFeatures_set_optional_custom_bit(long this_arg, long bit);
9472         // MUST_USE_RES struct LDKInvoiceRequestFeatures InvoiceRequestFeatures_empty(void);
9473         public static native long InvoiceRequestFeatures_empty();
9474         // MUST_USE_RES bool InvoiceRequestFeatures_requires_unknown_bits_from(const struct LDKInvoiceRequestFeatures *NONNULL_PTR this_arg, const struct LDKInvoiceRequestFeatures *NONNULL_PTR other);
9475         public static native boolean InvoiceRequestFeatures_requires_unknown_bits_from(long this_arg, long other);
9476         // MUST_USE_RES bool InvoiceRequestFeatures_requires_unknown_bits(const struct LDKInvoiceRequestFeatures *NONNULL_PTR this_arg);
9477         public static native boolean InvoiceRequestFeatures_requires_unknown_bits(long this_arg);
9478         // MUST_USE_RES struct LDKCResult_NoneNoneZ InvoiceRequestFeatures_set_required_feature_bit(struct LDKInvoiceRequestFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9479         public static native long InvoiceRequestFeatures_set_required_feature_bit(long this_arg, long bit);
9480         // MUST_USE_RES struct LDKCResult_NoneNoneZ InvoiceRequestFeatures_set_optional_feature_bit(struct LDKInvoiceRequestFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9481         public static native long InvoiceRequestFeatures_set_optional_feature_bit(long this_arg, long bit);
9482         // MUST_USE_RES struct LDKCResult_NoneNoneZ InvoiceRequestFeatures_set_required_custom_bit(struct LDKInvoiceRequestFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9483         public static native long InvoiceRequestFeatures_set_required_custom_bit(long this_arg, long bit);
9484         // MUST_USE_RES struct LDKCResult_NoneNoneZ InvoiceRequestFeatures_set_optional_custom_bit(struct LDKInvoiceRequestFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9485         public static native long InvoiceRequestFeatures_set_optional_custom_bit(long this_arg, long bit);
9486         // MUST_USE_RES struct LDKBolt12InvoiceFeatures Bolt12InvoiceFeatures_empty(void);
9487         public static native long Bolt12InvoiceFeatures_empty();
9488         // MUST_USE_RES bool Bolt12InvoiceFeatures_requires_unknown_bits_from(const struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg, const struct LDKBolt12InvoiceFeatures *NONNULL_PTR other);
9489         public static native boolean Bolt12InvoiceFeatures_requires_unknown_bits_from(long this_arg, long other);
9490         // MUST_USE_RES bool Bolt12InvoiceFeatures_requires_unknown_bits(const struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg);
9491         public static native boolean Bolt12InvoiceFeatures_requires_unknown_bits(long this_arg);
9492         // MUST_USE_RES struct LDKCResult_NoneNoneZ Bolt12InvoiceFeatures_set_required_feature_bit(struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9493         public static native long Bolt12InvoiceFeatures_set_required_feature_bit(long this_arg, long bit);
9494         // MUST_USE_RES struct LDKCResult_NoneNoneZ Bolt12InvoiceFeatures_set_optional_feature_bit(struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9495         public static native long Bolt12InvoiceFeatures_set_optional_feature_bit(long this_arg, long bit);
9496         // MUST_USE_RES struct LDKCResult_NoneNoneZ Bolt12InvoiceFeatures_set_required_custom_bit(struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9497         public static native long Bolt12InvoiceFeatures_set_required_custom_bit(long this_arg, long bit);
9498         // MUST_USE_RES struct LDKCResult_NoneNoneZ Bolt12InvoiceFeatures_set_optional_custom_bit(struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9499         public static native long Bolt12InvoiceFeatures_set_optional_custom_bit(long this_arg, long bit);
9500         // MUST_USE_RES struct LDKBlindedHopFeatures BlindedHopFeatures_empty(void);
9501         public static native long BlindedHopFeatures_empty();
9502         // MUST_USE_RES bool BlindedHopFeatures_requires_unknown_bits_from(const struct LDKBlindedHopFeatures *NONNULL_PTR this_arg, const struct LDKBlindedHopFeatures *NONNULL_PTR other);
9503         public static native boolean BlindedHopFeatures_requires_unknown_bits_from(long this_arg, long other);
9504         // MUST_USE_RES bool BlindedHopFeatures_requires_unknown_bits(const struct LDKBlindedHopFeatures *NONNULL_PTR this_arg);
9505         public static native boolean BlindedHopFeatures_requires_unknown_bits(long this_arg);
9506         // MUST_USE_RES struct LDKCResult_NoneNoneZ BlindedHopFeatures_set_required_feature_bit(struct LDKBlindedHopFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9507         public static native long BlindedHopFeatures_set_required_feature_bit(long this_arg, long bit);
9508         // MUST_USE_RES struct LDKCResult_NoneNoneZ BlindedHopFeatures_set_optional_feature_bit(struct LDKBlindedHopFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9509         public static native long BlindedHopFeatures_set_optional_feature_bit(long this_arg, long bit);
9510         // MUST_USE_RES struct LDKCResult_NoneNoneZ BlindedHopFeatures_set_required_custom_bit(struct LDKBlindedHopFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9511         public static native long BlindedHopFeatures_set_required_custom_bit(long this_arg, long bit);
9512         // MUST_USE_RES struct LDKCResult_NoneNoneZ BlindedHopFeatures_set_optional_custom_bit(struct LDKBlindedHopFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9513         public static native long BlindedHopFeatures_set_optional_custom_bit(long this_arg, long bit);
9514         // MUST_USE_RES struct LDKChannelTypeFeatures ChannelTypeFeatures_empty(void);
9515         public static native long ChannelTypeFeatures_empty();
9516         // MUST_USE_RES bool ChannelTypeFeatures_requires_unknown_bits_from(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg, const struct LDKChannelTypeFeatures *NONNULL_PTR other);
9517         public static native boolean ChannelTypeFeatures_requires_unknown_bits_from(long this_arg, long other);
9518         // MUST_USE_RES bool ChannelTypeFeatures_requires_unknown_bits(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9519         public static native boolean ChannelTypeFeatures_requires_unknown_bits(long this_arg);
9520         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelTypeFeatures_set_required_feature_bit(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9521         public static native long ChannelTypeFeatures_set_required_feature_bit(long this_arg, long bit);
9522         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelTypeFeatures_set_optional_feature_bit(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9523         public static native long ChannelTypeFeatures_set_optional_feature_bit(long this_arg, long bit);
9524         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelTypeFeatures_set_required_custom_bit(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9525         public static native long ChannelTypeFeatures_set_required_custom_bit(long this_arg, long bit);
9526         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelTypeFeatures_set_optional_custom_bit(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg, uintptr_t bit);
9527         public static native long ChannelTypeFeatures_set_optional_custom_bit(long this_arg, long bit);
9528         // struct LDKCVec_u8Z InitFeatures_write(const struct LDKInitFeatures *NONNULL_PTR obj);
9529         public static native byte[] InitFeatures_write(long obj);
9530         // struct LDKCResult_InitFeaturesDecodeErrorZ InitFeatures_read(struct LDKu8slice ser);
9531         public static native long InitFeatures_read(byte[] ser);
9532         // struct LDKCVec_u8Z ChannelFeatures_write(const struct LDKChannelFeatures *NONNULL_PTR obj);
9533         public static native byte[] ChannelFeatures_write(long obj);
9534         // struct LDKCResult_ChannelFeaturesDecodeErrorZ ChannelFeatures_read(struct LDKu8slice ser);
9535         public static native long ChannelFeatures_read(byte[] ser);
9536         // struct LDKCVec_u8Z NodeFeatures_write(const struct LDKNodeFeatures *NONNULL_PTR obj);
9537         public static native byte[] NodeFeatures_write(long obj);
9538         // struct LDKCResult_NodeFeaturesDecodeErrorZ NodeFeatures_read(struct LDKu8slice ser);
9539         public static native long NodeFeatures_read(byte[] ser);
9540         // struct LDKCVec_u8Z Bolt11InvoiceFeatures_write(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR obj);
9541         public static native byte[] Bolt11InvoiceFeatures_write(long obj);
9542         // struct LDKCResult_Bolt11InvoiceFeaturesDecodeErrorZ Bolt11InvoiceFeatures_read(struct LDKu8slice ser);
9543         public static native long Bolt11InvoiceFeatures_read(byte[] ser);
9544         // struct LDKCVec_u8Z Bolt12InvoiceFeatures_write(const struct LDKBolt12InvoiceFeatures *NONNULL_PTR obj);
9545         public static native byte[] Bolt12InvoiceFeatures_write(long obj);
9546         // struct LDKCResult_Bolt12InvoiceFeaturesDecodeErrorZ Bolt12InvoiceFeatures_read(struct LDKu8slice ser);
9547         public static native long Bolt12InvoiceFeatures_read(byte[] ser);
9548         // struct LDKCVec_u8Z BlindedHopFeatures_write(const struct LDKBlindedHopFeatures *NONNULL_PTR obj);
9549         public static native byte[] BlindedHopFeatures_write(long obj);
9550         // struct LDKCResult_BlindedHopFeaturesDecodeErrorZ BlindedHopFeatures_read(struct LDKu8slice ser);
9551         public static native long BlindedHopFeatures_read(byte[] ser);
9552         // struct LDKCVec_u8Z ChannelTypeFeatures_write(const struct LDKChannelTypeFeatures *NONNULL_PTR obj);
9553         public static native byte[] ChannelTypeFeatures_write(long obj);
9554         // struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ ChannelTypeFeatures_read(struct LDKu8slice ser);
9555         public static native long ChannelTypeFeatures_read(byte[] ser);
9556         // void InitFeatures_set_data_loss_protect_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9557         public static native void InitFeatures_set_data_loss_protect_optional(long this_arg);
9558         // void InitFeatures_set_data_loss_protect_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9559         public static native void InitFeatures_set_data_loss_protect_required(long this_arg);
9560         // MUST_USE_RES bool InitFeatures_supports_data_loss_protect(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9561         public static native boolean InitFeatures_supports_data_loss_protect(long this_arg);
9562         // void NodeFeatures_set_data_loss_protect_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9563         public static native void NodeFeatures_set_data_loss_protect_optional(long this_arg);
9564         // void NodeFeatures_set_data_loss_protect_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9565         public static native void NodeFeatures_set_data_loss_protect_required(long this_arg);
9566         // MUST_USE_RES bool NodeFeatures_supports_data_loss_protect(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9567         public static native boolean NodeFeatures_supports_data_loss_protect(long this_arg);
9568         // MUST_USE_RES bool InitFeatures_requires_data_loss_protect(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9569         public static native boolean InitFeatures_requires_data_loss_protect(long this_arg);
9570         // MUST_USE_RES bool NodeFeatures_requires_data_loss_protect(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9571         public static native boolean NodeFeatures_requires_data_loss_protect(long this_arg);
9572         // void InitFeatures_set_initial_routing_sync_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9573         public static native void InitFeatures_set_initial_routing_sync_optional(long this_arg);
9574         // void InitFeatures_set_initial_routing_sync_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9575         public static native void InitFeatures_set_initial_routing_sync_required(long this_arg);
9576         // MUST_USE_RES bool InitFeatures_initial_routing_sync(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9577         public static native boolean InitFeatures_initial_routing_sync(long this_arg);
9578         // void InitFeatures_set_upfront_shutdown_script_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9579         public static native void InitFeatures_set_upfront_shutdown_script_optional(long this_arg);
9580         // void InitFeatures_set_upfront_shutdown_script_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9581         public static native void InitFeatures_set_upfront_shutdown_script_required(long this_arg);
9582         // MUST_USE_RES bool InitFeatures_supports_upfront_shutdown_script(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9583         public static native boolean InitFeatures_supports_upfront_shutdown_script(long this_arg);
9584         // void NodeFeatures_set_upfront_shutdown_script_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9585         public static native void NodeFeatures_set_upfront_shutdown_script_optional(long this_arg);
9586         // void NodeFeatures_set_upfront_shutdown_script_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9587         public static native void NodeFeatures_set_upfront_shutdown_script_required(long this_arg);
9588         // MUST_USE_RES bool NodeFeatures_supports_upfront_shutdown_script(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9589         public static native boolean NodeFeatures_supports_upfront_shutdown_script(long this_arg);
9590         // MUST_USE_RES bool InitFeatures_requires_upfront_shutdown_script(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9591         public static native boolean InitFeatures_requires_upfront_shutdown_script(long this_arg);
9592         // MUST_USE_RES bool NodeFeatures_requires_upfront_shutdown_script(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9593         public static native boolean NodeFeatures_requires_upfront_shutdown_script(long this_arg);
9594         // void InitFeatures_set_gossip_queries_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9595         public static native void InitFeatures_set_gossip_queries_optional(long this_arg);
9596         // void InitFeatures_set_gossip_queries_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9597         public static native void InitFeatures_set_gossip_queries_required(long this_arg);
9598         // MUST_USE_RES bool InitFeatures_supports_gossip_queries(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9599         public static native boolean InitFeatures_supports_gossip_queries(long this_arg);
9600         // void NodeFeatures_set_gossip_queries_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9601         public static native void NodeFeatures_set_gossip_queries_optional(long this_arg);
9602         // void NodeFeatures_set_gossip_queries_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9603         public static native void NodeFeatures_set_gossip_queries_required(long this_arg);
9604         // MUST_USE_RES bool NodeFeatures_supports_gossip_queries(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9605         public static native boolean NodeFeatures_supports_gossip_queries(long this_arg);
9606         // MUST_USE_RES bool InitFeatures_requires_gossip_queries(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9607         public static native boolean InitFeatures_requires_gossip_queries(long this_arg);
9608         // MUST_USE_RES bool NodeFeatures_requires_gossip_queries(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9609         public static native boolean NodeFeatures_requires_gossip_queries(long this_arg);
9610         // void InitFeatures_set_variable_length_onion_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9611         public static native void InitFeatures_set_variable_length_onion_optional(long this_arg);
9612         // void InitFeatures_set_variable_length_onion_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9613         public static native void InitFeatures_set_variable_length_onion_required(long this_arg);
9614         // MUST_USE_RES bool InitFeatures_supports_variable_length_onion(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9615         public static native boolean InitFeatures_supports_variable_length_onion(long this_arg);
9616         // void NodeFeatures_set_variable_length_onion_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9617         public static native void NodeFeatures_set_variable_length_onion_optional(long this_arg);
9618         // void NodeFeatures_set_variable_length_onion_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9619         public static native void NodeFeatures_set_variable_length_onion_required(long this_arg);
9620         // MUST_USE_RES bool NodeFeatures_supports_variable_length_onion(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9621         public static native boolean NodeFeatures_supports_variable_length_onion(long this_arg);
9622         // void Bolt11InvoiceFeatures_set_variable_length_onion_optional(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9623         public static native void Bolt11InvoiceFeatures_set_variable_length_onion_optional(long this_arg);
9624         // void Bolt11InvoiceFeatures_set_variable_length_onion_required(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9625         public static native void Bolt11InvoiceFeatures_set_variable_length_onion_required(long this_arg);
9626         // MUST_USE_RES bool Bolt11InvoiceFeatures_supports_variable_length_onion(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9627         public static native boolean Bolt11InvoiceFeatures_supports_variable_length_onion(long this_arg);
9628         // MUST_USE_RES bool InitFeatures_requires_variable_length_onion(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9629         public static native boolean InitFeatures_requires_variable_length_onion(long this_arg);
9630         // MUST_USE_RES bool NodeFeatures_requires_variable_length_onion(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9631         public static native boolean NodeFeatures_requires_variable_length_onion(long this_arg);
9632         // MUST_USE_RES bool Bolt11InvoiceFeatures_requires_variable_length_onion(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9633         public static native boolean Bolt11InvoiceFeatures_requires_variable_length_onion(long this_arg);
9634         // void InitFeatures_set_static_remote_key_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9635         public static native void InitFeatures_set_static_remote_key_optional(long this_arg);
9636         // void InitFeatures_set_static_remote_key_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9637         public static native void InitFeatures_set_static_remote_key_required(long this_arg);
9638         // MUST_USE_RES bool InitFeatures_supports_static_remote_key(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9639         public static native boolean InitFeatures_supports_static_remote_key(long this_arg);
9640         // void NodeFeatures_set_static_remote_key_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9641         public static native void NodeFeatures_set_static_remote_key_optional(long this_arg);
9642         // void NodeFeatures_set_static_remote_key_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9643         public static native void NodeFeatures_set_static_remote_key_required(long this_arg);
9644         // MUST_USE_RES bool NodeFeatures_supports_static_remote_key(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9645         public static native boolean NodeFeatures_supports_static_remote_key(long this_arg);
9646         // void ChannelTypeFeatures_set_static_remote_key_optional(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9647         public static native void ChannelTypeFeatures_set_static_remote_key_optional(long this_arg);
9648         // void ChannelTypeFeatures_set_static_remote_key_required(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9649         public static native void ChannelTypeFeatures_set_static_remote_key_required(long this_arg);
9650         // MUST_USE_RES bool ChannelTypeFeatures_supports_static_remote_key(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9651         public static native boolean ChannelTypeFeatures_supports_static_remote_key(long this_arg);
9652         // MUST_USE_RES bool InitFeatures_requires_static_remote_key(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9653         public static native boolean InitFeatures_requires_static_remote_key(long this_arg);
9654         // MUST_USE_RES bool NodeFeatures_requires_static_remote_key(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9655         public static native boolean NodeFeatures_requires_static_remote_key(long this_arg);
9656         // MUST_USE_RES bool ChannelTypeFeatures_requires_static_remote_key(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9657         public static native boolean ChannelTypeFeatures_requires_static_remote_key(long this_arg);
9658         // void InitFeatures_set_payment_secret_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9659         public static native void InitFeatures_set_payment_secret_optional(long this_arg);
9660         // void InitFeatures_set_payment_secret_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9661         public static native void InitFeatures_set_payment_secret_required(long this_arg);
9662         // MUST_USE_RES bool InitFeatures_supports_payment_secret(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9663         public static native boolean InitFeatures_supports_payment_secret(long this_arg);
9664         // void NodeFeatures_set_payment_secret_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9665         public static native void NodeFeatures_set_payment_secret_optional(long this_arg);
9666         // void NodeFeatures_set_payment_secret_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9667         public static native void NodeFeatures_set_payment_secret_required(long this_arg);
9668         // MUST_USE_RES bool NodeFeatures_supports_payment_secret(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9669         public static native boolean NodeFeatures_supports_payment_secret(long this_arg);
9670         // void Bolt11InvoiceFeatures_set_payment_secret_optional(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9671         public static native void Bolt11InvoiceFeatures_set_payment_secret_optional(long this_arg);
9672         // void Bolt11InvoiceFeatures_set_payment_secret_required(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9673         public static native void Bolt11InvoiceFeatures_set_payment_secret_required(long this_arg);
9674         // MUST_USE_RES bool Bolt11InvoiceFeatures_supports_payment_secret(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9675         public static native boolean Bolt11InvoiceFeatures_supports_payment_secret(long this_arg);
9676         // MUST_USE_RES bool InitFeatures_requires_payment_secret(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9677         public static native boolean InitFeatures_requires_payment_secret(long this_arg);
9678         // MUST_USE_RES bool NodeFeatures_requires_payment_secret(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9679         public static native boolean NodeFeatures_requires_payment_secret(long this_arg);
9680         // MUST_USE_RES bool Bolt11InvoiceFeatures_requires_payment_secret(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9681         public static native boolean Bolt11InvoiceFeatures_requires_payment_secret(long this_arg);
9682         // void InitFeatures_set_basic_mpp_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9683         public static native void InitFeatures_set_basic_mpp_optional(long this_arg);
9684         // void InitFeatures_set_basic_mpp_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9685         public static native void InitFeatures_set_basic_mpp_required(long this_arg);
9686         // MUST_USE_RES bool InitFeatures_supports_basic_mpp(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9687         public static native boolean InitFeatures_supports_basic_mpp(long this_arg);
9688         // void NodeFeatures_set_basic_mpp_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9689         public static native void NodeFeatures_set_basic_mpp_optional(long this_arg);
9690         // void NodeFeatures_set_basic_mpp_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9691         public static native void NodeFeatures_set_basic_mpp_required(long this_arg);
9692         // MUST_USE_RES bool NodeFeatures_supports_basic_mpp(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9693         public static native boolean NodeFeatures_supports_basic_mpp(long this_arg);
9694         // void Bolt11InvoiceFeatures_set_basic_mpp_optional(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9695         public static native void Bolt11InvoiceFeatures_set_basic_mpp_optional(long this_arg);
9696         // void Bolt11InvoiceFeatures_set_basic_mpp_required(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9697         public static native void Bolt11InvoiceFeatures_set_basic_mpp_required(long this_arg);
9698         // MUST_USE_RES bool Bolt11InvoiceFeatures_supports_basic_mpp(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9699         public static native boolean Bolt11InvoiceFeatures_supports_basic_mpp(long this_arg);
9700         // void Bolt12InvoiceFeatures_set_basic_mpp_optional(struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg);
9701         public static native void Bolt12InvoiceFeatures_set_basic_mpp_optional(long this_arg);
9702         // void Bolt12InvoiceFeatures_set_basic_mpp_required(struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg);
9703         public static native void Bolt12InvoiceFeatures_set_basic_mpp_required(long this_arg);
9704         // MUST_USE_RES bool Bolt12InvoiceFeatures_supports_basic_mpp(const struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg);
9705         public static native boolean Bolt12InvoiceFeatures_supports_basic_mpp(long this_arg);
9706         // MUST_USE_RES bool InitFeatures_requires_basic_mpp(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9707         public static native boolean InitFeatures_requires_basic_mpp(long this_arg);
9708         // MUST_USE_RES bool NodeFeatures_requires_basic_mpp(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9709         public static native boolean NodeFeatures_requires_basic_mpp(long this_arg);
9710         // MUST_USE_RES bool Bolt11InvoiceFeatures_requires_basic_mpp(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9711         public static native boolean Bolt11InvoiceFeatures_requires_basic_mpp(long this_arg);
9712         // MUST_USE_RES bool Bolt12InvoiceFeatures_requires_basic_mpp(const struct LDKBolt12InvoiceFeatures *NONNULL_PTR this_arg);
9713         public static native boolean Bolt12InvoiceFeatures_requires_basic_mpp(long this_arg);
9714         // void InitFeatures_set_wumbo_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9715         public static native void InitFeatures_set_wumbo_optional(long this_arg);
9716         // void InitFeatures_set_wumbo_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9717         public static native void InitFeatures_set_wumbo_required(long this_arg);
9718         // MUST_USE_RES bool InitFeatures_supports_wumbo(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9719         public static native boolean InitFeatures_supports_wumbo(long this_arg);
9720         // void NodeFeatures_set_wumbo_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9721         public static native void NodeFeatures_set_wumbo_optional(long this_arg);
9722         // void NodeFeatures_set_wumbo_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9723         public static native void NodeFeatures_set_wumbo_required(long this_arg);
9724         // MUST_USE_RES bool NodeFeatures_supports_wumbo(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9725         public static native boolean NodeFeatures_supports_wumbo(long this_arg);
9726         // MUST_USE_RES bool InitFeatures_requires_wumbo(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9727         public static native boolean InitFeatures_requires_wumbo(long this_arg);
9728         // MUST_USE_RES bool NodeFeatures_requires_wumbo(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9729         public static native boolean NodeFeatures_requires_wumbo(long this_arg);
9730         // void InitFeatures_set_anchors_nonzero_fee_htlc_tx_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9731         public static native void InitFeatures_set_anchors_nonzero_fee_htlc_tx_optional(long this_arg);
9732         // void InitFeatures_set_anchors_nonzero_fee_htlc_tx_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9733         public static native void InitFeatures_set_anchors_nonzero_fee_htlc_tx_required(long this_arg);
9734         // MUST_USE_RES bool InitFeatures_supports_anchors_nonzero_fee_htlc_tx(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9735         public static native boolean InitFeatures_supports_anchors_nonzero_fee_htlc_tx(long this_arg);
9736         // void NodeFeatures_set_anchors_nonzero_fee_htlc_tx_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9737         public static native void NodeFeatures_set_anchors_nonzero_fee_htlc_tx_optional(long this_arg);
9738         // void NodeFeatures_set_anchors_nonzero_fee_htlc_tx_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9739         public static native void NodeFeatures_set_anchors_nonzero_fee_htlc_tx_required(long this_arg);
9740         // MUST_USE_RES bool NodeFeatures_supports_anchors_nonzero_fee_htlc_tx(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9741         public static native boolean NodeFeatures_supports_anchors_nonzero_fee_htlc_tx(long this_arg);
9742         // void ChannelTypeFeatures_set_anchors_nonzero_fee_htlc_tx_optional(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9743         public static native void ChannelTypeFeatures_set_anchors_nonzero_fee_htlc_tx_optional(long this_arg);
9744         // void ChannelTypeFeatures_set_anchors_nonzero_fee_htlc_tx_required(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9745         public static native void ChannelTypeFeatures_set_anchors_nonzero_fee_htlc_tx_required(long this_arg);
9746         // MUST_USE_RES bool ChannelTypeFeatures_supports_anchors_nonzero_fee_htlc_tx(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9747         public static native boolean ChannelTypeFeatures_supports_anchors_nonzero_fee_htlc_tx(long this_arg);
9748         // MUST_USE_RES bool InitFeatures_requires_anchors_nonzero_fee_htlc_tx(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9749         public static native boolean InitFeatures_requires_anchors_nonzero_fee_htlc_tx(long this_arg);
9750         // MUST_USE_RES bool NodeFeatures_requires_anchors_nonzero_fee_htlc_tx(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9751         public static native boolean NodeFeatures_requires_anchors_nonzero_fee_htlc_tx(long this_arg);
9752         // MUST_USE_RES bool ChannelTypeFeatures_requires_anchors_nonzero_fee_htlc_tx(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9753         public static native boolean ChannelTypeFeatures_requires_anchors_nonzero_fee_htlc_tx(long this_arg);
9754         // void InitFeatures_set_anchors_zero_fee_htlc_tx_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9755         public static native void InitFeatures_set_anchors_zero_fee_htlc_tx_optional(long this_arg);
9756         // void InitFeatures_set_anchors_zero_fee_htlc_tx_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9757         public static native void InitFeatures_set_anchors_zero_fee_htlc_tx_required(long this_arg);
9758         // MUST_USE_RES bool InitFeatures_supports_anchors_zero_fee_htlc_tx(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9759         public static native boolean InitFeatures_supports_anchors_zero_fee_htlc_tx(long this_arg);
9760         // void NodeFeatures_set_anchors_zero_fee_htlc_tx_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9761         public static native void NodeFeatures_set_anchors_zero_fee_htlc_tx_optional(long this_arg);
9762         // void NodeFeatures_set_anchors_zero_fee_htlc_tx_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9763         public static native void NodeFeatures_set_anchors_zero_fee_htlc_tx_required(long this_arg);
9764         // MUST_USE_RES bool NodeFeatures_supports_anchors_zero_fee_htlc_tx(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9765         public static native boolean NodeFeatures_supports_anchors_zero_fee_htlc_tx(long this_arg);
9766         // void ChannelTypeFeatures_set_anchors_zero_fee_htlc_tx_optional(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9767         public static native void ChannelTypeFeatures_set_anchors_zero_fee_htlc_tx_optional(long this_arg);
9768         // void ChannelTypeFeatures_set_anchors_zero_fee_htlc_tx_required(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9769         public static native void ChannelTypeFeatures_set_anchors_zero_fee_htlc_tx_required(long this_arg);
9770         // MUST_USE_RES bool ChannelTypeFeatures_supports_anchors_zero_fee_htlc_tx(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9771         public static native boolean ChannelTypeFeatures_supports_anchors_zero_fee_htlc_tx(long this_arg);
9772         // MUST_USE_RES bool InitFeatures_requires_anchors_zero_fee_htlc_tx(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9773         public static native boolean InitFeatures_requires_anchors_zero_fee_htlc_tx(long this_arg);
9774         // MUST_USE_RES bool NodeFeatures_requires_anchors_zero_fee_htlc_tx(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9775         public static native boolean NodeFeatures_requires_anchors_zero_fee_htlc_tx(long this_arg);
9776         // MUST_USE_RES bool ChannelTypeFeatures_requires_anchors_zero_fee_htlc_tx(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9777         public static native boolean ChannelTypeFeatures_requires_anchors_zero_fee_htlc_tx(long this_arg);
9778         // void InitFeatures_set_shutdown_any_segwit_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9779         public static native void InitFeatures_set_shutdown_any_segwit_optional(long this_arg);
9780         // void InitFeatures_set_shutdown_any_segwit_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9781         public static native void InitFeatures_set_shutdown_any_segwit_required(long this_arg);
9782         // MUST_USE_RES bool InitFeatures_supports_shutdown_anysegwit(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9783         public static native boolean InitFeatures_supports_shutdown_anysegwit(long this_arg);
9784         // void NodeFeatures_set_shutdown_any_segwit_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9785         public static native void NodeFeatures_set_shutdown_any_segwit_optional(long this_arg);
9786         // void NodeFeatures_set_shutdown_any_segwit_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9787         public static native void NodeFeatures_set_shutdown_any_segwit_required(long this_arg);
9788         // MUST_USE_RES bool NodeFeatures_supports_shutdown_anysegwit(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9789         public static native boolean NodeFeatures_supports_shutdown_anysegwit(long this_arg);
9790         // MUST_USE_RES bool InitFeatures_requires_shutdown_anysegwit(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9791         public static native boolean InitFeatures_requires_shutdown_anysegwit(long this_arg);
9792         // MUST_USE_RES bool NodeFeatures_requires_shutdown_anysegwit(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9793         public static native boolean NodeFeatures_requires_shutdown_anysegwit(long this_arg);
9794         // void InitFeatures_set_taproot_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9795         public static native void InitFeatures_set_taproot_optional(long this_arg);
9796         // void InitFeatures_set_taproot_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9797         public static native void InitFeatures_set_taproot_required(long this_arg);
9798         // MUST_USE_RES bool InitFeatures_supports_taproot(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9799         public static native boolean InitFeatures_supports_taproot(long this_arg);
9800         // void NodeFeatures_set_taproot_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9801         public static native void NodeFeatures_set_taproot_optional(long this_arg);
9802         // void NodeFeatures_set_taproot_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9803         public static native void NodeFeatures_set_taproot_required(long this_arg);
9804         // MUST_USE_RES bool NodeFeatures_supports_taproot(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9805         public static native boolean NodeFeatures_supports_taproot(long this_arg);
9806         // void ChannelTypeFeatures_set_taproot_optional(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9807         public static native void ChannelTypeFeatures_set_taproot_optional(long this_arg);
9808         // void ChannelTypeFeatures_set_taproot_required(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9809         public static native void ChannelTypeFeatures_set_taproot_required(long this_arg);
9810         // MUST_USE_RES bool ChannelTypeFeatures_supports_taproot(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9811         public static native boolean ChannelTypeFeatures_supports_taproot(long this_arg);
9812         // MUST_USE_RES bool InitFeatures_requires_taproot(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9813         public static native boolean InitFeatures_requires_taproot(long this_arg);
9814         // MUST_USE_RES bool NodeFeatures_requires_taproot(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9815         public static native boolean NodeFeatures_requires_taproot(long this_arg);
9816         // MUST_USE_RES bool ChannelTypeFeatures_requires_taproot(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9817         public static native boolean ChannelTypeFeatures_requires_taproot(long this_arg);
9818         // void InitFeatures_set_onion_messages_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9819         public static native void InitFeatures_set_onion_messages_optional(long this_arg);
9820         // void InitFeatures_set_onion_messages_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9821         public static native void InitFeatures_set_onion_messages_required(long this_arg);
9822         // MUST_USE_RES bool InitFeatures_supports_onion_messages(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9823         public static native boolean InitFeatures_supports_onion_messages(long this_arg);
9824         // void NodeFeatures_set_onion_messages_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9825         public static native void NodeFeatures_set_onion_messages_optional(long this_arg);
9826         // void NodeFeatures_set_onion_messages_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9827         public static native void NodeFeatures_set_onion_messages_required(long this_arg);
9828         // MUST_USE_RES bool NodeFeatures_supports_onion_messages(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9829         public static native boolean NodeFeatures_supports_onion_messages(long this_arg);
9830         // MUST_USE_RES bool InitFeatures_requires_onion_messages(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9831         public static native boolean InitFeatures_requires_onion_messages(long this_arg);
9832         // MUST_USE_RES bool NodeFeatures_requires_onion_messages(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9833         public static native boolean NodeFeatures_requires_onion_messages(long this_arg);
9834         // void InitFeatures_set_channel_type_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9835         public static native void InitFeatures_set_channel_type_optional(long this_arg);
9836         // void InitFeatures_set_channel_type_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9837         public static native void InitFeatures_set_channel_type_required(long this_arg);
9838         // MUST_USE_RES bool InitFeatures_supports_channel_type(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9839         public static native boolean InitFeatures_supports_channel_type(long this_arg);
9840         // void NodeFeatures_set_channel_type_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9841         public static native void NodeFeatures_set_channel_type_optional(long this_arg);
9842         // void NodeFeatures_set_channel_type_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9843         public static native void NodeFeatures_set_channel_type_required(long this_arg);
9844         // MUST_USE_RES bool NodeFeatures_supports_channel_type(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9845         public static native boolean NodeFeatures_supports_channel_type(long this_arg);
9846         // MUST_USE_RES bool InitFeatures_requires_channel_type(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9847         public static native boolean InitFeatures_requires_channel_type(long this_arg);
9848         // MUST_USE_RES bool NodeFeatures_requires_channel_type(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9849         public static native boolean NodeFeatures_requires_channel_type(long this_arg);
9850         // void InitFeatures_set_scid_privacy_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9851         public static native void InitFeatures_set_scid_privacy_optional(long this_arg);
9852         // void InitFeatures_set_scid_privacy_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9853         public static native void InitFeatures_set_scid_privacy_required(long this_arg);
9854         // MUST_USE_RES bool InitFeatures_supports_scid_privacy(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9855         public static native boolean InitFeatures_supports_scid_privacy(long this_arg);
9856         // void NodeFeatures_set_scid_privacy_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9857         public static native void NodeFeatures_set_scid_privacy_optional(long this_arg);
9858         // void NodeFeatures_set_scid_privacy_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9859         public static native void NodeFeatures_set_scid_privacy_required(long this_arg);
9860         // MUST_USE_RES bool NodeFeatures_supports_scid_privacy(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9861         public static native boolean NodeFeatures_supports_scid_privacy(long this_arg);
9862         // void ChannelTypeFeatures_set_scid_privacy_optional(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9863         public static native void ChannelTypeFeatures_set_scid_privacy_optional(long this_arg);
9864         // void ChannelTypeFeatures_set_scid_privacy_required(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9865         public static native void ChannelTypeFeatures_set_scid_privacy_required(long this_arg);
9866         // MUST_USE_RES bool ChannelTypeFeatures_supports_scid_privacy(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9867         public static native boolean ChannelTypeFeatures_supports_scid_privacy(long this_arg);
9868         // MUST_USE_RES bool InitFeatures_requires_scid_privacy(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9869         public static native boolean InitFeatures_requires_scid_privacy(long this_arg);
9870         // MUST_USE_RES bool NodeFeatures_requires_scid_privacy(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9871         public static native boolean NodeFeatures_requires_scid_privacy(long this_arg);
9872         // MUST_USE_RES bool ChannelTypeFeatures_requires_scid_privacy(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9873         public static native boolean ChannelTypeFeatures_requires_scid_privacy(long this_arg);
9874         // void Bolt11InvoiceFeatures_set_payment_metadata_optional(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9875         public static native void Bolt11InvoiceFeatures_set_payment_metadata_optional(long this_arg);
9876         // void Bolt11InvoiceFeatures_set_payment_metadata_required(struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9877         public static native void Bolt11InvoiceFeatures_set_payment_metadata_required(long this_arg);
9878         // MUST_USE_RES bool Bolt11InvoiceFeatures_supports_payment_metadata(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9879         public static native boolean Bolt11InvoiceFeatures_supports_payment_metadata(long this_arg);
9880         // MUST_USE_RES bool Bolt11InvoiceFeatures_requires_payment_metadata(const struct LDKBolt11InvoiceFeatures *NONNULL_PTR this_arg);
9881         public static native boolean Bolt11InvoiceFeatures_requires_payment_metadata(long this_arg);
9882         // void InitFeatures_set_zero_conf_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
9883         public static native void InitFeatures_set_zero_conf_optional(long this_arg);
9884         // void InitFeatures_set_zero_conf_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
9885         public static native void InitFeatures_set_zero_conf_required(long this_arg);
9886         // MUST_USE_RES bool InitFeatures_supports_zero_conf(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9887         public static native boolean InitFeatures_supports_zero_conf(long this_arg);
9888         // void NodeFeatures_set_zero_conf_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9889         public static native void NodeFeatures_set_zero_conf_optional(long this_arg);
9890         // void NodeFeatures_set_zero_conf_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9891         public static native void NodeFeatures_set_zero_conf_required(long this_arg);
9892         // MUST_USE_RES bool NodeFeatures_supports_zero_conf(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9893         public static native boolean NodeFeatures_supports_zero_conf(long this_arg);
9894         // void ChannelTypeFeatures_set_zero_conf_optional(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9895         public static native void ChannelTypeFeatures_set_zero_conf_optional(long this_arg);
9896         // void ChannelTypeFeatures_set_zero_conf_required(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9897         public static native void ChannelTypeFeatures_set_zero_conf_required(long this_arg);
9898         // MUST_USE_RES bool ChannelTypeFeatures_supports_zero_conf(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9899         public static native boolean ChannelTypeFeatures_supports_zero_conf(long this_arg);
9900         // MUST_USE_RES bool InitFeatures_requires_zero_conf(const struct LDKInitFeatures *NONNULL_PTR this_arg);
9901         public static native boolean InitFeatures_requires_zero_conf(long this_arg);
9902         // MUST_USE_RES bool NodeFeatures_requires_zero_conf(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9903         public static native boolean NodeFeatures_requires_zero_conf(long this_arg);
9904         // MUST_USE_RES bool ChannelTypeFeatures_requires_zero_conf(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
9905         public static native boolean ChannelTypeFeatures_requires_zero_conf(long this_arg);
9906         // void NodeFeatures_set_keysend_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9907         public static native void NodeFeatures_set_keysend_optional(long this_arg);
9908         // void NodeFeatures_set_keysend_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
9909         public static native void NodeFeatures_set_keysend_required(long this_arg);
9910         // MUST_USE_RES bool NodeFeatures_supports_keysend(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9911         public static native boolean NodeFeatures_supports_keysend(long this_arg);
9912         // MUST_USE_RES bool NodeFeatures_requires_keysend(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
9913         public static native boolean NodeFeatures_requires_keysend(long this_arg);
9914         // void ShutdownScript_free(struct LDKShutdownScript this_obj);
9915         public static native void ShutdownScript_free(long this_obj);
9916         // uint64_t ShutdownScript_clone_ptr(LDKShutdownScript *NONNULL_PTR arg);
9917         public static native long ShutdownScript_clone_ptr(long arg);
9918         // struct LDKShutdownScript ShutdownScript_clone(const struct LDKShutdownScript *NONNULL_PTR orig);
9919         public static native long ShutdownScript_clone(long orig);
9920         // bool ShutdownScript_eq(const struct LDKShutdownScript *NONNULL_PTR a, const struct LDKShutdownScript *NONNULL_PTR b);
9921         public static native boolean ShutdownScript_eq(long a, long b);
9922         // void InvalidShutdownScript_free(struct LDKInvalidShutdownScript this_obj);
9923         public static native void InvalidShutdownScript_free(long this_obj);
9924         // struct LDKu8slice InvalidShutdownScript_get_script(const struct LDKInvalidShutdownScript *NONNULL_PTR this_ptr);
9925         public static native byte[] InvalidShutdownScript_get_script(long this_ptr);
9926         // void InvalidShutdownScript_set_script(struct LDKInvalidShutdownScript *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
9927         public static native void InvalidShutdownScript_set_script(long this_ptr, byte[] val);
9928         // MUST_USE_RES struct LDKInvalidShutdownScript InvalidShutdownScript_new(struct LDKCVec_u8Z script_arg);
9929         public static native long InvalidShutdownScript_new(byte[] script_arg);
9930         // uint64_t InvalidShutdownScript_clone_ptr(LDKInvalidShutdownScript *NONNULL_PTR arg);
9931         public static native long InvalidShutdownScript_clone_ptr(long arg);
9932         // struct LDKInvalidShutdownScript InvalidShutdownScript_clone(const struct LDKInvalidShutdownScript *NONNULL_PTR orig);
9933         public static native long InvalidShutdownScript_clone(long orig);
9934         // struct LDKCVec_u8Z ShutdownScript_write(const struct LDKShutdownScript *NONNULL_PTR obj);
9935         public static native byte[] ShutdownScript_write(long obj);
9936         // struct LDKCResult_ShutdownScriptDecodeErrorZ ShutdownScript_read(struct LDKu8slice ser);
9937         public static native long ShutdownScript_read(byte[] ser);
9938         // MUST_USE_RES struct LDKShutdownScript ShutdownScript_new_p2wpkh(const uint8_t (*pubkey_hash)[20]);
9939         public static native long ShutdownScript_new_p2wpkh(byte[] pubkey_hash);
9940         // MUST_USE_RES struct LDKShutdownScript ShutdownScript_new_p2wsh(const uint8_t (*script_hash)[32]);
9941         public static native long ShutdownScript_new_p2wsh(byte[] script_hash);
9942         // MUST_USE_RES struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ ShutdownScript_new_witness_program(struct LDKWitnessVersion version, struct LDKu8slice program);
9943         public static native long ShutdownScript_new_witness_program(byte version, byte[] program);
9944         // MUST_USE_RES struct LDKCVec_u8Z ShutdownScript_into_inner(struct LDKShutdownScript this_arg);
9945         public static native byte[] ShutdownScript_into_inner(long this_arg);
9946         // MUST_USE_RES struct LDKPublicKey ShutdownScript_as_legacy_pubkey(const struct LDKShutdownScript *NONNULL_PTR this_arg);
9947         public static native byte[] ShutdownScript_as_legacy_pubkey(long this_arg);
9948         // MUST_USE_RES bool ShutdownScript_is_compatible(const struct LDKShutdownScript *NONNULL_PTR this_arg, const struct LDKInitFeatures *NONNULL_PTR features);
9949         public static native boolean ShutdownScript_is_compatible(long this_arg, long features);
9950         // void Retry_free(struct LDKRetry this_ptr);
9951         public static native void Retry_free(long this_ptr);
9952         // uint64_t Retry_clone_ptr(LDKRetry *NONNULL_PTR arg);
9953         public static native long Retry_clone_ptr(long arg);
9954         // struct LDKRetry Retry_clone(const struct LDKRetry *NONNULL_PTR orig);
9955         public static native long Retry_clone(long orig);
9956         // struct LDKRetry Retry_attempts(uint32_t a);
9957         public static native long Retry_attempts(int a);
9958         // struct LDKRetry Retry_timeout(uint64_t a);
9959         public static native long Retry_timeout(long a);
9960         // bool Retry_eq(const struct LDKRetry *NONNULL_PTR a, const struct LDKRetry *NONNULL_PTR b);
9961         public static native boolean Retry_eq(long a, long b);
9962         // uint64_t Retry_hash(const struct LDKRetry *NONNULL_PTR o);
9963         public static native long Retry_hash(long o);
9964         // struct LDKCVec_u8Z Retry_write(const struct LDKRetry *NONNULL_PTR obj);
9965         public static native byte[] Retry_write(long obj);
9966         // struct LDKCResult_RetryDecodeErrorZ Retry_read(struct LDKu8slice ser);
9967         public static native long Retry_read(byte[] ser);
9968         // enum LDKRetryableSendFailure RetryableSendFailure_clone(const enum LDKRetryableSendFailure *NONNULL_PTR orig);
9969         public static native RetryableSendFailure RetryableSendFailure_clone(long orig);
9970         // enum LDKRetryableSendFailure RetryableSendFailure_payment_expired(void);
9971         public static native RetryableSendFailure RetryableSendFailure_payment_expired();
9972         // enum LDKRetryableSendFailure RetryableSendFailure_route_not_found(void);
9973         public static native RetryableSendFailure RetryableSendFailure_route_not_found();
9974         // enum LDKRetryableSendFailure RetryableSendFailure_duplicate_payment(void);
9975         public static native RetryableSendFailure RetryableSendFailure_duplicate_payment();
9976         // bool RetryableSendFailure_eq(const enum LDKRetryableSendFailure *NONNULL_PTR a, const enum LDKRetryableSendFailure *NONNULL_PTR b);
9977         public static native boolean RetryableSendFailure_eq(long a, long b);
9978         // void PaymentSendFailure_free(struct LDKPaymentSendFailure this_ptr);
9979         public static native void PaymentSendFailure_free(long this_ptr);
9980         // uint64_t PaymentSendFailure_clone_ptr(LDKPaymentSendFailure *NONNULL_PTR arg);
9981         public static native long PaymentSendFailure_clone_ptr(long arg);
9982         // struct LDKPaymentSendFailure PaymentSendFailure_clone(const struct LDKPaymentSendFailure *NONNULL_PTR orig);
9983         public static native long PaymentSendFailure_clone(long orig);
9984         // struct LDKPaymentSendFailure PaymentSendFailure_parameter_error(struct LDKAPIError a);
9985         public static native long PaymentSendFailure_parameter_error(long a);
9986         // struct LDKPaymentSendFailure PaymentSendFailure_path_parameter_error(struct LDKCVec_CResult_NoneAPIErrorZZ a);
9987         public static native long PaymentSendFailure_path_parameter_error(long[] a);
9988         // struct LDKPaymentSendFailure PaymentSendFailure_all_failed_resend_safe(struct LDKCVec_APIErrorZ a);
9989         public static native long PaymentSendFailure_all_failed_resend_safe(long[] a);
9990         // struct LDKPaymentSendFailure PaymentSendFailure_duplicate_payment(void);
9991         public static native long PaymentSendFailure_duplicate_payment();
9992         // struct LDKPaymentSendFailure PaymentSendFailure_partial_failure(struct LDKCVec_CResult_NoneAPIErrorZZ results, struct LDKRouteParameters failed_paths_retry, struct LDKThirtyTwoBytes payment_id);
9993         public static native long PaymentSendFailure_partial_failure(long[] results, long failed_paths_retry, byte[] payment_id);
9994         // bool PaymentSendFailure_eq(const struct LDKPaymentSendFailure *NONNULL_PTR a, const struct LDKPaymentSendFailure *NONNULL_PTR b);
9995         public static native boolean PaymentSendFailure_eq(long a, long b);
9996         // void ProbeSendFailure_free(struct LDKProbeSendFailure this_ptr);
9997         public static native void ProbeSendFailure_free(long this_ptr);
9998         // uint64_t ProbeSendFailure_clone_ptr(LDKProbeSendFailure *NONNULL_PTR arg);
9999         public static native long ProbeSendFailure_clone_ptr(long arg);
10000         // struct LDKProbeSendFailure ProbeSendFailure_clone(const struct LDKProbeSendFailure *NONNULL_PTR orig);
10001         public static native long ProbeSendFailure_clone(long orig);
10002         // struct LDKProbeSendFailure ProbeSendFailure_route_not_found(void);
10003         public static native long ProbeSendFailure_route_not_found();
10004         // struct LDKProbeSendFailure ProbeSendFailure_sending_failed(struct LDKPaymentSendFailure a);
10005         public static native long ProbeSendFailure_sending_failed(long a);
10006         // bool ProbeSendFailure_eq(const struct LDKProbeSendFailure *NONNULL_PTR a, const struct LDKProbeSendFailure *NONNULL_PTR b);
10007         public static native boolean ProbeSendFailure_eq(long a, long b);
10008         // void RecipientOnionFields_free(struct LDKRecipientOnionFields this_obj);
10009         public static native void RecipientOnionFields_free(long this_obj);
10010         // struct LDKCOption_ThirtyTwoBytesZ RecipientOnionFields_get_payment_secret(const struct LDKRecipientOnionFields *NONNULL_PTR this_ptr);
10011         public static native long RecipientOnionFields_get_payment_secret(long this_ptr);
10012         // void RecipientOnionFields_set_payment_secret(struct LDKRecipientOnionFields *NONNULL_PTR this_ptr, struct LDKCOption_ThirtyTwoBytesZ val);
10013         public static native void RecipientOnionFields_set_payment_secret(long this_ptr, long val);
10014         // struct LDKCOption_CVec_u8ZZ RecipientOnionFields_get_payment_metadata(const struct LDKRecipientOnionFields *NONNULL_PTR this_ptr);
10015         public static native long RecipientOnionFields_get_payment_metadata(long this_ptr);
10016         // void RecipientOnionFields_set_payment_metadata(struct LDKRecipientOnionFields *NONNULL_PTR this_ptr, struct LDKCOption_CVec_u8ZZ val);
10017         public static native void RecipientOnionFields_set_payment_metadata(long this_ptr, long val);
10018         // uint64_t RecipientOnionFields_clone_ptr(LDKRecipientOnionFields *NONNULL_PTR arg);
10019         public static native long RecipientOnionFields_clone_ptr(long arg);
10020         // struct LDKRecipientOnionFields RecipientOnionFields_clone(const struct LDKRecipientOnionFields *NONNULL_PTR orig);
10021         public static native long RecipientOnionFields_clone(long orig);
10022         // bool RecipientOnionFields_eq(const struct LDKRecipientOnionFields *NONNULL_PTR a, const struct LDKRecipientOnionFields *NONNULL_PTR b);
10023         public static native boolean RecipientOnionFields_eq(long a, long b);
10024         // struct LDKCVec_u8Z RecipientOnionFields_write(const struct LDKRecipientOnionFields *NONNULL_PTR obj);
10025         public static native byte[] RecipientOnionFields_write(long obj);
10026         // struct LDKCResult_RecipientOnionFieldsDecodeErrorZ RecipientOnionFields_read(struct LDKu8slice ser);
10027         public static native long RecipientOnionFields_read(byte[] ser);
10028         // MUST_USE_RES struct LDKRecipientOnionFields RecipientOnionFields_secret_only(struct LDKThirtyTwoBytes payment_secret);
10029         public static native long RecipientOnionFields_secret_only(byte[] payment_secret);
10030         // MUST_USE_RES struct LDKRecipientOnionFields RecipientOnionFields_spontaneous_empty(void);
10031         public static native long RecipientOnionFields_spontaneous_empty();
10032         // MUST_USE_RES struct LDKCResult_RecipientOnionFieldsNoneZ RecipientOnionFields_with_custom_tlvs(struct LDKRecipientOnionFields this_arg, struct LDKCVec_C2Tuple_u64CVec_u8ZZZ custom_tlvs);
10033         public static native long RecipientOnionFields_with_custom_tlvs(long this_arg, long[] custom_tlvs);
10034         // MUST_USE_RES struct LDKCVec_C2Tuple_u64CVec_u8ZZZ RecipientOnionFields_custom_tlvs(const struct LDKRecipientOnionFields *NONNULL_PTR this_arg);
10035         public static native long[] RecipientOnionFields_custom_tlvs(long this_arg);
10036         // void CustomMessageReader_free(struct LDKCustomMessageReader this_ptr);
10037         public static native void CustomMessageReader_free(long this_ptr);
10038         // uint64_t Type_clone_ptr(LDKType *NONNULL_PTR arg);
10039         public static native long Type_clone_ptr(long arg);
10040         // struct LDKType Type_clone(const struct LDKType *NONNULL_PTR orig);
10041         public static native long Type_clone(long orig);
10042         // void Type_free(struct LDKType this_ptr);
10043         public static native void Type_free(long this_ptr);
10044         // void Offer_free(struct LDKOffer this_obj);
10045         public static native void Offer_free(long this_obj);
10046         // uint64_t Offer_clone_ptr(LDKOffer *NONNULL_PTR arg);
10047         public static native long Offer_clone_ptr(long arg);
10048         // struct LDKOffer Offer_clone(const struct LDKOffer *NONNULL_PTR orig);
10049         public static native long Offer_clone(long orig);
10050         // MUST_USE_RES struct LDKCVec_ThirtyTwoBytesZ Offer_chains(const struct LDKOffer *NONNULL_PTR this_arg);
10051         public static native byte[][] Offer_chains(long this_arg);
10052         // MUST_USE_RES struct LDKCOption_CVec_u8ZZ Offer_metadata(const struct LDKOffer *NONNULL_PTR this_arg);
10053         public static native long Offer_metadata(long this_arg);
10054         // MUST_USE_RES struct LDKAmount Offer_amount(const struct LDKOffer *NONNULL_PTR this_arg);
10055         public static native long Offer_amount(long this_arg);
10056         // MUST_USE_RES struct LDKPrintableString Offer_description(const struct LDKOffer *NONNULL_PTR this_arg);
10057         public static native long Offer_description(long this_arg);
10058         // MUST_USE_RES struct LDKOfferFeatures Offer_offer_features(const struct LDKOffer *NONNULL_PTR this_arg);
10059         public static native long Offer_offer_features(long this_arg);
10060         // MUST_USE_RES struct LDKCOption_u64Z Offer_absolute_expiry(const struct LDKOffer *NONNULL_PTR this_arg);
10061         public static native long Offer_absolute_expiry(long this_arg);
10062         // MUST_USE_RES struct LDKPrintableString Offer_issuer(const struct LDKOffer *NONNULL_PTR this_arg);
10063         public static native long Offer_issuer(long this_arg);
10064         // MUST_USE_RES struct LDKCVec_BlindedPathZ Offer_paths(const struct LDKOffer *NONNULL_PTR this_arg);
10065         public static native long[] Offer_paths(long this_arg);
10066         // MUST_USE_RES struct LDKQuantity Offer_supported_quantity(const struct LDKOffer *NONNULL_PTR this_arg);
10067         public static native long Offer_supported_quantity(long this_arg);
10068         // MUST_USE_RES struct LDKPublicKey Offer_signing_pubkey(const struct LDKOffer *NONNULL_PTR this_arg);
10069         public static native byte[] Offer_signing_pubkey(long this_arg);
10070         // MUST_USE_RES bool Offer_supports_chain(const struct LDKOffer *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes chain);
10071         public static native boolean Offer_supports_chain(long this_arg, byte[] chain);
10072         // MUST_USE_RES bool Offer_is_expired(const struct LDKOffer *NONNULL_PTR this_arg);
10073         public static native boolean Offer_is_expired(long this_arg);
10074         // MUST_USE_RES bool Offer_is_valid_quantity(const struct LDKOffer *NONNULL_PTR this_arg, uint64_t quantity);
10075         public static native boolean Offer_is_valid_quantity(long this_arg, long quantity);
10076         // MUST_USE_RES bool Offer_expects_quantity(const struct LDKOffer *NONNULL_PTR this_arg);
10077         public static native boolean Offer_expects_quantity(long this_arg);
10078         // struct LDKCVec_u8Z Offer_write(const struct LDKOffer *NONNULL_PTR obj);
10079         public static native byte[] Offer_write(long obj);
10080         // void Amount_free(struct LDKAmount this_obj);
10081         public static native void Amount_free(long this_obj);
10082         // uint64_t Amount_clone_ptr(LDKAmount *NONNULL_PTR arg);
10083         public static native long Amount_clone_ptr(long arg);
10084         // struct LDKAmount Amount_clone(const struct LDKAmount *NONNULL_PTR orig);
10085         public static native long Amount_clone(long orig);
10086         // void Quantity_free(struct LDKQuantity this_obj);
10087         public static native void Quantity_free(long this_obj);
10088         // uint64_t Quantity_clone_ptr(LDKQuantity *NONNULL_PTR arg);
10089         public static native long Quantity_clone_ptr(long arg);
10090         // struct LDKQuantity Quantity_clone(const struct LDKQuantity *NONNULL_PTR orig);
10091         public static native long Quantity_clone(long orig);
10092         // struct LDKCResult_OfferBolt12ParseErrorZ Offer_from_str(struct LDKStr s);
10093         public static native long Offer_from_str(String s);
10094         // void UnsignedBolt12Invoice_free(struct LDKUnsignedBolt12Invoice this_obj);
10095         public static native void UnsignedBolt12Invoice_free(long this_obj);
10096         // MUST_USE_RES struct LDKTaggedHash UnsignedBolt12Invoice_tagged_hash(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10097         public static native long UnsignedBolt12Invoice_tagged_hash(long this_arg);
10098         // void Bolt12Invoice_free(struct LDKBolt12Invoice this_obj);
10099         public static native void Bolt12Invoice_free(long this_obj);
10100         // uint64_t Bolt12Invoice_clone_ptr(LDKBolt12Invoice *NONNULL_PTR arg);
10101         public static native long Bolt12Invoice_clone_ptr(long arg);
10102         // struct LDKBolt12Invoice Bolt12Invoice_clone(const struct LDKBolt12Invoice *NONNULL_PTR orig);
10103         public static native long Bolt12Invoice_clone(long orig);
10104         // MUST_USE_RES struct LDKCOption_CVec_ThirtyTwoBytesZZ UnsignedBolt12Invoice_offer_chains(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10105         public static native long UnsignedBolt12Invoice_offer_chains(long this_arg);
10106         // MUST_USE_RES struct LDKThirtyTwoBytes UnsignedBolt12Invoice_chain(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10107         public static native byte[] UnsignedBolt12Invoice_chain(long this_arg);
10108         // MUST_USE_RES struct LDKCOption_CVec_u8ZZ UnsignedBolt12Invoice_metadata(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10109         public static native long UnsignedBolt12Invoice_metadata(long this_arg);
10110         // MUST_USE_RES struct LDKAmount UnsignedBolt12Invoice_amount(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10111         public static native long UnsignedBolt12Invoice_amount(long this_arg);
10112         // MUST_USE_RES struct LDKOfferFeatures UnsignedBolt12Invoice_offer_features(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10113         public static native long UnsignedBolt12Invoice_offer_features(long this_arg);
10114         // MUST_USE_RES struct LDKPrintableString UnsignedBolt12Invoice_description(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10115         public static native long UnsignedBolt12Invoice_description(long this_arg);
10116         // MUST_USE_RES struct LDKCOption_u64Z UnsignedBolt12Invoice_absolute_expiry(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10117         public static native long UnsignedBolt12Invoice_absolute_expiry(long this_arg);
10118         // MUST_USE_RES struct LDKPrintableString UnsignedBolt12Invoice_issuer(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10119         public static native long UnsignedBolt12Invoice_issuer(long this_arg);
10120         // MUST_USE_RES struct LDKCVec_BlindedPathZ UnsignedBolt12Invoice_message_paths(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10121         public static native long[] UnsignedBolt12Invoice_message_paths(long this_arg);
10122         // MUST_USE_RES struct LDKQuantity UnsignedBolt12Invoice_supported_quantity(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10123         public static native long UnsignedBolt12Invoice_supported_quantity(long this_arg);
10124         // MUST_USE_RES struct LDKu8slice UnsignedBolt12Invoice_payer_metadata(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10125         public static native byte[] UnsignedBolt12Invoice_payer_metadata(long this_arg);
10126         // MUST_USE_RES struct LDKInvoiceRequestFeatures UnsignedBolt12Invoice_invoice_request_features(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10127         public static native long UnsignedBolt12Invoice_invoice_request_features(long this_arg);
10128         // MUST_USE_RES struct LDKCOption_u64Z UnsignedBolt12Invoice_quantity(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10129         public static native long UnsignedBolt12Invoice_quantity(long this_arg);
10130         // MUST_USE_RES struct LDKPublicKey UnsignedBolt12Invoice_payer_id(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10131         public static native byte[] UnsignedBolt12Invoice_payer_id(long this_arg);
10132         // MUST_USE_RES struct LDKPrintableString UnsignedBolt12Invoice_payer_note(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10133         public static native long UnsignedBolt12Invoice_payer_note(long this_arg);
10134         // MUST_USE_RES uint64_t UnsignedBolt12Invoice_created_at(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10135         public static native long UnsignedBolt12Invoice_created_at(long this_arg);
10136         // MUST_USE_RES uint64_t UnsignedBolt12Invoice_relative_expiry(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10137         public static native long UnsignedBolt12Invoice_relative_expiry(long this_arg);
10138         // MUST_USE_RES bool UnsignedBolt12Invoice_is_expired(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10139         public static native boolean UnsignedBolt12Invoice_is_expired(long this_arg);
10140         // MUST_USE_RES struct LDKThirtyTwoBytes UnsignedBolt12Invoice_payment_hash(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10141         public static native byte[] UnsignedBolt12Invoice_payment_hash(long this_arg);
10142         // MUST_USE_RES uint64_t UnsignedBolt12Invoice_amount_msats(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10143         public static native long UnsignedBolt12Invoice_amount_msats(long this_arg);
10144         // MUST_USE_RES struct LDKBolt12InvoiceFeatures UnsignedBolt12Invoice_invoice_features(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10145         public static native long UnsignedBolt12Invoice_invoice_features(long this_arg);
10146         // MUST_USE_RES struct LDKPublicKey UnsignedBolt12Invoice_signing_pubkey(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR this_arg);
10147         public static native byte[] UnsignedBolt12Invoice_signing_pubkey(long this_arg);
10148         // MUST_USE_RES struct LDKCOption_CVec_ThirtyTwoBytesZZ Bolt12Invoice_offer_chains(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10149         public static native long Bolt12Invoice_offer_chains(long this_arg);
10150         // MUST_USE_RES struct LDKThirtyTwoBytes Bolt12Invoice_chain(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10151         public static native byte[] Bolt12Invoice_chain(long this_arg);
10152         // MUST_USE_RES struct LDKCOption_CVec_u8ZZ Bolt12Invoice_metadata(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10153         public static native long Bolt12Invoice_metadata(long this_arg);
10154         // MUST_USE_RES struct LDKAmount Bolt12Invoice_amount(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10155         public static native long Bolt12Invoice_amount(long this_arg);
10156         // MUST_USE_RES struct LDKOfferFeatures Bolt12Invoice_offer_features(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10157         public static native long Bolt12Invoice_offer_features(long this_arg);
10158         // MUST_USE_RES struct LDKPrintableString Bolt12Invoice_description(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10159         public static native long Bolt12Invoice_description(long this_arg);
10160         // MUST_USE_RES struct LDKCOption_u64Z Bolt12Invoice_absolute_expiry(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10161         public static native long Bolt12Invoice_absolute_expiry(long this_arg);
10162         // MUST_USE_RES struct LDKPrintableString Bolt12Invoice_issuer(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10163         public static native long Bolt12Invoice_issuer(long this_arg);
10164         // MUST_USE_RES struct LDKCVec_BlindedPathZ Bolt12Invoice_message_paths(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10165         public static native long[] Bolt12Invoice_message_paths(long this_arg);
10166         // MUST_USE_RES struct LDKQuantity Bolt12Invoice_supported_quantity(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10167         public static native long Bolt12Invoice_supported_quantity(long this_arg);
10168         // MUST_USE_RES struct LDKu8slice Bolt12Invoice_payer_metadata(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10169         public static native byte[] Bolt12Invoice_payer_metadata(long this_arg);
10170         // MUST_USE_RES struct LDKInvoiceRequestFeatures Bolt12Invoice_invoice_request_features(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10171         public static native long Bolt12Invoice_invoice_request_features(long this_arg);
10172         // MUST_USE_RES struct LDKCOption_u64Z Bolt12Invoice_quantity(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10173         public static native long Bolt12Invoice_quantity(long this_arg);
10174         // MUST_USE_RES struct LDKPublicKey Bolt12Invoice_payer_id(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10175         public static native byte[] Bolt12Invoice_payer_id(long this_arg);
10176         // MUST_USE_RES struct LDKPrintableString Bolt12Invoice_payer_note(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10177         public static native long Bolt12Invoice_payer_note(long this_arg);
10178         // MUST_USE_RES uint64_t Bolt12Invoice_created_at(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10179         public static native long Bolt12Invoice_created_at(long this_arg);
10180         // MUST_USE_RES uint64_t Bolt12Invoice_relative_expiry(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10181         public static native long Bolt12Invoice_relative_expiry(long this_arg);
10182         // MUST_USE_RES bool Bolt12Invoice_is_expired(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10183         public static native boolean Bolt12Invoice_is_expired(long this_arg);
10184         // MUST_USE_RES struct LDKThirtyTwoBytes Bolt12Invoice_payment_hash(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10185         public static native byte[] Bolt12Invoice_payment_hash(long this_arg);
10186         // MUST_USE_RES uint64_t Bolt12Invoice_amount_msats(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10187         public static native long Bolt12Invoice_amount_msats(long this_arg);
10188         // MUST_USE_RES struct LDKBolt12InvoiceFeatures Bolt12Invoice_invoice_features(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10189         public static native long Bolt12Invoice_invoice_features(long this_arg);
10190         // MUST_USE_RES struct LDKPublicKey Bolt12Invoice_signing_pubkey(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10191         public static native byte[] Bolt12Invoice_signing_pubkey(long this_arg);
10192         // MUST_USE_RES struct LDKSchnorrSignature Bolt12Invoice_signature(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10193         public static native byte[] Bolt12Invoice_signature(long this_arg);
10194         // MUST_USE_RES struct LDKThirtyTwoBytes Bolt12Invoice_signable_hash(const struct LDKBolt12Invoice *NONNULL_PTR this_arg);
10195         public static native byte[] Bolt12Invoice_signable_hash(long this_arg);
10196         // MUST_USE_RES struct LDKCResult_ThirtyTwoBytesNoneZ Bolt12Invoice_verify(const struct LDKBolt12Invoice *NONNULL_PTR this_arg, const struct LDKExpandedKey *NONNULL_PTR key);
10197         public static native long Bolt12Invoice_verify(long this_arg, long key);
10198         // struct LDKCVec_u8Z UnsignedBolt12Invoice_write(const struct LDKUnsignedBolt12Invoice *NONNULL_PTR obj);
10199         public static native byte[] UnsignedBolt12Invoice_write(long obj);
10200         // struct LDKCVec_u8Z Bolt12Invoice_write(const struct LDKBolt12Invoice *NONNULL_PTR obj);
10201         public static native byte[] Bolt12Invoice_write(long obj);
10202         // void BlindedPayInfo_free(struct LDKBlindedPayInfo this_obj);
10203         public static native void BlindedPayInfo_free(long this_obj);
10204         // uint32_t BlindedPayInfo_get_fee_base_msat(const struct LDKBlindedPayInfo *NONNULL_PTR this_ptr);
10205         public static native int BlindedPayInfo_get_fee_base_msat(long this_ptr);
10206         // void BlindedPayInfo_set_fee_base_msat(struct LDKBlindedPayInfo *NONNULL_PTR this_ptr, uint32_t val);
10207         public static native void BlindedPayInfo_set_fee_base_msat(long this_ptr, int val);
10208         // uint32_t BlindedPayInfo_get_fee_proportional_millionths(const struct LDKBlindedPayInfo *NONNULL_PTR this_ptr);
10209         public static native int BlindedPayInfo_get_fee_proportional_millionths(long this_ptr);
10210         // void BlindedPayInfo_set_fee_proportional_millionths(struct LDKBlindedPayInfo *NONNULL_PTR this_ptr, uint32_t val);
10211         public static native void BlindedPayInfo_set_fee_proportional_millionths(long this_ptr, int val);
10212         // uint16_t BlindedPayInfo_get_cltv_expiry_delta(const struct LDKBlindedPayInfo *NONNULL_PTR this_ptr);
10213         public static native short BlindedPayInfo_get_cltv_expiry_delta(long this_ptr);
10214         // void BlindedPayInfo_set_cltv_expiry_delta(struct LDKBlindedPayInfo *NONNULL_PTR this_ptr, uint16_t val);
10215         public static native void BlindedPayInfo_set_cltv_expiry_delta(long this_ptr, short val);
10216         // uint64_t BlindedPayInfo_get_htlc_minimum_msat(const struct LDKBlindedPayInfo *NONNULL_PTR this_ptr);
10217         public static native long BlindedPayInfo_get_htlc_minimum_msat(long this_ptr);
10218         // void BlindedPayInfo_set_htlc_minimum_msat(struct LDKBlindedPayInfo *NONNULL_PTR this_ptr, uint64_t val);
10219         public static native void BlindedPayInfo_set_htlc_minimum_msat(long this_ptr, long val);
10220         // uint64_t BlindedPayInfo_get_htlc_maximum_msat(const struct LDKBlindedPayInfo *NONNULL_PTR this_ptr);
10221         public static native long BlindedPayInfo_get_htlc_maximum_msat(long this_ptr);
10222         // void BlindedPayInfo_set_htlc_maximum_msat(struct LDKBlindedPayInfo *NONNULL_PTR this_ptr, uint64_t val);
10223         public static native void BlindedPayInfo_set_htlc_maximum_msat(long this_ptr, long val);
10224         // struct LDKBlindedHopFeatures BlindedPayInfo_get_features(const struct LDKBlindedPayInfo *NONNULL_PTR this_ptr);
10225         public static native long BlindedPayInfo_get_features(long this_ptr);
10226         // void BlindedPayInfo_set_features(struct LDKBlindedPayInfo *NONNULL_PTR this_ptr, struct LDKBlindedHopFeatures val);
10227         public static native void BlindedPayInfo_set_features(long this_ptr, long val);
10228         // MUST_USE_RES struct LDKBlindedPayInfo BlindedPayInfo_new(uint32_t fee_base_msat_arg, uint32_t fee_proportional_millionths_arg, uint16_t cltv_expiry_delta_arg, uint64_t htlc_minimum_msat_arg, uint64_t htlc_maximum_msat_arg, struct LDKBlindedHopFeatures features_arg);
10229         public static native long BlindedPayInfo_new(int fee_base_msat_arg, int fee_proportional_millionths_arg, short cltv_expiry_delta_arg, long htlc_minimum_msat_arg, long htlc_maximum_msat_arg, long features_arg);
10230         // uint64_t BlindedPayInfo_clone_ptr(LDKBlindedPayInfo *NONNULL_PTR arg);
10231         public static native long BlindedPayInfo_clone_ptr(long arg);
10232         // struct LDKBlindedPayInfo BlindedPayInfo_clone(const struct LDKBlindedPayInfo *NONNULL_PTR orig);
10233         public static native long BlindedPayInfo_clone(long orig);
10234         // uint64_t BlindedPayInfo_hash(const struct LDKBlindedPayInfo *NONNULL_PTR o);
10235         public static native long BlindedPayInfo_hash(long o);
10236         // bool BlindedPayInfo_eq(const struct LDKBlindedPayInfo *NONNULL_PTR a, const struct LDKBlindedPayInfo *NONNULL_PTR b);
10237         public static native boolean BlindedPayInfo_eq(long a, long b);
10238         // struct LDKCVec_u8Z BlindedPayInfo_write(const struct LDKBlindedPayInfo *NONNULL_PTR obj);
10239         public static native byte[] BlindedPayInfo_write(long obj);
10240         // struct LDKCResult_BlindedPayInfoDecodeErrorZ BlindedPayInfo_read(struct LDKu8slice ser);
10241         public static native long BlindedPayInfo_read(byte[] ser);
10242         // void InvoiceError_free(struct LDKInvoiceError this_obj);
10243         public static native void InvoiceError_free(long this_obj);
10244         // struct LDKErroneousField InvoiceError_get_erroneous_field(const struct LDKInvoiceError *NONNULL_PTR this_ptr);
10245         public static native long InvoiceError_get_erroneous_field(long this_ptr);
10246         // void InvoiceError_set_erroneous_field(struct LDKInvoiceError *NONNULL_PTR this_ptr, struct LDKErroneousField val);
10247         public static native void InvoiceError_set_erroneous_field(long this_ptr, long val);
10248         // struct LDKUntrustedString InvoiceError_get_message(const struct LDKInvoiceError *NONNULL_PTR this_ptr);
10249         public static native long InvoiceError_get_message(long this_ptr);
10250         // void InvoiceError_set_message(struct LDKInvoiceError *NONNULL_PTR this_ptr, struct LDKUntrustedString val);
10251         public static native void InvoiceError_set_message(long this_ptr, long val);
10252         // MUST_USE_RES struct LDKInvoiceError InvoiceError_new(struct LDKErroneousField erroneous_field_arg, struct LDKUntrustedString message_arg);
10253         public static native long InvoiceError_new(long erroneous_field_arg, long message_arg);
10254         // uint64_t InvoiceError_clone_ptr(LDKInvoiceError *NONNULL_PTR arg);
10255         public static native long InvoiceError_clone_ptr(long arg);
10256         // struct LDKInvoiceError InvoiceError_clone(const struct LDKInvoiceError *NONNULL_PTR orig);
10257         public static native long InvoiceError_clone(long orig);
10258         // void ErroneousField_free(struct LDKErroneousField this_obj);
10259         public static native void ErroneousField_free(long this_obj);
10260         // uint64_t ErroneousField_get_tlv_fieldnum(const struct LDKErroneousField *NONNULL_PTR this_ptr);
10261         public static native long ErroneousField_get_tlv_fieldnum(long this_ptr);
10262         // void ErroneousField_set_tlv_fieldnum(struct LDKErroneousField *NONNULL_PTR this_ptr, uint64_t val);
10263         public static native void ErroneousField_set_tlv_fieldnum(long this_ptr, long val);
10264         // struct LDKCOption_CVec_u8ZZ ErroneousField_get_suggested_value(const struct LDKErroneousField *NONNULL_PTR this_ptr);
10265         public static native long ErroneousField_get_suggested_value(long this_ptr);
10266         // void ErroneousField_set_suggested_value(struct LDKErroneousField *NONNULL_PTR this_ptr, struct LDKCOption_CVec_u8ZZ val);
10267         public static native void ErroneousField_set_suggested_value(long this_ptr, long val);
10268         // MUST_USE_RES struct LDKErroneousField ErroneousField_new(uint64_t tlv_fieldnum_arg, struct LDKCOption_CVec_u8ZZ suggested_value_arg);
10269         public static native long ErroneousField_new(long tlv_fieldnum_arg, long suggested_value_arg);
10270         // uint64_t ErroneousField_clone_ptr(LDKErroneousField *NONNULL_PTR arg);
10271         public static native long ErroneousField_clone_ptr(long arg);
10272         // struct LDKErroneousField ErroneousField_clone(const struct LDKErroneousField *NONNULL_PTR orig);
10273         public static native long ErroneousField_clone(long orig);
10274         // struct LDKCVec_u8Z InvoiceError_write(const struct LDKInvoiceError *NONNULL_PTR obj);
10275         public static native byte[] InvoiceError_write(long obj);
10276         // struct LDKCResult_InvoiceErrorDecodeErrorZ InvoiceError_read(struct LDKu8slice ser);
10277         public static native long InvoiceError_read(byte[] ser);
10278         // void UnsignedInvoiceRequest_free(struct LDKUnsignedInvoiceRequest this_obj);
10279         public static native void UnsignedInvoiceRequest_free(long this_obj);
10280         // MUST_USE_RES struct LDKTaggedHash UnsignedInvoiceRequest_tagged_hash(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10281         public static native long UnsignedInvoiceRequest_tagged_hash(long this_arg);
10282         // void InvoiceRequest_free(struct LDKInvoiceRequest this_obj);
10283         public static native void InvoiceRequest_free(long this_obj);
10284         // uint64_t InvoiceRequest_clone_ptr(LDKInvoiceRequest *NONNULL_PTR arg);
10285         public static native long InvoiceRequest_clone_ptr(long arg);
10286         // struct LDKInvoiceRequest InvoiceRequest_clone(const struct LDKInvoiceRequest *NONNULL_PTR orig);
10287         public static native long InvoiceRequest_clone(long orig);
10288         // void VerifiedInvoiceRequest_free(struct LDKVerifiedInvoiceRequest this_obj);
10289         public static native void VerifiedInvoiceRequest_free(long this_obj);
10290         // struct LDKCOption_SecretKeyZ VerifiedInvoiceRequest_get_keys(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_ptr);
10291         public static native long VerifiedInvoiceRequest_get_keys(long this_ptr);
10292         // void VerifiedInvoiceRequest_set_keys(struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_ptr, struct LDKCOption_SecretKeyZ val);
10293         public static native void VerifiedInvoiceRequest_set_keys(long this_ptr, long val);
10294         // uint64_t VerifiedInvoiceRequest_clone_ptr(LDKVerifiedInvoiceRequest *NONNULL_PTR arg);
10295         public static native long VerifiedInvoiceRequest_clone_ptr(long arg);
10296         // struct LDKVerifiedInvoiceRequest VerifiedInvoiceRequest_clone(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR orig);
10297         public static native long VerifiedInvoiceRequest_clone(long orig);
10298         // MUST_USE_RES struct LDKCVec_ThirtyTwoBytesZ UnsignedInvoiceRequest_chains(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10299         public static native byte[][] UnsignedInvoiceRequest_chains(long this_arg);
10300         // MUST_USE_RES struct LDKCOption_CVec_u8ZZ UnsignedInvoiceRequest_metadata(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10301         public static native long UnsignedInvoiceRequest_metadata(long this_arg);
10302         // MUST_USE_RES struct LDKAmount UnsignedInvoiceRequest_amount(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10303         public static native long UnsignedInvoiceRequest_amount(long this_arg);
10304         // MUST_USE_RES struct LDKPrintableString UnsignedInvoiceRequest_description(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10305         public static native long UnsignedInvoiceRequest_description(long this_arg);
10306         // MUST_USE_RES struct LDKOfferFeatures UnsignedInvoiceRequest_offer_features(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10307         public static native long UnsignedInvoiceRequest_offer_features(long this_arg);
10308         // MUST_USE_RES struct LDKCOption_u64Z UnsignedInvoiceRequest_absolute_expiry(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10309         public static native long UnsignedInvoiceRequest_absolute_expiry(long this_arg);
10310         // MUST_USE_RES struct LDKPrintableString UnsignedInvoiceRequest_issuer(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10311         public static native long UnsignedInvoiceRequest_issuer(long this_arg);
10312         // MUST_USE_RES struct LDKCVec_BlindedPathZ UnsignedInvoiceRequest_paths(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10313         public static native long[] UnsignedInvoiceRequest_paths(long this_arg);
10314         // MUST_USE_RES struct LDKQuantity UnsignedInvoiceRequest_supported_quantity(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10315         public static native long UnsignedInvoiceRequest_supported_quantity(long this_arg);
10316         // MUST_USE_RES struct LDKPublicKey UnsignedInvoiceRequest_signing_pubkey(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10317         public static native byte[] UnsignedInvoiceRequest_signing_pubkey(long this_arg);
10318         // MUST_USE_RES struct LDKu8slice UnsignedInvoiceRequest_payer_metadata(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10319         public static native byte[] UnsignedInvoiceRequest_payer_metadata(long this_arg);
10320         // MUST_USE_RES struct LDKThirtyTwoBytes UnsignedInvoiceRequest_chain(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10321         public static native byte[] UnsignedInvoiceRequest_chain(long this_arg);
10322         // MUST_USE_RES struct LDKCOption_u64Z UnsignedInvoiceRequest_amount_msats(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10323         public static native long UnsignedInvoiceRequest_amount_msats(long this_arg);
10324         // MUST_USE_RES struct LDKInvoiceRequestFeatures UnsignedInvoiceRequest_invoice_request_features(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10325         public static native long UnsignedInvoiceRequest_invoice_request_features(long this_arg);
10326         // MUST_USE_RES struct LDKCOption_u64Z UnsignedInvoiceRequest_quantity(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10327         public static native long UnsignedInvoiceRequest_quantity(long this_arg);
10328         // MUST_USE_RES struct LDKPublicKey UnsignedInvoiceRequest_payer_id(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10329         public static native byte[] UnsignedInvoiceRequest_payer_id(long this_arg);
10330         // MUST_USE_RES struct LDKPrintableString UnsignedInvoiceRequest_payer_note(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR this_arg);
10331         public static native long UnsignedInvoiceRequest_payer_note(long this_arg);
10332         // MUST_USE_RES struct LDKCVec_ThirtyTwoBytesZ InvoiceRequest_chains(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10333         public static native byte[][] InvoiceRequest_chains(long this_arg);
10334         // MUST_USE_RES struct LDKCOption_CVec_u8ZZ InvoiceRequest_metadata(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10335         public static native long InvoiceRequest_metadata(long this_arg);
10336         // MUST_USE_RES struct LDKAmount InvoiceRequest_amount(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10337         public static native long InvoiceRequest_amount(long this_arg);
10338         // MUST_USE_RES struct LDKPrintableString InvoiceRequest_description(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10339         public static native long InvoiceRequest_description(long this_arg);
10340         // MUST_USE_RES struct LDKOfferFeatures InvoiceRequest_offer_features(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10341         public static native long InvoiceRequest_offer_features(long this_arg);
10342         // MUST_USE_RES struct LDKCOption_u64Z InvoiceRequest_absolute_expiry(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10343         public static native long InvoiceRequest_absolute_expiry(long this_arg);
10344         // MUST_USE_RES struct LDKPrintableString InvoiceRequest_issuer(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10345         public static native long InvoiceRequest_issuer(long this_arg);
10346         // MUST_USE_RES struct LDKCVec_BlindedPathZ InvoiceRequest_paths(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10347         public static native long[] InvoiceRequest_paths(long this_arg);
10348         // MUST_USE_RES struct LDKQuantity InvoiceRequest_supported_quantity(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10349         public static native long InvoiceRequest_supported_quantity(long this_arg);
10350         // MUST_USE_RES struct LDKPublicKey InvoiceRequest_signing_pubkey(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10351         public static native byte[] InvoiceRequest_signing_pubkey(long this_arg);
10352         // MUST_USE_RES struct LDKu8slice InvoiceRequest_payer_metadata(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10353         public static native byte[] InvoiceRequest_payer_metadata(long this_arg);
10354         // MUST_USE_RES struct LDKThirtyTwoBytes InvoiceRequest_chain(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10355         public static native byte[] InvoiceRequest_chain(long this_arg);
10356         // MUST_USE_RES struct LDKCOption_u64Z InvoiceRequest_amount_msats(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10357         public static native long InvoiceRequest_amount_msats(long this_arg);
10358         // MUST_USE_RES struct LDKInvoiceRequestFeatures InvoiceRequest_invoice_request_features(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10359         public static native long InvoiceRequest_invoice_request_features(long this_arg);
10360         // MUST_USE_RES struct LDKCOption_u64Z InvoiceRequest_quantity(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10361         public static native long InvoiceRequest_quantity(long this_arg);
10362         // MUST_USE_RES struct LDKPublicKey InvoiceRequest_payer_id(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10363         public static native byte[] InvoiceRequest_payer_id(long this_arg);
10364         // MUST_USE_RES struct LDKPrintableString InvoiceRequest_payer_note(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10365         public static native long InvoiceRequest_payer_note(long this_arg);
10366         // MUST_USE_RES struct LDKSchnorrSignature InvoiceRequest_signature(const struct LDKInvoiceRequest *NONNULL_PTR this_arg);
10367         public static native byte[] InvoiceRequest_signature(long this_arg);
10368         // MUST_USE_RES struct LDKCResult_VerifiedInvoiceRequestNoneZ InvoiceRequest_verify(struct LDKInvoiceRequest this_arg, const struct LDKExpandedKey *NONNULL_PTR key);
10369         public static native long InvoiceRequest_verify(long this_arg, long key);
10370         // MUST_USE_RES struct LDKCVec_ThirtyTwoBytesZ VerifiedInvoiceRequest_chains(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10371         public static native byte[][] VerifiedInvoiceRequest_chains(long this_arg);
10372         // MUST_USE_RES struct LDKCOption_CVec_u8ZZ VerifiedInvoiceRequest_metadata(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10373         public static native long VerifiedInvoiceRequest_metadata(long this_arg);
10374         // MUST_USE_RES struct LDKAmount VerifiedInvoiceRequest_amount(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10375         public static native long VerifiedInvoiceRequest_amount(long this_arg);
10376         // MUST_USE_RES struct LDKPrintableString VerifiedInvoiceRequest_description(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10377         public static native long VerifiedInvoiceRequest_description(long this_arg);
10378         // MUST_USE_RES struct LDKOfferFeatures VerifiedInvoiceRequest_offer_features(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10379         public static native long VerifiedInvoiceRequest_offer_features(long this_arg);
10380         // MUST_USE_RES struct LDKCOption_u64Z VerifiedInvoiceRequest_absolute_expiry(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10381         public static native long VerifiedInvoiceRequest_absolute_expiry(long this_arg);
10382         // MUST_USE_RES struct LDKPrintableString VerifiedInvoiceRequest_issuer(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10383         public static native long VerifiedInvoiceRequest_issuer(long this_arg);
10384         // MUST_USE_RES struct LDKCVec_BlindedPathZ VerifiedInvoiceRequest_paths(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10385         public static native long[] VerifiedInvoiceRequest_paths(long this_arg);
10386         // MUST_USE_RES struct LDKQuantity VerifiedInvoiceRequest_supported_quantity(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10387         public static native long VerifiedInvoiceRequest_supported_quantity(long this_arg);
10388         // MUST_USE_RES struct LDKPublicKey VerifiedInvoiceRequest_signing_pubkey(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10389         public static native byte[] VerifiedInvoiceRequest_signing_pubkey(long this_arg);
10390         // MUST_USE_RES struct LDKu8slice VerifiedInvoiceRequest_payer_metadata(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10391         public static native byte[] VerifiedInvoiceRequest_payer_metadata(long this_arg);
10392         // MUST_USE_RES struct LDKThirtyTwoBytes VerifiedInvoiceRequest_chain(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10393         public static native byte[] VerifiedInvoiceRequest_chain(long this_arg);
10394         // MUST_USE_RES struct LDKCOption_u64Z VerifiedInvoiceRequest_amount_msats(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10395         public static native long VerifiedInvoiceRequest_amount_msats(long this_arg);
10396         // MUST_USE_RES struct LDKInvoiceRequestFeatures VerifiedInvoiceRequest_invoice_request_features(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10397         public static native long VerifiedInvoiceRequest_invoice_request_features(long this_arg);
10398         // MUST_USE_RES struct LDKCOption_u64Z VerifiedInvoiceRequest_quantity(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10399         public static native long VerifiedInvoiceRequest_quantity(long this_arg);
10400         // MUST_USE_RES struct LDKPublicKey VerifiedInvoiceRequest_payer_id(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10401         public static native byte[] VerifiedInvoiceRequest_payer_id(long this_arg);
10402         // MUST_USE_RES struct LDKPrintableString VerifiedInvoiceRequest_payer_note(const struct LDKVerifiedInvoiceRequest *NONNULL_PTR this_arg);
10403         public static native long VerifiedInvoiceRequest_payer_note(long this_arg);
10404         // struct LDKCVec_u8Z UnsignedInvoiceRequest_write(const struct LDKUnsignedInvoiceRequest *NONNULL_PTR obj);
10405         public static native byte[] UnsignedInvoiceRequest_write(long obj);
10406         // struct LDKCVec_u8Z InvoiceRequest_write(const struct LDKInvoiceRequest *NONNULL_PTR obj);
10407         public static native byte[] InvoiceRequest_write(long obj);
10408         // void TaggedHash_free(struct LDKTaggedHash this_obj);
10409         public static native void TaggedHash_free(long this_obj);
10410         // void Bolt12ParseError_free(struct LDKBolt12ParseError this_obj);
10411         public static native void Bolt12ParseError_free(long this_obj);
10412         // uint64_t Bolt12ParseError_clone_ptr(LDKBolt12ParseError *NONNULL_PTR arg);
10413         public static native long Bolt12ParseError_clone_ptr(long arg);
10414         // struct LDKBolt12ParseError Bolt12ParseError_clone(const struct LDKBolt12ParseError *NONNULL_PTR orig);
10415         public static native long Bolt12ParseError_clone(long orig);
10416         // enum LDKBolt12SemanticError Bolt12SemanticError_clone(const enum LDKBolt12SemanticError *NONNULL_PTR orig);
10417         public static native Bolt12SemanticError Bolt12SemanticError_clone(long orig);
10418         // enum LDKBolt12SemanticError Bolt12SemanticError_already_expired(void);
10419         public static native Bolt12SemanticError Bolt12SemanticError_already_expired();
10420         // enum LDKBolt12SemanticError Bolt12SemanticError_unsupported_chain(void);
10421         public static native Bolt12SemanticError Bolt12SemanticError_unsupported_chain();
10422         // enum LDKBolt12SemanticError Bolt12SemanticError_unexpected_chain(void);
10423         public static native Bolt12SemanticError Bolt12SemanticError_unexpected_chain();
10424         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_amount(void);
10425         public static native Bolt12SemanticError Bolt12SemanticError_missing_amount();
10426         // enum LDKBolt12SemanticError Bolt12SemanticError_invalid_amount(void);
10427         public static native Bolt12SemanticError Bolt12SemanticError_invalid_amount();
10428         // enum LDKBolt12SemanticError Bolt12SemanticError_insufficient_amount(void);
10429         public static native Bolt12SemanticError Bolt12SemanticError_insufficient_amount();
10430         // enum LDKBolt12SemanticError Bolt12SemanticError_unexpected_amount(void);
10431         public static native Bolt12SemanticError Bolt12SemanticError_unexpected_amount();
10432         // enum LDKBolt12SemanticError Bolt12SemanticError_unsupported_currency(void);
10433         public static native Bolt12SemanticError Bolt12SemanticError_unsupported_currency();
10434         // enum LDKBolt12SemanticError Bolt12SemanticError_unknown_required_features(void);
10435         public static native Bolt12SemanticError Bolt12SemanticError_unknown_required_features();
10436         // enum LDKBolt12SemanticError Bolt12SemanticError_unexpected_features(void);
10437         public static native Bolt12SemanticError Bolt12SemanticError_unexpected_features();
10438         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_description(void);
10439         public static native Bolt12SemanticError Bolt12SemanticError_missing_description();
10440         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_signing_pubkey(void);
10441         public static native Bolt12SemanticError Bolt12SemanticError_missing_signing_pubkey();
10442         // enum LDKBolt12SemanticError Bolt12SemanticError_invalid_signing_pubkey(void);
10443         public static native Bolt12SemanticError Bolt12SemanticError_invalid_signing_pubkey();
10444         // enum LDKBolt12SemanticError Bolt12SemanticError_unexpected_signing_pubkey(void);
10445         public static native Bolt12SemanticError Bolt12SemanticError_unexpected_signing_pubkey();
10446         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_quantity(void);
10447         public static native Bolt12SemanticError Bolt12SemanticError_missing_quantity();
10448         // enum LDKBolt12SemanticError Bolt12SemanticError_invalid_quantity(void);
10449         public static native Bolt12SemanticError Bolt12SemanticError_invalid_quantity();
10450         // enum LDKBolt12SemanticError Bolt12SemanticError_unexpected_quantity(void);
10451         public static native Bolt12SemanticError Bolt12SemanticError_unexpected_quantity();
10452         // enum LDKBolt12SemanticError Bolt12SemanticError_invalid_metadata(void);
10453         public static native Bolt12SemanticError Bolt12SemanticError_invalid_metadata();
10454         // enum LDKBolt12SemanticError Bolt12SemanticError_unexpected_metadata(void);
10455         public static native Bolt12SemanticError Bolt12SemanticError_unexpected_metadata();
10456         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_payer_metadata(void);
10457         public static native Bolt12SemanticError Bolt12SemanticError_missing_payer_metadata();
10458         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_payer_id(void);
10459         public static native Bolt12SemanticError Bolt12SemanticError_missing_payer_id();
10460         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_paths(void);
10461         public static native Bolt12SemanticError Bolt12SemanticError_missing_paths();
10462         // enum LDKBolt12SemanticError Bolt12SemanticError_invalid_pay_info(void);
10463         public static native Bolt12SemanticError Bolt12SemanticError_invalid_pay_info();
10464         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_creation_time(void);
10465         public static native Bolt12SemanticError Bolt12SemanticError_missing_creation_time();
10466         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_payment_hash(void);
10467         public static native Bolt12SemanticError Bolt12SemanticError_missing_payment_hash();
10468         // enum LDKBolt12SemanticError Bolt12SemanticError_missing_signature(void);
10469         public static native Bolt12SemanticError Bolt12SemanticError_missing_signature();
10470         // void Refund_free(struct LDKRefund this_obj);
10471         public static native void Refund_free(long this_obj);
10472         // uint64_t Refund_clone_ptr(LDKRefund *NONNULL_PTR arg);
10473         public static native long Refund_clone_ptr(long arg);
10474         // struct LDKRefund Refund_clone(const struct LDKRefund *NONNULL_PTR orig);
10475         public static native long Refund_clone(long orig);
10476         // MUST_USE_RES struct LDKPrintableString Refund_description(const struct LDKRefund *NONNULL_PTR this_arg);
10477         public static native long Refund_description(long this_arg);
10478         // MUST_USE_RES struct LDKCOption_u64Z Refund_absolute_expiry(const struct LDKRefund *NONNULL_PTR this_arg);
10479         public static native long Refund_absolute_expiry(long this_arg);
10480         // MUST_USE_RES bool Refund_is_expired(const struct LDKRefund *NONNULL_PTR this_arg);
10481         public static native boolean Refund_is_expired(long this_arg);
10482         // MUST_USE_RES struct LDKPrintableString Refund_issuer(const struct LDKRefund *NONNULL_PTR this_arg);
10483         public static native long Refund_issuer(long this_arg);
10484         // MUST_USE_RES struct LDKCVec_BlindedPathZ Refund_paths(const struct LDKRefund *NONNULL_PTR this_arg);
10485         public static native long[] Refund_paths(long this_arg);
10486         // MUST_USE_RES struct LDKu8slice Refund_payer_metadata(const struct LDKRefund *NONNULL_PTR this_arg);
10487         public static native byte[] Refund_payer_metadata(long this_arg);
10488         // MUST_USE_RES struct LDKThirtyTwoBytes Refund_chain(const struct LDKRefund *NONNULL_PTR this_arg);
10489         public static native byte[] Refund_chain(long this_arg);
10490         // MUST_USE_RES uint64_t Refund_amount_msats(const struct LDKRefund *NONNULL_PTR this_arg);
10491         public static native long Refund_amount_msats(long this_arg);
10492         // MUST_USE_RES struct LDKInvoiceRequestFeatures Refund_features(const struct LDKRefund *NONNULL_PTR this_arg);
10493         public static native long Refund_features(long this_arg);
10494         // MUST_USE_RES struct LDKCOption_u64Z Refund_quantity(const struct LDKRefund *NONNULL_PTR this_arg);
10495         public static native long Refund_quantity(long this_arg);
10496         // MUST_USE_RES struct LDKPublicKey Refund_payer_id(const struct LDKRefund *NONNULL_PTR this_arg);
10497         public static native byte[] Refund_payer_id(long this_arg);
10498         // MUST_USE_RES struct LDKPrintableString Refund_payer_note(const struct LDKRefund *NONNULL_PTR this_arg);
10499         public static native long Refund_payer_note(long this_arg);
10500         // struct LDKCVec_u8Z Refund_write(const struct LDKRefund *NONNULL_PTR obj);
10501         public static native byte[] Refund_write(long obj);
10502         // struct LDKCResult_RefundBolt12ParseErrorZ Refund_from_str(struct LDKStr s);
10503         public static native long Refund_from_str(String s);
10504         // enum LDKUtxoLookupError UtxoLookupError_clone(const enum LDKUtxoLookupError *NONNULL_PTR orig);
10505         public static native UtxoLookupError UtxoLookupError_clone(long orig);
10506         // enum LDKUtxoLookupError UtxoLookupError_unknown_chain(void);
10507         public static native UtxoLookupError UtxoLookupError_unknown_chain();
10508         // enum LDKUtxoLookupError UtxoLookupError_unknown_tx(void);
10509         public static native UtxoLookupError UtxoLookupError_unknown_tx();
10510         // void UtxoResult_free(struct LDKUtxoResult this_ptr);
10511         public static native void UtxoResult_free(long this_ptr);
10512         // uint64_t UtxoResult_clone_ptr(LDKUtxoResult *NONNULL_PTR arg);
10513         public static native long UtxoResult_clone_ptr(long arg);
10514         // struct LDKUtxoResult UtxoResult_clone(const struct LDKUtxoResult *NONNULL_PTR orig);
10515         public static native long UtxoResult_clone(long orig);
10516         // struct LDKUtxoResult UtxoResult_sync(struct LDKCResult_TxOutUtxoLookupErrorZ a);
10517         public static native long UtxoResult_sync(long a);
10518         // struct LDKUtxoResult UtxoResult_async(struct LDKUtxoFuture a);
10519         public static native long UtxoResult_async(long a);
10520         // void UtxoLookup_free(struct LDKUtxoLookup this_ptr);
10521         public static native void UtxoLookup_free(long this_ptr);
10522         // void UtxoFuture_free(struct LDKUtxoFuture this_obj);
10523         public static native void UtxoFuture_free(long this_obj);
10524         // uint64_t UtxoFuture_clone_ptr(LDKUtxoFuture *NONNULL_PTR arg);
10525         public static native long UtxoFuture_clone_ptr(long arg);
10526         // struct LDKUtxoFuture UtxoFuture_clone(const struct LDKUtxoFuture *NONNULL_PTR orig);
10527         public static native long UtxoFuture_clone(long orig);
10528         // MUST_USE_RES struct LDKUtxoFuture UtxoFuture_new(void);
10529         public static native long UtxoFuture_new();
10530         // void UtxoFuture_resolve_without_forwarding(const struct LDKUtxoFuture *NONNULL_PTR this_arg, const struct LDKNetworkGraph *NONNULL_PTR graph, struct LDKCResult_TxOutUtxoLookupErrorZ result);
10531         public static native void UtxoFuture_resolve_without_forwarding(long this_arg, long graph, long result);
10532         // void UtxoFuture_resolve(const struct LDKUtxoFuture *NONNULL_PTR this_arg, const struct LDKNetworkGraph *NONNULL_PTR graph, const struct LDKP2PGossipSync *NONNULL_PTR gossip, struct LDKCResult_TxOutUtxoLookupErrorZ result);
10533         public static native void UtxoFuture_resolve(long this_arg, long graph, long gossip, long result);
10534         // void NodeId_free(struct LDKNodeId this_obj);
10535         public static native void NodeId_free(long this_obj);
10536         // uint64_t NodeId_clone_ptr(LDKNodeId *NONNULL_PTR arg);
10537         public static native long NodeId_clone_ptr(long arg);
10538         // struct LDKNodeId NodeId_clone(const struct LDKNodeId *NONNULL_PTR orig);
10539         public static native long NodeId_clone(long orig);
10540         // MUST_USE_RES struct LDKNodeId NodeId_from_pubkey(struct LDKPublicKey pubkey);
10541         public static native long NodeId_from_pubkey(byte[] pubkey);
10542         // MUST_USE_RES struct LDKu8slice NodeId_as_slice(const struct LDKNodeId *NONNULL_PTR this_arg);
10543         public static native byte[] NodeId_as_slice(long this_arg);
10544         // MUST_USE_RES struct LDKCResult_PublicKeySecp256k1ErrorZ NodeId_as_pubkey(const struct LDKNodeId *NONNULL_PTR this_arg);
10545         public static native long NodeId_as_pubkey(long this_arg);
10546         // uint64_t NodeId_hash(const struct LDKNodeId *NONNULL_PTR o);
10547         public static native long NodeId_hash(long o);
10548         // struct LDKCVec_u8Z NodeId_write(const struct LDKNodeId *NONNULL_PTR obj);
10549         public static native byte[] NodeId_write(long obj);
10550         // struct LDKCResult_NodeIdDecodeErrorZ NodeId_read(struct LDKu8slice ser);
10551         public static native long NodeId_read(byte[] ser);
10552         // void NetworkGraph_free(struct LDKNetworkGraph this_obj);
10553         public static native void NetworkGraph_free(long this_obj);
10554         // void ReadOnlyNetworkGraph_free(struct LDKReadOnlyNetworkGraph this_obj);
10555         public static native void ReadOnlyNetworkGraph_free(long this_obj);
10556         // void NetworkUpdate_free(struct LDKNetworkUpdate this_ptr);
10557         public static native void NetworkUpdate_free(long this_ptr);
10558         // uint64_t NetworkUpdate_clone_ptr(LDKNetworkUpdate *NONNULL_PTR arg);
10559         public static native long NetworkUpdate_clone_ptr(long arg);
10560         // struct LDKNetworkUpdate NetworkUpdate_clone(const struct LDKNetworkUpdate *NONNULL_PTR orig);
10561         public static native long NetworkUpdate_clone(long orig);
10562         // struct LDKNetworkUpdate NetworkUpdate_channel_update_message(struct LDKChannelUpdate msg);
10563         public static native long NetworkUpdate_channel_update_message(long msg);
10564         // struct LDKNetworkUpdate NetworkUpdate_channel_failure(uint64_t short_channel_id, bool is_permanent);
10565         public static native long NetworkUpdate_channel_failure(long short_channel_id, boolean is_permanent);
10566         // struct LDKNetworkUpdate NetworkUpdate_node_failure(struct LDKPublicKey node_id, bool is_permanent);
10567         public static native long NetworkUpdate_node_failure(byte[] node_id, boolean is_permanent);
10568         // bool NetworkUpdate_eq(const struct LDKNetworkUpdate *NONNULL_PTR a, const struct LDKNetworkUpdate *NONNULL_PTR b);
10569         public static native boolean NetworkUpdate_eq(long a, long b);
10570         // struct LDKCVec_u8Z NetworkUpdate_write(const struct LDKNetworkUpdate *NONNULL_PTR obj);
10571         public static native byte[] NetworkUpdate_write(long obj);
10572         // struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ NetworkUpdate_read(struct LDKu8slice ser);
10573         public static native long NetworkUpdate_read(byte[] ser);
10574         // void P2PGossipSync_free(struct LDKP2PGossipSync this_obj);
10575         public static native void P2PGossipSync_free(long this_obj);
10576         // MUST_USE_RES struct LDKP2PGossipSync P2PGossipSync_new(const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKCOption_UtxoLookupZ utxo_lookup, struct LDKLogger logger);
10577         public static native long P2PGossipSync_new(long network_graph, long utxo_lookup, long logger);
10578         // void P2PGossipSync_add_utxo_lookup(const struct LDKP2PGossipSync *NONNULL_PTR this_arg, struct LDKCOption_UtxoLookupZ utxo_lookup);
10579         public static native void P2PGossipSync_add_utxo_lookup(long this_arg, long utxo_lookup);
10580         // void NetworkGraph_handle_network_update(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKNetworkUpdate *NONNULL_PTR network_update);
10581         public static native void NetworkGraph_handle_network_update(long this_arg, long network_update);
10582         // MUST_USE_RES struct LDKThirtyTwoBytes NetworkGraph_get_genesis_hash(const struct LDKNetworkGraph *NONNULL_PTR this_arg);
10583         public static native byte[] NetworkGraph_get_genesis_hash(long this_arg);
10584         // struct LDKCResult_NoneLightningErrorZ verify_node_announcement(const struct LDKNodeAnnouncement *NONNULL_PTR msg);
10585         public static native long verify_node_announcement(long msg);
10586         // struct LDKCResult_NoneLightningErrorZ verify_channel_announcement(const struct LDKChannelAnnouncement *NONNULL_PTR msg);
10587         public static native long verify_channel_announcement(long msg);
10588         // struct LDKRoutingMessageHandler P2PGossipSync_as_RoutingMessageHandler(const struct LDKP2PGossipSync *NONNULL_PTR this_arg);
10589         public static native long P2PGossipSync_as_RoutingMessageHandler(long this_arg);
10590         // struct LDKMessageSendEventsProvider P2PGossipSync_as_MessageSendEventsProvider(const struct LDKP2PGossipSync *NONNULL_PTR this_arg);
10591         public static native long P2PGossipSync_as_MessageSendEventsProvider(long this_arg);
10592         // void ChannelUpdateInfo_free(struct LDKChannelUpdateInfo this_obj);
10593         public static native void ChannelUpdateInfo_free(long this_obj);
10594         // uint32_t ChannelUpdateInfo_get_last_update(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
10595         public static native int ChannelUpdateInfo_get_last_update(long this_ptr);
10596         // void ChannelUpdateInfo_set_last_update(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, uint32_t val);
10597         public static native void ChannelUpdateInfo_set_last_update(long this_ptr, int val);
10598         // bool ChannelUpdateInfo_get_enabled(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
10599         public static native boolean ChannelUpdateInfo_get_enabled(long this_ptr);
10600         // void ChannelUpdateInfo_set_enabled(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, bool val);
10601         public static native void ChannelUpdateInfo_set_enabled(long this_ptr, boolean val);
10602         // uint16_t ChannelUpdateInfo_get_cltv_expiry_delta(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
10603         public static native short ChannelUpdateInfo_get_cltv_expiry_delta(long this_ptr);
10604         // void ChannelUpdateInfo_set_cltv_expiry_delta(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, uint16_t val);
10605         public static native void ChannelUpdateInfo_set_cltv_expiry_delta(long this_ptr, short val);
10606         // uint64_t ChannelUpdateInfo_get_htlc_minimum_msat(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
10607         public static native long ChannelUpdateInfo_get_htlc_minimum_msat(long this_ptr);
10608         // void ChannelUpdateInfo_set_htlc_minimum_msat(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, uint64_t val);
10609         public static native void ChannelUpdateInfo_set_htlc_minimum_msat(long this_ptr, long val);
10610         // uint64_t ChannelUpdateInfo_get_htlc_maximum_msat(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
10611         public static native long ChannelUpdateInfo_get_htlc_maximum_msat(long this_ptr);
10612         // void ChannelUpdateInfo_set_htlc_maximum_msat(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, uint64_t val);
10613         public static native void ChannelUpdateInfo_set_htlc_maximum_msat(long this_ptr, long val);
10614         // struct LDKRoutingFees ChannelUpdateInfo_get_fees(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
10615         public static native long ChannelUpdateInfo_get_fees(long this_ptr);
10616         // void ChannelUpdateInfo_set_fees(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, struct LDKRoutingFees val);
10617         public static native void ChannelUpdateInfo_set_fees(long this_ptr, long val);
10618         // struct LDKChannelUpdate ChannelUpdateInfo_get_last_update_message(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
10619         public static native long ChannelUpdateInfo_get_last_update_message(long this_ptr);
10620         // void ChannelUpdateInfo_set_last_update_message(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, struct LDKChannelUpdate val);
10621         public static native void ChannelUpdateInfo_set_last_update_message(long this_ptr, long val);
10622         // MUST_USE_RES struct LDKChannelUpdateInfo ChannelUpdateInfo_new(uint32_t last_update_arg, bool enabled_arg, uint16_t cltv_expiry_delta_arg, uint64_t htlc_minimum_msat_arg, uint64_t htlc_maximum_msat_arg, struct LDKRoutingFees fees_arg, struct LDKChannelUpdate last_update_message_arg);
10623         public static native long ChannelUpdateInfo_new(int last_update_arg, boolean enabled_arg, short cltv_expiry_delta_arg, long htlc_minimum_msat_arg, long htlc_maximum_msat_arg, long fees_arg, long last_update_message_arg);
10624         // uint64_t ChannelUpdateInfo_clone_ptr(LDKChannelUpdateInfo *NONNULL_PTR arg);
10625         public static native long ChannelUpdateInfo_clone_ptr(long arg);
10626         // struct LDKChannelUpdateInfo ChannelUpdateInfo_clone(const struct LDKChannelUpdateInfo *NONNULL_PTR orig);
10627         public static native long ChannelUpdateInfo_clone(long orig);
10628         // bool ChannelUpdateInfo_eq(const struct LDKChannelUpdateInfo *NONNULL_PTR a, const struct LDKChannelUpdateInfo *NONNULL_PTR b);
10629         public static native boolean ChannelUpdateInfo_eq(long a, long b);
10630         // struct LDKCVec_u8Z ChannelUpdateInfo_write(const struct LDKChannelUpdateInfo *NONNULL_PTR obj);
10631         public static native byte[] ChannelUpdateInfo_write(long obj);
10632         // struct LDKCResult_ChannelUpdateInfoDecodeErrorZ ChannelUpdateInfo_read(struct LDKu8slice ser);
10633         public static native long ChannelUpdateInfo_read(byte[] ser);
10634         // void ChannelInfo_free(struct LDKChannelInfo this_obj);
10635         public static native void ChannelInfo_free(long this_obj);
10636         // struct LDKChannelFeatures ChannelInfo_get_features(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
10637         public static native long ChannelInfo_get_features(long this_ptr);
10638         // void ChannelInfo_set_features(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKChannelFeatures val);
10639         public static native void ChannelInfo_set_features(long this_ptr, long val);
10640         // struct LDKNodeId ChannelInfo_get_node_one(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
10641         public static native long ChannelInfo_get_node_one(long this_ptr);
10642         // void ChannelInfo_set_node_one(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKNodeId val);
10643         public static native void ChannelInfo_set_node_one(long this_ptr, long val);
10644         // struct LDKChannelUpdateInfo ChannelInfo_get_one_to_two(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
10645         public static native long ChannelInfo_get_one_to_two(long this_ptr);
10646         // void ChannelInfo_set_one_to_two(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKChannelUpdateInfo val);
10647         public static native void ChannelInfo_set_one_to_two(long this_ptr, long val);
10648         // struct LDKNodeId ChannelInfo_get_node_two(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
10649         public static native long ChannelInfo_get_node_two(long this_ptr);
10650         // void ChannelInfo_set_node_two(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKNodeId val);
10651         public static native void ChannelInfo_set_node_two(long this_ptr, long val);
10652         // struct LDKChannelUpdateInfo ChannelInfo_get_two_to_one(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
10653         public static native long ChannelInfo_get_two_to_one(long this_ptr);
10654         // void ChannelInfo_set_two_to_one(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKChannelUpdateInfo val);
10655         public static native void ChannelInfo_set_two_to_one(long this_ptr, long val);
10656         // struct LDKCOption_u64Z ChannelInfo_get_capacity_sats(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
10657         public static native long ChannelInfo_get_capacity_sats(long this_ptr);
10658         // void ChannelInfo_set_capacity_sats(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
10659         public static native void ChannelInfo_set_capacity_sats(long this_ptr, long val);
10660         // struct LDKChannelAnnouncement ChannelInfo_get_announcement_message(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
10661         public static native long ChannelInfo_get_announcement_message(long this_ptr);
10662         // void ChannelInfo_set_announcement_message(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKChannelAnnouncement val);
10663         public static native void ChannelInfo_set_announcement_message(long this_ptr, long val);
10664         // uint64_t ChannelInfo_clone_ptr(LDKChannelInfo *NONNULL_PTR arg);
10665         public static native long ChannelInfo_clone_ptr(long arg);
10666         // struct LDKChannelInfo ChannelInfo_clone(const struct LDKChannelInfo *NONNULL_PTR orig);
10667         public static native long ChannelInfo_clone(long orig);
10668         // bool ChannelInfo_eq(const struct LDKChannelInfo *NONNULL_PTR a, const struct LDKChannelInfo *NONNULL_PTR b);
10669         public static native boolean ChannelInfo_eq(long a, long b);
10670         // MUST_USE_RES struct LDKChannelUpdateInfo ChannelInfo_get_directional_info(const struct LDKChannelInfo *NONNULL_PTR this_arg, uint8_t channel_flags);
10671         public static native long ChannelInfo_get_directional_info(long this_arg, byte channel_flags);
10672         // struct LDKCVec_u8Z ChannelInfo_write(const struct LDKChannelInfo *NONNULL_PTR obj);
10673         public static native byte[] ChannelInfo_write(long obj);
10674         // struct LDKCResult_ChannelInfoDecodeErrorZ ChannelInfo_read(struct LDKu8slice ser);
10675         public static native long ChannelInfo_read(byte[] ser);
10676         // void DirectedChannelInfo_free(struct LDKDirectedChannelInfo this_obj);
10677         public static native void DirectedChannelInfo_free(long this_obj);
10678         // uint64_t DirectedChannelInfo_clone_ptr(LDKDirectedChannelInfo *NONNULL_PTR arg);
10679         public static native long DirectedChannelInfo_clone_ptr(long arg);
10680         // struct LDKDirectedChannelInfo DirectedChannelInfo_clone(const struct LDKDirectedChannelInfo *NONNULL_PTR orig);
10681         public static native long DirectedChannelInfo_clone(long orig);
10682         // MUST_USE_RES struct LDKChannelInfo DirectedChannelInfo_channel(const struct LDKDirectedChannelInfo *NONNULL_PTR this_arg);
10683         public static native long DirectedChannelInfo_channel(long this_arg);
10684         // MUST_USE_RES uint64_t DirectedChannelInfo_htlc_maximum_msat(const struct LDKDirectedChannelInfo *NONNULL_PTR this_arg);
10685         public static native long DirectedChannelInfo_htlc_maximum_msat(long this_arg);
10686         // MUST_USE_RES struct LDKEffectiveCapacity DirectedChannelInfo_effective_capacity(const struct LDKDirectedChannelInfo *NONNULL_PTR this_arg);
10687         public static native long DirectedChannelInfo_effective_capacity(long this_arg);
10688         // void EffectiveCapacity_free(struct LDKEffectiveCapacity this_ptr);
10689         public static native void EffectiveCapacity_free(long this_ptr);
10690         // uint64_t EffectiveCapacity_clone_ptr(LDKEffectiveCapacity *NONNULL_PTR arg);
10691         public static native long EffectiveCapacity_clone_ptr(long arg);
10692         // struct LDKEffectiveCapacity EffectiveCapacity_clone(const struct LDKEffectiveCapacity *NONNULL_PTR orig);
10693         public static native long EffectiveCapacity_clone(long orig);
10694         // struct LDKEffectiveCapacity EffectiveCapacity_exact_liquidity(uint64_t liquidity_msat);
10695         public static native long EffectiveCapacity_exact_liquidity(long liquidity_msat);
10696         // struct LDKEffectiveCapacity EffectiveCapacity_advertised_max_htlc(uint64_t amount_msat);
10697         public static native long EffectiveCapacity_advertised_max_htlc(long amount_msat);
10698         // struct LDKEffectiveCapacity EffectiveCapacity_total(uint64_t capacity_msat, uint64_t htlc_maximum_msat);
10699         public static native long EffectiveCapacity_total(long capacity_msat, long htlc_maximum_msat);
10700         // struct LDKEffectiveCapacity EffectiveCapacity_infinite(void);
10701         public static native long EffectiveCapacity_infinite();
10702         // struct LDKEffectiveCapacity EffectiveCapacity_hint_max_htlc(uint64_t amount_msat);
10703         public static native long EffectiveCapacity_hint_max_htlc(long amount_msat);
10704         // struct LDKEffectiveCapacity EffectiveCapacity_unknown(void);
10705         public static native long EffectiveCapacity_unknown();
10706         // MUST_USE_RES uint64_t EffectiveCapacity_as_msat(const struct LDKEffectiveCapacity *NONNULL_PTR this_arg);
10707         public static native long EffectiveCapacity_as_msat(long this_arg);
10708         // void RoutingFees_free(struct LDKRoutingFees this_obj);
10709         public static native void RoutingFees_free(long this_obj);
10710         // uint32_t RoutingFees_get_base_msat(const struct LDKRoutingFees *NONNULL_PTR this_ptr);
10711         public static native int RoutingFees_get_base_msat(long this_ptr);
10712         // void RoutingFees_set_base_msat(struct LDKRoutingFees *NONNULL_PTR this_ptr, uint32_t val);
10713         public static native void RoutingFees_set_base_msat(long this_ptr, int val);
10714         // uint32_t RoutingFees_get_proportional_millionths(const struct LDKRoutingFees *NONNULL_PTR this_ptr);
10715         public static native int RoutingFees_get_proportional_millionths(long this_ptr);
10716         // void RoutingFees_set_proportional_millionths(struct LDKRoutingFees *NONNULL_PTR this_ptr, uint32_t val);
10717         public static native void RoutingFees_set_proportional_millionths(long this_ptr, int val);
10718         // MUST_USE_RES struct LDKRoutingFees RoutingFees_new(uint32_t base_msat_arg, uint32_t proportional_millionths_arg);
10719         public static native long RoutingFees_new(int base_msat_arg, int proportional_millionths_arg);
10720         // bool RoutingFees_eq(const struct LDKRoutingFees *NONNULL_PTR a, const struct LDKRoutingFees *NONNULL_PTR b);
10721         public static native boolean RoutingFees_eq(long a, long b);
10722         // uint64_t RoutingFees_clone_ptr(LDKRoutingFees *NONNULL_PTR arg);
10723         public static native long RoutingFees_clone_ptr(long arg);
10724         // struct LDKRoutingFees RoutingFees_clone(const struct LDKRoutingFees *NONNULL_PTR orig);
10725         public static native long RoutingFees_clone(long orig);
10726         // uint64_t RoutingFees_hash(const struct LDKRoutingFees *NONNULL_PTR o);
10727         public static native long RoutingFees_hash(long o);
10728         // struct LDKCVec_u8Z RoutingFees_write(const struct LDKRoutingFees *NONNULL_PTR obj);
10729         public static native byte[] RoutingFees_write(long obj);
10730         // struct LDKCResult_RoutingFeesDecodeErrorZ RoutingFees_read(struct LDKu8slice ser);
10731         public static native long RoutingFees_read(byte[] ser);
10732         // void NodeAnnouncementInfo_free(struct LDKNodeAnnouncementInfo this_obj);
10733         public static native void NodeAnnouncementInfo_free(long this_obj);
10734         // struct LDKNodeFeatures NodeAnnouncementInfo_get_features(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr);
10735         public static native long NodeAnnouncementInfo_get_features(long this_ptr);
10736         // void NodeAnnouncementInfo_set_features(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, struct LDKNodeFeatures val);
10737         public static native void NodeAnnouncementInfo_set_features(long this_ptr, long val);
10738         // uint32_t NodeAnnouncementInfo_get_last_update(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr);
10739         public static native int NodeAnnouncementInfo_get_last_update(long this_ptr);
10740         // void NodeAnnouncementInfo_set_last_update(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, uint32_t val);
10741         public static native void NodeAnnouncementInfo_set_last_update(long this_ptr, int val);
10742         // const uint8_t (*NodeAnnouncementInfo_get_rgb(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr))[3];
10743         public static native byte[] NodeAnnouncementInfo_get_rgb(long this_ptr);
10744         // void NodeAnnouncementInfo_set_rgb(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, struct LDKThreeBytes val);
10745         public static native void NodeAnnouncementInfo_set_rgb(long this_ptr, byte[] val);
10746         // struct LDKNodeAlias NodeAnnouncementInfo_get_alias(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr);
10747         public static native long NodeAnnouncementInfo_get_alias(long this_ptr);
10748         // void NodeAnnouncementInfo_set_alias(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, struct LDKNodeAlias val);
10749         public static native void NodeAnnouncementInfo_set_alias(long this_ptr, long val);
10750         // struct LDKNodeAnnouncement NodeAnnouncementInfo_get_announcement_message(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr);
10751         public static native long NodeAnnouncementInfo_get_announcement_message(long this_ptr);
10752         // void NodeAnnouncementInfo_set_announcement_message(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, struct LDKNodeAnnouncement val);
10753         public static native void NodeAnnouncementInfo_set_announcement_message(long this_ptr, long val);
10754         // MUST_USE_RES struct LDKNodeAnnouncementInfo NodeAnnouncementInfo_new(struct LDKNodeFeatures features_arg, uint32_t last_update_arg, struct LDKThreeBytes rgb_arg, struct LDKNodeAlias alias_arg, struct LDKNodeAnnouncement announcement_message_arg);
10755         public static native long NodeAnnouncementInfo_new(long features_arg, int last_update_arg, byte[] rgb_arg, long alias_arg, long announcement_message_arg);
10756         // uint64_t NodeAnnouncementInfo_clone_ptr(LDKNodeAnnouncementInfo *NONNULL_PTR arg);
10757         public static native long NodeAnnouncementInfo_clone_ptr(long arg);
10758         // struct LDKNodeAnnouncementInfo NodeAnnouncementInfo_clone(const struct LDKNodeAnnouncementInfo *NONNULL_PTR orig);
10759         public static native long NodeAnnouncementInfo_clone(long orig);
10760         // bool NodeAnnouncementInfo_eq(const struct LDKNodeAnnouncementInfo *NONNULL_PTR a, const struct LDKNodeAnnouncementInfo *NONNULL_PTR b);
10761         public static native boolean NodeAnnouncementInfo_eq(long a, long b);
10762         // MUST_USE_RES struct LDKCVec_SocketAddressZ NodeAnnouncementInfo_addresses(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_arg);
10763         public static native long[] NodeAnnouncementInfo_addresses(long this_arg);
10764         // struct LDKCVec_u8Z NodeAnnouncementInfo_write(const struct LDKNodeAnnouncementInfo *NONNULL_PTR obj);
10765         public static native byte[] NodeAnnouncementInfo_write(long obj);
10766         // struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ NodeAnnouncementInfo_read(struct LDKu8slice ser);
10767         public static native long NodeAnnouncementInfo_read(byte[] ser);
10768         // void NodeAlias_free(struct LDKNodeAlias this_obj);
10769         public static native void NodeAlias_free(long this_obj);
10770         // const uint8_t (*NodeAlias_get_a(const struct LDKNodeAlias *NONNULL_PTR this_ptr))[32];
10771         public static native byte[] NodeAlias_get_a(long this_ptr);
10772         // void NodeAlias_set_a(struct LDKNodeAlias *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
10773         public static native void NodeAlias_set_a(long this_ptr, byte[] val);
10774         // MUST_USE_RES struct LDKNodeAlias NodeAlias_new(struct LDKThirtyTwoBytes a_arg);
10775         public static native long NodeAlias_new(byte[] a_arg);
10776         // uint64_t NodeAlias_clone_ptr(LDKNodeAlias *NONNULL_PTR arg);
10777         public static native long NodeAlias_clone_ptr(long arg);
10778         // struct LDKNodeAlias NodeAlias_clone(const struct LDKNodeAlias *NONNULL_PTR orig);
10779         public static native long NodeAlias_clone(long orig);
10780         // bool NodeAlias_eq(const struct LDKNodeAlias *NONNULL_PTR a, const struct LDKNodeAlias *NONNULL_PTR b);
10781         public static native boolean NodeAlias_eq(long a, long b);
10782         // struct LDKCVec_u8Z NodeAlias_write(const struct LDKNodeAlias *NONNULL_PTR obj);
10783         public static native byte[] NodeAlias_write(long obj);
10784         // struct LDKCResult_NodeAliasDecodeErrorZ NodeAlias_read(struct LDKu8slice ser);
10785         public static native long NodeAlias_read(byte[] ser);
10786         // void NodeInfo_free(struct LDKNodeInfo this_obj);
10787         public static native void NodeInfo_free(long this_obj);
10788         // struct LDKCVec_u64Z NodeInfo_get_channels(const struct LDKNodeInfo *NONNULL_PTR this_ptr);
10789         public static native long[] NodeInfo_get_channels(long this_ptr);
10790         // void NodeInfo_set_channels(struct LDKNodeInfo *NONNULL_PTR this_ptr, struct LDKCVec_u64Z val);
10791         public static native void NodeInfo_set_channels(long this_ptr, long[] val);
10792         // struct LDKNodeAnnouncementInfo NodeInfo_get_announcement_info(const struct LDKNodeInfo *NONNULL_PTR this_ptr);
10793         public static native long NodeInfo_get_announcement_info(long this_ptr);
10794         // void NodeInfo_set_announcement_info(struct LDKNodeInfo *NONNULL_PTR this_ptr, struct LDKNodeAnnouncementInfo val);
10795         public static native void NodeInfo_set_announcement_info(long this_ptr, long val);
10796         // MUST_USE_RES struct LDKNodeInfo NodeInfo_new(struct LDKCVec_u64Z channels_arg, struct LDKNodeAnnouncementInfo announcement_info_arg);
10797         public static native long NodeInfo_new(long[] channels_arg, long announcement_info_arg);
10798         // uint64_t NodeInfo_clone_ptr(LDKNodeInfo *NONNULL_PTR arg);
10799         public static native long NodeInfo_clone_ptr(long arg);
10800         // struct LDKNodeInfo NodeInfo_clone(const struct LDKNodeInfo *NONNULL_PTR orig);
10801         public static native long NodeInfo_clone(long orig);
10802         // bool NodeInfo_eq(const struct LDKNodeInfo *NONNULL_PTR a, const struct LDKNodeInfo *NONNULL_PTR b);
10803         public static native boolean NodeInfo_eq(long a, long b);
10804         // struct LDKCVec_u8Z NodeInfo_write(const struct LDKNodeInfo *NONNULL_PTR obj);
10805         public static native byte[] NodeInfo_write(long obj);
10806         // struct LDKCResult_NodeInfoDecodeErrorZ NodeInfo_read(struct LDKu8slice ser);
10807         public static native long NodeInfo_read(byte[] ser);
10808         // struct LDKCVec_u8Z NetworkGraph_write(const struct LDKNetworkGraph *NONNULL_PTR obj);
10809         public static native byte[] NetworkGraph_write(long obj);
10810         // struct LDKCResult_NetworkGraphDecodeErrorZ NetworkGraph_read(struct LDKu8slice ser, struct LDKLogger arg);
10811         public static native long NetworkGraph_read(byte[] ser, long arg);
10812         // MUST_USE_RES struct LDKNetworkGraph NetworkGraph_new(enum LDKNetwork network, struct LDKLogger logger);
10813         public static native long NetworkGraph_new(Network network, long logger);
10814         // MUST_USE_RES struct LDKReadOnlyNetworkGraph NetworkGraph_read_only(const struct LDKNetworkGraph *NONNULL_PTR this_arg);
10815         public static native long NetworkGraph_read_only(long this_arg);
10816         // MUST_USE_RES struct LDKCOption_u32Z NetworkGraph_get_last_rapid_gossip_sync_timestamp(const struct LDKNetworkGraph *NONNULL_PTR this_arg);
10817         public static native long NetworkGraph_get_last_rapid_gossip_sync_timestamp(long this_arg);
10818         // void NetworkGraph_set_last_rapid_gossip_sync_timestamp(const struct LDKNetworkGraph *NONNULL_PTR this_arg, uint32_t last_rapid_gossip_sync_timestamp);
10819         public static native void NetworkGraph_set_last_rapid_gossip_sync_timestamp(long this_arg, int last_rapid_gossip_sync_timestamp);
10820         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_node_from_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKNodeAnnouncement *NONNULL_PTR msg);
10821         public static native long NetworkGraph_update_node_from_announcement(long this_arg, long msg);
10822         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_node_from_unsigned_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR msg);
10823         public static native long NetworkGraph_update_node_from_unsigned_announcement(long this_arg, long msg);
10824         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_from_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKChannelAnnouncement *NONNULL_PTR msg, struct LDKCOption_UtxoLookupZ utxo_lookup);
10825         public static native long NetworkGraph_update_channel_from_announcement(long this_arg, long msg, long utxo_lookup);
10826         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_from_announcement_no_lookup(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKChannelAnnouncement *NONNULL_PTR msg);
10827         public static native long NetworkGraph_update_channel_from_announcement_no_lookup(long this_arg, long msg);
10828         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_from_unsigned_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR msg, struct LDKCOption_UtxoLookupZ utxo_lookup);
10829         public static native long NetworkGraph_update_channel_from_unsigned_announcement(long this_arg, long msg, long utxo_lookup);
10830         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_add_channel_from_partial_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, uint64_t short_channel_id, uint64_t timestamp, struct LDKChannelFeatures features, struct LDKPublicKey node_id_1, struct LDKPublicKey node_id_2);
10831         public static native long NetworkGraph_add_channel_from_partial_announcement(long this_arg, long short_channel_id, long timestamp, long features, byte[] node_id_1, byte[] node_id_2);
10832         // void NetworkGraph_channel_failed_permanent(const struct LDKNetworkGraph *NONNULL_PTR this_arg, uint64_t short_channel_id);
10833         public static native void NetworkGraph_channel_failed_permanent(long this_arg, long short_channel_id);
10834         // void NetworkGraph_node_failed_permanent(const struct LDKNetworkGraph *NONNULL_PTR this_arg, struct LDKPublicKey node_id);
10835         public static native void NetworkGraph_node_failed_permanent(long this_arg, byte[] node_id);
10836         // void NetworkGraph_remove_stale_channels_and_tracking(const struct LDKNetworkGraph *NONNULL_PTR this_arg);
10837         public static native void NetworkGraph_remove_stale_channels_and_tracking(long this_arg);
10838         // void NetworkGraph_remove_stale_channels_and_tracking_with_time(const struct LDKNetworkGraph *NONNULL_PTR this_arg, uint64_t current_time_unix);
10839         public static native void NetworkGraph_remove_stale_channels_and_tracking_with_time(long this_arg, long current_time_unix);
10840         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKChannelUpdate *NONNULL_PTR msg);
10841         public static native long NetworkGraph_update_channel(long this_arg, long msg);
10842         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_unsigned(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKUnsignedChannelUpdate *NONNULL_PTR msg);
10843         public static native long NetworkGraph_update_channel_unsigned(long this_arg, long msg);
10844         // MUST_USE_RES struct LDKChannelInfo ReadOnlyNetworkGraph_channel(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg, uint64_t short_channel_id);
10845         public static native long ReadOnlyNetworkGraph_channel(long this_arg, long short_channel_id);
10846         // MUST_USE_RES struct LDKCVec_u64Z ReadOnlyNetworkGraph_list_channels(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg);
10847         public static native long[] ReadOnlyNetworkGraph_list_channels(long this_arg);
10848         // MUST_USE_RES struct LDKNodeInfo ReadOnlyNetworkGraph_node(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id);
10849         public static native long ReadOnlyNetworkGraph_node(long this_arg, long node_id);
10850         // MUST_USE_RES struct LDKCVec_NodeIdZ ReadOnlyNetworkGraph_list_nodes(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg);
10851         public static native long[] ReadOnlyNetworkGraph_list_nodes(long this_arg);
10852         // MUST_USE_RES struct LDKCOption_CVec_SocketAddressZZ ReadOnlyNetworkGraph_get_addresses(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg, struct LDKPublicKey pubkey);
10853         public static native long ReadOnlyNetworkGraph_get_addresses(long this_arg, byte[] pubkey);
10854         // void DefaultRouter_free(struct LDKDefaultRouter this_obj);
10855         public static native void DefaultRouter_free(long this_obj);
10856         // MUST_USE_RES struct LDKDefaultRouter DefaultRouter_new(const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKLogger logger, struct LDKThirtyTwoBytes random_seed_bytes, struct LDKLockableScore scorer, struct LDKProbabilisticScoringFeeParameters score_params);
10857         public static native long DefaultRouter_new(long network_graph, long logger, byte[] random_seed_bytes, long scorer, long score_params);
10858         // struct LDKRouter DefaultRouter_as_Router(const struct LDKDefaultRouter *NONNULL_PTR this_arg);
10859         public static native long DefaultRouter_as_Router(long this_arg);
10860         // void Router_free(struct LDKRouter this_ptr);
10861         public static native void Router_free(long this_ptr);
10862         // void ScorerAccountingForInFlightHtlcs_free(struct LDKScorerAccountingForInFlightHtlcs this_obj);
10863         public static native void ScorerAccountingForInFlightHtlcs_free(long this_obj);
10864         // MUST_USE_RES struct LDKScorerAccountingForInFlightHtlcs ScorerAccountingForInFlightHtlcs_new(struct LDKScoreLookUp scorer, const struct LDKInFlightHtlcs *NONNULL_PTR inflight_htlcs);
10865         public static native long ScorerAccountingForInFlightHtlcs_new(long scorer, long inflight_htlcs);
10866         // struct LDKScoreLookUp ScorerAccountingForInFlightHtlcs_as_ScoreLookUp(const struct LDKScorerAccountingForInFlightHtlcs *NONNULL_PTR this_arg);
10867         public static native long ScorerAccountingForInFlightHtlcs_as_ScoreLookUp(long this_arg);
10868         // void InFlightHtlcs_free(struct LDKInFlightHtlcs this_obj);
10869         public static native void InFlightHtlcs_free(long this_obj);
10870         // uint64_t InFlightHtlcs_clone_ptr(LDKInFlightHtlcs *NONNULL_PTR arg);
10871         public static native long InFlightHtlcs_clone_ptr(long arg);
10872         // struct LDKInFlightHtlcs InFlightHtlcs_clone(const struct LDKInFlightHtlcs *NONNULL_PTR orig);
10873         public static native long InFlightHtlcs_clone(long orig);
10874         // MUST_USE_RES struct LDKInFlightHtlcs InFlightHtlcs_new(void);
10875         public static native long InFlightHtlcs_new();
10876         // void InFlightHtlcs_process_path(struct LDKInFlightHtlcs *NONNULL_PTR this_arg, const struct LDKPath *NONNULL_PTR path, struct LDKPublicKey payer_node_id);
10877         public static native void InFlightHtlcs_process_path(long this_arg, long path, byte[] payer_node_id);
10878         // void InFlightHtlcs_add_inflight_htlc(struct LDKInFlightHtlcs *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR source, const struct LDKNodeId *NONNULL_PTR target, uint64_t channel_scid, uint64_t used_msat);
10879         public static native void InFlightHtlcs_add_inflight_htlc(long this_arg, long source, long target, long channel_scid, long used_msat);
10880         // MUST_USE_RES struct LDKCOption_u64Z InFlightHtlcs_used_liquidity_msat(const struct LDKInFlightHtlcs *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR source, const struct LDKNodeId *NONNULL_PTR target, uint64_t channel_scid);
10881         public static native long InFlightHtlcs_used_liquidity_msat(long this_arg, long source, long target, long channel_scid);
10882         // struct LDKCVec_u8Z InFlightHtlcs_write(const struct LDKInFlightHtlcs *NONNULL_PTR obj);
10883         public static native byte[] InFlightHtlcs_write(long obj);
10884         // struct LDKCResult_InFlightHtlcsDecodeErrorZ InFlightHtlcs_read(struct LDKu8slice ser);
10885         public static native long InFlightHtlcs_read(byte[] ser);
10886         // void RouteHop_free(struct LDKRouteHop this_obj);
10887         public static native void RouteHop_free(long this_obj);
10888         // struct LDKPublicKey RouteHop_get_pubkey(const struct LDKRouteHop *NONNULL_PTR this_ptr);
10889         public static native byte[] RouteHop_get_pubkey(long this_ptr);
10890         // void RouteHop_set_pubkey(struct LDKRouteHop *NONNULL_PTR this_ptr, struct LDKPublicKey val);
10891         public static native void RouteHop_set_pubkey(long this_ptr, byte[] val);
10892         // struct LDKNodeFeatures RouteHop_get_node_features(const struct LDKRouteHop *NONNULL_PTR this_ptr);
10893         public static native long RouteHop_get_node_features(long this_ptr);
10894         // void RouteHop_set_node_features(struct LDKRouteHop *NONNULL_PTR this_ptr, struct LDKNodeFeatures val);
10895         public static native void RouteHop_set_node_features(long this_ptr, long val);
10896         // uint64_t RouteHop_get_short_channel_id(const struct LDKRouteHop *NONNULL_PTR this_ptr);
10897         public static native long RouteHop_get_short_channel_id(long this_ptr);
10898         // void RouteHop_set_short_channel_id(struct LDKRouteHop *NONNULL_PTR this_ptr, uint64_t val);
10899         public static native void RouteHop_set_short_channel_id(long this_ptr, long val);
10900         // struct LDKChannelFeatures RouteHop_get_channel_features(const struct LDKRouteHop *NONNULL_PTR this_ptr);
10901         public static native long RouteHop_get_channel_features(long this_ptr);
10902         // void RouteHop_set_channel_features(struct LDKRouteHop *NONNULL_PTR this_ptr, struct LDKChannelFeatures val);
10903         public static native void RouteHop_set_channel_features(long this_ptr, long val);
10904         // uint64_t RouteHop_get_fee_msat(const struct LDKRouteHop *NONNULL_PTR this_ptr);
10905         public static native long RouteHop_get_fee_msat(long this_ptr);
10906         // void RouteHop_set_fee_msat(struct LDKRouteHop *NONNULL_PTR this_ptr, uint64_t val);
10907         public static native void RouteHop_set_fee_msat(long this_ptr, long val);
10908         // uint32_t RouteHop_get_cltv_expiry_delta(const struct LDKRouteHop *NONNULL_PTR this_ptr);
10909         public static native int RouteHop_get_cltv_expiry_delta(long this_ptr);
10910         // void RouteHop_set_cltv_expiry_delta(struct LDKRouteHop *NONNULL_PTR this_ptr, uint32_t val);
10911         public static native void RouteHop_set_cltv_expiry_delta(long this_ptr, int val);
10912         // bool RouteHop_get_maybe_announced_channel(const struct LDKRouteHop *NONNULL_PTR this_ptr);
10913         public static native boolean RouteHop_get_maybe_announced_channel(long this_ptr);
10914         // void RouteHop_set_maybe_announced_channel(struct LDKRouteHop *NONNULL_PTR this_ptr, bool val);
10915         public static native void RouteHop_set_maybe_announced_channel(long this_ptr, boolean val);
10916         // MUST_USE_RES struct LDKRouteHop RouteHop_new(struct LDKPublicKey pubkey_arg, struct LDKNodeFeatures node_features_arg, uint64_t short_channel_id_arg, struct LDKChannelFeatures channel_features_arg, uint64_t fee_msat_arg, uint32_t cltv_expiry_delta_arg, bool maybe_announced_channel_arg);
10917         public static native long RouteHop_new(byte[] pubkey_arg, long node_features_arg, long short_channel_id_arg, long channel_features_arg, long fee_msat_arg, int cltv_expiry_delta_arg, boolean maybe_announced_channel_arg);
10918         // uint64_t RouteHop_clone_ptr(LDKRouteHop *NONNULL_PTR arg);
10919         public static native long RouteHop_clone_ptr(long arg);
10920         // struct LDKRouteHop RouteHop_clone(const struct LDKRouteHop *NONNULL_PTR orig);
10921         public static native long RouteHop_clone(long orig);
10922         // uint64_t RouteHop_hash(const struct LDKRouteHop *NONNULL_PTR o);
10923         public static native long RouteHop_hash(long o);
10924         // bool RouteHop_eq(const struct LDKRouteHop *NONNULL_PTR a, const struct LDKRouteHop *NONNULL_PTR b);
10925         public static native boolean RouteHop_eq(long a, long b);
10926         // struct LDKCVec_u8Z RouteHop_write(const struct LDKRouteHop *NONNULL_PTR obj);
10927         public static native byte[] RouteHop_write(long obj);
10928         // struct LDKCResult_RouteHopDecodeErrorZ RouteHop_read(struct LDKu8slice ser);
10929         public static native long RouteHop_read(byte[] ser);
10930         // void BlindedTail_free(struct LDKBlindedTail this_obj);
10931         public static native void BlindedTail_free(long this_obj);
10932         // struct LDKCVec_BlindedHopZ BlindedTail_get_hops(const struct LDKBlindedTail *NONNULL_PTR this_ptr);
10933         public static native long[] BlindedTail_get_hops(long this_ptr);
10934         // void BlindedTail_set_hops(struct LDKBlindedTail *NONNULL_PTR this_ptr, struct LDKCVec_BlindedHopZ val);
10935         public static native void BlindedTail_set_hops(long this_ptr, long[] val);
10936         // struct LDKPublicKey BlindedTail_get_blinding_point(const struct LDKBlindedTail *NONNULL_PTR this_ptr);
10937         public static native byte[] BlindedTail_get_blinding_point(long this_ptr);
10938         // void BlindedTail_set_blinding_point(struct LDKBlindedTail *NONNULL_PTR this_ptr, struct LDKPublicKey val);
10939         public static native void BlindedTail_set_blinding_point(long this_ptr, byte[] val);
10940         // uint32_t BlindedTail_get_excess_final_cltv_expiry_delta(const struct LDKBlindedTail *NONNULL_PTR this_ptr);
10941         public static native int BlindedTail_get_excess_final_cltv_expiry_delta(long this_ptr);
10942         // void BlindedTail_set_excess_final_cltv_expiry_delta(struct LDKBlindedTail *NONNULL_PTR this_ptr, uint32_t val);
10943         public static native void BlindedTail_set_excess_final_cltv_expiry_delta(long this_ptr, int val);
10944         // uint64_t BlindedTail_get_final_value_msat(const struct LDKBlindedTail *NONNULL_PTR this_ptr);
10945         public static native long BlindedTail_get_final_value_msat(long this_ptr);
10946         // void BlindedTail_set_final_value_msat(struct LDKBlindedTail *NONNULL_PTR this_ptr, uint64_t val);
10947         public static native void BlindedTail_set_final_value_msat(long this_ptr, long val);
10948         // MUST_USE_RES struct LDKBlindedTail BlindedTail_new(struct LDKCVec_BlindedHopZ hops_arg, struct LDKPublicKey blinding_point_arg, uint32_t excess_final_cltv_expiry_delta_arg, uint64_t final_value_msat_arg);
10949         public static native long BlindedTail_new(long[] hops_arg, byte[] blinding_point_arg, int excess_final_cltv_expiry_delta_arg, long final_value_msat_arg);
10950         // uint64_t BlindedTail_clone_ptr(LDKBlindedTail *NONNULL_PTR arg);
10951         public static native long BlindedTail_clone_ptr(long arg);
10952         // struct LDKBlindedTail BlindedTail_clone(const struct LDKBlindedTail *NONNULL_PTR orig);
10953         public static native long BlindedTail_clone(long orig);
10954         // uint64_t BlindedTail_hash(const struct LDKBlindedTail *NONNULL_PTR o);
10955         public static native long BlindedTail_hash(long o);
10956         // bool BlindedTail_eq(const struct LDKBlindedTail *NONNULL_PTR a, const struct LDKBlindedTail *NONNULL_PTR b);
10957         public static native boolean BlindedTail_eq(long a, long b);
10958         // struct LDKCVec_u8Z BlindedTail_write(const struct LDKBlindedTail *NONNULL_PTR obj);
10959         public static native byte[] BlindedTail_write(long obj);
10960         // struct LDKCResult_BlindedTailDecodeErrorZ BlindedTail_read(struct LDKu8slice ser);
10961         public static native long BlindedTail_read(byte[] ser);
10962         // void Path_free(struct LDKPath this_obj);
10963         public static native void Path_free(long this_obj);
10964         // struct LDKCVec_RouteHopZ Path_get_hops(const struct LDKPath *NONNULL_PTR this_ptr);
10965         public static native long[] Path_get_hops(long this_ptr);
10966         // void Path_set_hops(struct LDKPath *NONNULL_PTR this_ptr, struct LDKCVec_RouteHopZ val);
10967         public static native void Path_set_hops(long this_ptr, long[] val);
10968         // struct LDKBlindedTail Path_get_blinded_tail(const struct LDKPath *NONNULL_PTR this_ptr);
10969         public static native long Path_get_blinded_tail(long this_ptr);
10970         // void Path_set_blinded_tail(struct LDKPath *NONNULL_PTR this_ptr, struct LDKBlindedTail val);
10971         public static native void Path_set_blinded_tail(long this_ptr, long val);
10972         // MUST_USE_RES struct LDKPath Path_new(struct LDKCVec_RouteHopZ hops_arg, struct LDKBlindedTail blinded_tail_arg);
10973         public static native long Path_new(long[] hops_arg, long blinded_tail_arg);
10974         // uint64_t Path_clone_ptr(LDKPath *NONNULL_PTR arg);
10975         public static native long Path_clone_ptr(long arg);
10976         // struct LDKPath Path_clone(const struct LDKPath *NONNULL_PTR orig);
10977         public static native long Path_clone(long orig);
10978         // uint64_t Path_hash(const struct LDKPath *NONNULL_PTR o);
10979         public static native long Path_hash(long o);
10980         // bool Path_eq(const struct LDKPath *NONNULL_PTR a, const struct LDKPath *NONNULL_PTR b);
10981         public static native boolean Path_eq(long a, long b);
10982         // MUST_USE_RES uint64_t Path_fee_msat(const struct LDKPath *NONNULL_PTR this_arg);
10983         public static native long Path_fee_msat(long this_arg);
10984         // MUST_USE_RES uint64_t Path_final_value_msat(const struct LDKPath *NONNULL_PTR this_arg);
10985         public static native long Path_final_value_msat(long this_arg);
10986         // MUST_USE_RES struct LDKCOption_u32Z Path_final_cltv_expiry_delta(const struct LDKPath *NONNULL_PTR this_arg);
10987         public static native long Path_final_cltv_expiry_delta(long this_arg);
10988         // void Route_free(struct LDKRoute this_obj);
10989         public static native void Route_free(long this_obj);
10990         // struct LDKCVec_PathZ Route_get_paths(const struct LDKRoute *NONNULL_PTR this_ptr);
10991         public static native long[] Route_get_paths(long this_ptr);
10992         // void Route_set_paths(struct LDKRoute *NONNULL_PTR this_ptr, struct LDKCVec_PathZ val);
10993         public static native void Route_set_paths(long this_ptr, long[] val);
10994         // struct LDKRouteParameters Route_get_route_params(const struct LDKRoute *NONNULL_PTR this_ptr);
10995         public static native long Route_get_route_params(long this_ptr);
10996         // void Route_set_route_params(struct LDKRoute *NONNULL_PTR this_ptr, struct LDKRouteParameters val);
10997         public static native void Route_set_route_params(long this_ptr, long val);
10998         // MUST_USE_RES struct LDKRoute Route_new(struct LDKCVec_PathZ paths_arg, struct LDKRouteParameters route_params_arg);
10999         public static native long Route_new(long[] paths_arg, long route_params_arg);
11000         // uint64_t Route_clone_ptr(LDKRoute *NONNULL_PTR arg);
11001         public static native long Route_clone_ptr(long arg);
11002         // struct LDKRoute Route_clone(const struct LDKRoute *NONNULL_PTR orig);
11003         public static native long Route_clone(long orig);
11004         // uint64_t Route_hash(const struct LDKRoute *NONNULL_PTR o);
11005         public static native long Route_hash(long o);
11006         // bool Route_eq(const struct LDKRoute *NONNULL_PTR a, const struct LDKRoute *NONNULL_PTR b);
11007         public static native boolean Route_eq(long a, long b);
11008         // MUST_USE_RES uint64_t Route_get_total_fees(const struct LDKRoute *NONNULL_PTR this_arg);
11009         public static native long Route_get_total_fees(long this_arg);
11010         // MUST_USE_RES uint64_t Route_get_total_amount(const struct LDKRoute *NONNULL_PTR this_arg);
11011         public static native long Route_get_total_amount(long this_arg);
11012         // struct LDKCVec_u8Z Route_write(const struct LDKRoute *NONNULL_PTR obj);
11013         public static native byte[] Route_write(long obj);
11014         // struct LDKCResult_RouteDecodeErrorZ Route_read(struct LDKu8slice ser);
11015         public static native long Route_read(byte[] ser);
11016         // void RouteParameters_free(struct LDKRouteParameters this_obj);
11017         public static native void RouteParameters_free(long this_obj);
11018         // struct LDKPaymentParameters RouteParameters_get_payment_params(const struct LDKRouteParameters *NONNULL_PTR this_ptr);
11019         public static native long RouteParameters_get_payment_params(long this_ptr);
11020         // void RouteParameters_set_payment_params(struct LDKRouteParameters *NONNULL_PTR this_ptr, struct LDKPaymentParameters val);
11021         public static native void RouteParameters_set_payment_params(long this_ptr, long val);
11022         // uint64_t RouteParameters_get_final_value_msat(const struct LDKRouteParameters *NONNULL_PTR this_ptr);
11023         public static native long RouteParameters_get_final_value_msat(long this_ptr);
11024         // void RouteParameters_set_final_value_msat(struct LDKRouteParameters *NONNULL_PTR this_ptr, uint64_t val);
11025         public static native void RouteParameters_set_final_value_msat(long this_ptr, long val);
11026         // struct LDKCOption_u64Z RouteParameters_get_max_total_routing_fee_msat(const struct LDKRouteParameters *NONNULL_PTR this_ptr);
11027         public static native long RouteParameters_get_max_total_routing_fee_msat(long this_ptr);
11028         // void RouteParameters_set_max_total_routing_fee_msat(struct LDKRouteParameters *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
11029         public static native void RouteParameters_set_max_total_routing_fee_msat(long this_ptr, long val);
11030         // MUST_USE_RES struct LDKRouteParameters RouteParameters_new(struct LDKPaymentParameters payment_params_arg, uint64_t final_value_msat_arg, struct LDKCOption_u64Z max_total_routing_fee_msat_arg);
11031         public static native long RouteParameters_new(long payment_params_arg, long final_value_msat_arg, long max_total_routing_fee_msat_arg);
11032         // uint64_t RouteParameters_clone_ptr(LDKRouteParameters *NONNULL_PTR arg);
11033         public static native long RouteParameters_clone_ptr(long arg);
11034         // struct LDKRouteParameters RouteParameters_clone(const struct LDKRouteParameters *NONNULL_PTR orig);
11035         public static native long RouteParameters_clone(long orig);
11036         // uint64_t RouteParameters_hash(const struct LDKRouteParameters *NONNULL_PTR o);
11037         public static native long RouteParameters_hash(long o);
11038         // bool RouteParameters_eq(const struct LDKRouteParameters *NONNULL_PTR a, const struct LDKRouteParameters *NONNULL_PTR b);
11039         public static native boolean RouteParameters_eq(long a, long b);
11040         // MUST_USE_RES struct LDKRouteParameters RouteParameters_from_payment_params_and_value(struct LDKPaymentParameters payment_params, uint64_t final_value_msat);
11041         public static native long RouteParameters_from_payment_params_and_value(long payment_params, long final_value_msat);
11042         // struct LDKCVec_u8Z RouteParameters_write(const struct LDKRouteParameters *NONNULL_PTR obj);
11043         public static native byte[] RouteParameters_write(long obj);
11044         // struct LDKCResult_RouteParametersDecodeErrorZ RouteParameters_read(struct LDKu8slice ser);
11045         public static native long RouteParameters_read(byte[] ser);
11046         // void PaymentParameters_free(struct LDKPaymentParameters this_obj);
11047         public static native void PaymentParameters_free(long this_obj);
11048         // struct LDKPayee PaymentParameters_get_payee(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
11049         public static native long PaymentParameters_get_payee(long this_ptr);
11050         // void PaymentParameters_set_payee(struct LDKPaymentParameters *NONNULL_PTR this_ptr, struct LDKPayee val);
11051         public static native void PaymentParameters_set_payee(long this_ptr, long val);
11052         // struct LDKCOption_u64Z PaymentParameters_get_expiry_time(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
11053         public static native long PaymentParameters_get_expiry_time(long this_ptr);
11054         // void PaymentParameters_set_expiry_time(struct LDKPaymentParameters *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
11055         public static native void PaymentParameters_set_expiry_time(long this_ptr, long val);
11056         // uint32_t PaymentParameters_get_max_total_cltv_expiry_delta(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
11057         public static native int PaymentParameters_get_max_total_cltv_expiry_delta(long this_ptr);
11058         // void PaymentParameters_set_max_total_cltv_expiry_delta(struct LDKPaymentParameters *NONNULL_PTR this_ptr, uint32_t val);
11059         public static native void PaymentParameters_set_max_total_cltv_expiry_delta(long this_ptr, int val);
11060         // uint8_t PaymentParameters_get_max_path_count(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
11061         public static native byte PaymentParameters_get_max_path_count(long this_ptr);
11062         // void PaymentParameters_set_max_path_count(struct LDKPaymentParameters *NONNULL_PTR this_ptr, uint8_t val);
11063         public static native void PaymentParameters_set_max_path_count(long this_ptr, byte val);
11064         // uint8_t PaymentParameters_get_max_channel_saturation_power_of_half(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
11065         public static native byte PaymentParameters_get_max_channel_saturation_power_of_half(long this_ptr);
11066         // void PaymentParameters_set_max_channel_saturation_power_of_half(struct LDKPaymentParameters *NONNULL_PTR this_ptr, uint8_t val);
11067         public static native void PaymentParameters_set_max_channel_saturation_power_of_half(long this_ptr, byte val);
11068         // struct LDKCVec_u64Z PaymentParameters_get_previously_failed_channels(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
11069         public static native long[] PaymentParameters_get_previously_failed_channels(long this_ptr);
11070         // void PaymentParameters_set_previously_failed_channels(struct LDKPaymentParameters *NONNULL_PTR this_ptr, struct LDKCVec_u64Z val);
11071         public static native void PaymentParameters_set_previously_failed_channels(long this_ptr, long[] val);
11072         // MUST_USE_RES struct LDKPaymentParameters PaymentParameters_new(struct LDKPayee payee_arg, struct LDKCOption_u64Z expiry_time_arg, uint32_t max_total_cltv_expiry_delta_arg, uint8_t max_path_count_arg, uint8_t max_channel_saturation_power_of_half_arg, struct LDKCVec_u64Z previously_failed_channels_arg);
11073         public static native long PaymentParameters_new(long payee_arg, long expiry_time_arg, int max_total_cltv_expiry_delta_arg, byte max_path_count_arg, byte max_channel_saturation_power_of_half_arg, long[] previously_failed_channels_arg);
11074         // uint64_t PaymentParameters_clone_ptr(LDKPaymentParameters *NONNULL_PTR arg);
11075         public static native long PaymentParameters_clone_ptr(long arg);
11076         // struct LDKPaymentParameters PaymentParameters_clone(const struct LDKPaymentParameters *NONNULL_PTR orig);
11077         public static native long PaymentParameters_clone(long orig);
11078         // uint64_t PaymentParameters_hash(const struct LDKPaymentParameters *NONNULL_PTR o);
11079         public static native long PaymentParameters_hash(long o);
11080         // bool PaymentParameters_eq(const struct LDKPaymentParameters *NONNULL_PTR a, const struct LDKPaymentParameters *NONNULL_PTR b);
11081         public static native boolean PaymentParameters_eq(long a, long b);
11082         // struct LDKCVec_u8Z PaymentParameters_write(const struct LDKPaymentParameters *NONNULL_PTR obj);
11083         public static native byte[] PaymentParameters_write(long obj);
11084         // struct LDKCResult_PaymentParametersDecodeErrorZ PaymentParameters_read(struct LDKu8slice ser, uint32_t arg);
11085         public static native long PaymentParameters_read(byte[] ser, int arg);
11086         // MUST_USE_RES struct LDKPaymentParameters PaymentParameters_from_node_id(struct LDKPublicKey payee_pubkey, uint32_t final_cltv_expiry_delta);
11087         public static native long PaymentParameters_from_node_id(byte[] payee_pubkey, int final_cltv_expiry_delta);
11088         // MUST_USE_RES struct LDKPaymentParameters PaymentParameters_for_keysend(struct LDKPublicKey payee_pubkey, uint32_t final_cltv_expiry_delta, bool allow_mpp);
11089         public static native long PaymentParameters_for_keysend(byte[] payee_pubkey, int final_cltv_expiry_delta, boolean allow_mpp);
11090         // MUST_USE_RES struct LDKPaymentParameters PaymentParameters_from_bolt12_invoice(const struct LDKBolt12Invoice *NONNULL_PTR invoice);
11091         public static native long PaymentParameters_from_bolt12_invoice(long invoice);
11092         // MUST_USE_RES struct LDKPaymentParameters PaymentParameters_blinded(struct LDKCVec_C2Tuple_BlindedPayInfoBlindedPathZZ blinded_route_hints);
11093         public static native long PaymentParameters_blinded(long[] blinded_route_hints);
11094         // void Payee_free(struct LDKPayee this_ptr);
11095         public static native void Payee_free(long this_ptr);
11096         // uint64_t Payee_clone_ptr(LDKPayee *NONNULL_PTR arg);
11097         public static native long Payee_clone_ptr(long arg);
11098         // struct LDKPayee Payee_clone(const struct LDKPayee *NONNULL_PTR orig);
11099         public static native long Payee_clone(long orig);
11100         // struct LDKPayee Payee_blinded(struct LDKCVec_C2Tuple_BlindedPayInfoBlindedPathZZ route_hints, struct LDKBolt12InvoiceFeatures features);
11101         public static native long Payee_blinded(long[] route_hints, long features);
11102         // struct LDKPayee Payee_clear(struct LDKPublicKey node_id, struct LDKCVec_RouteHintZ route_hints, struct LDKBolt11InvoiceFeatures features, uint32_t final_cltv_expiry_delta);
11103         public static native long Payee_clear(byte[] node_id, long[] route_hints, long features, int final_cltv_expiry_delta);
11104         // uint64_t Payee_hash(const struct LDKPayee *NONNULL_PTR o);
11105         public static native long Payee_hash(long o);
11106         // bool Payee_eq(const struct LDKPayee *NONNULL_PTR a, const struct LDKPayee *NONNULL_PTR b);
11107         public static native boolean Payee_eq(long a, long b);
11108         // void RouteHint_free(struct LDKRouteHint this_obj);
11109         public static native void RouteHint_free(long this_obj);
11110         // struct LDKCVec_RouteHintHopZ RouteHint_get_a(const struct LDKRouteHint *NONNULL_PTR this_ptr);
11111         public static native long[] RouteHint_get_a(long this_ptr);
11112         // void RouteHint_set_a(struct LDKRouteHint *NONNULL_PTR this_ptr, struct LDKCVec_RouteHintHopZ val);
11113         public static native void RouteHint_set_a(long this_ptr, long[] val);
11114         // MUST_USE_RES struct LDKRouteHint RouteHint_new(struct LDKCVec_RouteHintHopZ a_arg);
11115         public static native long RouteHint_new(long[] a_arg);
11116         // uint64_t RouteHint_clone_ptr(LDKRouteHint *NONNULL_PTR arg);
11117         public static native long RouteHint_clone_ptr(long arg);
11118         // struct LDKRouteHint RouteHint_clone(const struct LDKRouteHint *NONNULL_PTR orig);
11119         public static native long RouteHint_clone(long orig);
11120         // uint64_t RouteHint_hash(const struct LDKRouteHint *NONNULL_PTR o);
11121         public static native long RouteHint_hash(long o);
11122         // bool RouteHint_eq(const struct LDKRouteHint *NONNULL_PTR a, const struct LDKRouteHint *NONNULL_PTR b);
11123         public static native boolean RouteHint_eq(long a, long b);
11124         // struct LDKCVec_u8Z RouteHint_write(const struct LDKRouteHint *NONNULL_PTR obj);
11125         public static native byte[] RouteHint_write(long obj);
11126         // struct LDKCResult_RouteHintDecodeErrorZ RouteHint_read(struct LDKu8slice ser);
11127         public static native long RouteHint_read(byte[] ser);
11128         // void RouteHintHop_free(struct LDKRouteHintHop this_obj);
11129         public static native void RouteHintHop_free(long this_obj);
11130         // struct LDKPublicKey RouteHintHop_get_src_node_id(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
11131         public static native byte[] RouteHintHop_get_src_node_id(long this_ptr);
11132         // void RouteHintHop_set_src_node_id(struct LDKRouteHintHop *NONNULL_PTR this_ptr, struct LDKPublicKey val);
11133         public static native void RouteHintHop_set_src_node_id(long this_ptr, byte[] val);
11134         // uint64_t RouteHintHop_get_short_channel_id(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
11135         public static native long RouteHintHop_get_short_channel_id(long this_ptr);
11136         // void RouteHintHop_set_short_channel_id(struct LDKRouteHintHop *NONNULL_PTR this_ptr, uint64_t val);
11137         public static native void RouteHintHop_set_short_channel_id(long this_ptr, long val);
11138         // struct LDKRoutingFees RouteHintHop_get_fees(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
11139         public static native long RouteHintHop_get_fees(long this_ptr);
11140         // void RouteHintHop_set_fees(struct LDKRouteHintHop *NONNULL_PTR this_ptr, struct LDKRoutingFees val);
11141         public static native void RouteHintHop_set_fees(long this_ptr, long val);
11142         // uint16_t RouteHintHop_get_cltv_expiry_delta(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
11143         public static native short RouteHintHop_get_cltv_expiry_delta(long this_ptr);
11144         // void RouteHintHop_set_cltv_expiry_delta(struct LDKRouteHintHop *NONNULL_PTR this_ptr, uint16_t val);
11145         public static native void RouteHintHop_set_cltv_expiry_delta(long this_ptr, short val);
11146         // struct LDKCOption_u64Z RouteHintHop_get_htlc_minimum_msat(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
11147         public static native long RouteHintHop_get_htlc_minimum_msat(long this_ptr);
11148         // void RouteHintHop_set_htlc_minimum_msat(struct LDKRouteHintHop *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
11149         public static native void RouteHintHop_set_htlc_minimum_msat(long this_ptr, long val);
11150         // struct LDKCOption_u64Z RouteHintHop_get_htlc_maximum_msat(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
11151         public static native long RouteHintHop_get_htlc_maximum_msat(long this_ptr);
11152         // void RouteHintHop_set_htlc_maximum_msat(struct LDKRouteHintHop *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
11153         public static native void RouteHintHop_set_htlc_maximum_msat(long this_ptr, long val);
11154         // MUST_USE_RES struct LDKRouteHintHop RouteHintHop_new(struct LDKPublicKey src_node_id_arg, uint64_t short_channel_id_arg, struct LDKRoutingFees fees_arg, uint16_t cltv_expiry_delta_arg, struct LDKCOption_u64Z htlc_minimum_msat_arg, struct LDKCOption_u64Z htlc_maximum_msat_arg);
11155         public static native long RouteHintHop_new(byte[] src_node_id_arg, long short_channel_id_arg, long fees_arg, short cltv_expiry_delta_arg, long htlc_minimum_msat_arg, long htlc_maximum_msat_arg);
11156         // uint64_t RouteHintHop_clone_ptr(LDKRouteHintHop *NONNULL_PTR arg);
11157         public static native long RouteHintHop_clone_ptr(long arg);
11158         // struct LDKRouteHintHop RouteHintHop_clone(const struct LDKRouteHintHop *NONNULL_PTR orig);
11159         public static native long RouteHintHop_clone(long orig);
11160         // uint64_t RouteHintHop_hash(const struct LDKRouteHintHop *NONNULL_PTR o);
11161         public static native long RouteHintHop_hash(long o);
11162         // bool RouteHintHop_eq(const struct LDKRouteHintHop *NONNULL_PTR a, const struct LDKRouteHintHop *NONNULL_PTR b);
11163         public static native boolean RouteHintHop_eq(long a, long b);
11164         // struct LDKCVec_u8Z RouteHintHop_write(const struct LDKRouteHintHop *NONNULL_PTR obj);
11165         public static native byte[] RouteHintHop_write(long obj);
11166         // struct LDKCResult_RouteHintHopDecodeErrorZ RouteHintHop_read(struct LDKu8slice ser);
11167         public static native long RouteHintHop_read(byte[] ser);
11168         // struct LDKCResult_RouteLightningErrorZ find_route(struct LDKPublicKey our_node_pubkey, const struct LDKRouteParameters *NONNULL_PTR route_params, const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKCVec_ChannelDetailsZ *first_hops, struct LDKLogger logger, const struct LDKScoreLookUp *NONNULL_PTR scorer, const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR score_params, const uint8_t (*random_seed_bytes)[32]);
11169         public static native long find_route(byte[] our_node_pubkey, long route_params, long network_graph, long[] first_hops, long logger, long scorer, long score_params, byte[] random_seed_bytes);
11170         // struct LDKCResult_RouteLightningErrorZ build_route_from_hops(struct LDKPublicKey our_node_pubkey, struct LDKCVec_PublicKeyZ hops, const struct LDKRouteParameters *NONNULL_PTR route_params, const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKLogger logger, const uint8_t (*random_seed_bytes)[32]);
11171         public static native long build_route_from_hops(byte[] our_node_pubkey, byte[][] hops, long route_params, long network_graph, long logger, byte[] random_seed_bytes);
11172         // void ScoreLookUp_free(struct LDKScoreLookUp this_ptr);
11173         public static native void ScoreLookUp_free(long this_ptr);
11174         // void ScoreUpdate_free(struct LDKScoreUpdate this_ptr);
11175         public static native void ScoreUpdate_free(long this_ptr);
11176         // void Score_free(struct LDKScore this_ptr);
11177         public static native void Score_free(long this_ptr);
11178         // void LockableScore_free(struct LDKLockableScore this_ptr);
11179         public static native void LockableScore_free(long this_ptr);
11180         // void WriteableScore_free(struct LDKWriteableScore this_ptr);
11181         public static native void WriteableScore_free(long this_ptr);
11182         // void MultiThreadedLockableScore_free(struct LDKMultiThreadedLockableScore this_obj);
11183         public static native void MultiThreadedLockableScore_free(long this_obj);
11184         // struct LDKLockableScore MultiThreadedLockableScore_as_LockableScore(const struct LDKMultiThreadedLockableScore *NONNULL_PTR this_arg);
11185         public static native long MultiThreadedLockableScore_as_LockableScore(long this_arg);
11186         // struct LDKCVec_u8Z MultiThreadedLockableScore_write(const struct LDKMultiThreadedLockableScore *NONNULL_PTR obj);
11187         public static native byte[] MultiThreadedLockableScore_write(long obj);
11188         // struct LDKWriteableScore MultiThreadedLockableScore_as_WriteableScore(const struct LDKMultiThreadedLockableScore *NONNULL_PTR this_arg);
11189         public static native long MultiThreadedLockableScore_as_WriteableScore(long this_arg);
11190         // MUST_USE_RES struct LDKMultiThreadedLockableScore MultiThreadedLockableScore_new(struct LDKScore score);
11191         public static native long MultiThreadedLockableScore_new(long score);
11192         // void MultiThreadedScoreLockRead_free(struct LDKMultiThreadedScoreLockRead this_obj);
11193         public static native void MultiThreadedScoreLockRead_free(long this_obj);
11194         // void MultiThreadedScoreLockWrite_free(struct LDKMultiThreadedScoreLockWrite this_obj);
11195         public static native void MultiThreadedScoreLockWrite_free(long this_obj);
11196         // struct LDKScoreLookUp MultiThreadedScoreLockRead_as_ScoreLookUp(const struct LDKMultiThreadedScoreLockRead *NONNULL_PTR this_arg);
11197         public static native long MultiThreadedScoreLockRead_as_ScoreLookUp(long this_arg);
11198         // struct LDKCVec_u8Z MultiThreadedScoreLockWrite_write(const struct LDKMultiThreadedScoreLockWrite *NONNULL_PTR obj);
11199         public static native byte[] MultiThreadedScoreLockWrite_write(long obj);
11200         // struct LDKScoreUpdate MultiThreadedScoreLockWrite_as_ScoreUpdate(const struct LDKMultiThreadedScoreLockWrite *NONNULL_PTR this_arg);
11201         public static native long MultiThreadedScoreLockWrite_as_ScoreUpdate(long this_arg);
11202         // void ChannelUsage_free(struct LDKChannelUsage this_obj);
11203         public static native void ChannelUsage_free(long this_obj);
11204         // uint64_t ChannelUsage_get_amount_msat(const struct LDKChannelUsage *NONNULL_PTR this_ptr);
11205         public static native long ChannelUsage_get_amount_msat(long this_ptr);
11206         // void ChannelUsage_set_amount_msat(struct LDKChannelUsage *NONNULL_PTR this_ptr, uint64_t val);
11207         public static native void ChannelUsage_set_amount_msat(long this_ptr, long val);
11208         // uint64_t ChannelUsage_get_inflight_htlc_msat(const struct LDKChannelUsage *NONNULL_PTR this_ptr);
11209         public static native long ChannelUsage_get_inflight_htlc_msat(long this_ptr);
11210         // void ChannelUsage_set_inflight_htlc_msat(struct LDKChannelUsage *NONNULL_PTR this_ptr, uint64_t val);
11211         public static native void ChannelUsage_set_inflight_htlc_msat(long this_ptr, long val);
11212         // struct LDKEffectiveCapacity ChannelUsage_get_effective_capacity(const struct LDKChannelUsage *NONNULL_PTR this_ptr);
11213         public static native long ChannelUsage_get_effective_capacity(long this_ptr);
11214         // void ChannelUsage_set_effective_capacity(struct LDKChannelUsage *NONNULL_PTR this_ptr, struct LDKEffectiveCapacity val);
11215         public static native void ChannelUsage_set_effective_capacity(long this_ptr, long val);
11216         // MUST_USE_RES struct LDKChannelUsage ChannelUsage_new(uint64_t amount_msat_arg, uint64_t inflight_htlc_msat_arg, struct LDKEffectiveCapacity effective_capacity_arg);
11217         public static native long ChannelUsage_new(long amount_msat_arg, long inflight_htlc_msat_arg, long effective_capacity_arg);
11218         // uint64_t ChannelUsage_clone_ptr(LDKChannelUsage *NONNULL_PTR arg);
11219         public static native long ChannelUsage_clone_ptr(long arg);
11220         // struct LDKChannelUsage ChannelUsage_clone(const struct LDKChannelUsage *NONNULL_PTR orig);
11221         public static native long ChannelUsage_clone(long orig);
11222         // void FixedPenaltyScorer_free(struct LDKFixedPenaltyScorer this_obj);
11223         public static native void FixedPenaltyScorer_free(long this_obj);
11224         // uint64_t FixedPenaltyScorer_clone_ptr(LDKFixedPenaltyScorer *NONNULL_PTR arg);
11225         public static native long FixedPenaltyScorer_clone_ptr(long arg);
11226         // struct LDKFixedPenaltyScorer FixedPenaltyScorer_clone(const struct LDKFixedPenaltyScorer *NONNULL_PTR orig);
11227         public static native long FixedPenaltyScorer_clone(long orig);
11228         // MUST_USE_RES struct LDKFixedPenaltyScorer FixedPenaltyScorer_with_penalty(uint64_t penalty_msat);
11229         public static native long FixedPenaltyScorer_with_penalty(long penalty_msat);
11230         // struct LDKScoreLookUp FixedPenaltyScorer_as_ScoreLookUp(const struct LDKFixedPenaltyScorer *NONNULL_PTR this_arg);
11231         public static native long FixedPenaltyScorer_as_ScoreLookUp(long this_arg);
11232         // struct LDKScoreUpdate FixedPenaltyScorer_as_ScoreUpdate(const struct LDKFixedPenaltyScorer *NONNULL_PTR this_arg);
11233         public static native long FixedPenaltyScorer_as_ScoreUpdate(long this_arg);
11234         // struct LDKCVec_u8Z FixedPenaltyScorer_write(const struct LDKFixedPenaltyScorer *NONNULL_PTR obj);
11235         public static native byte[] FixedPenaltyScorer_write(long obj);
11236         // struct LDKCResult_FixedPenaltyScorerDecodeErrorZ FixedPenaltyScorer_read(struct LDKu8slice ser, uint64_t arg);
11237         public static native long FixedPenaltyScorer_read(byte[] ser, long arg);
11238         // void ProbabilisticScorer_free(struct LDKProbabilisticScorer this_obj);
11239         public static native void ProbabilisticScorer_free(long this_obj);
11240         // void ProbabilisticScoringFeeParameters_free(struct LDKProbabilisticScoringFeeParameters this_obj);
11241         public static native void ProbabilisticScoringFeeParameters_free(long this_obj);
11242         // uint64_t ProbabilisticScoringFeeParameters_get_base_penalty_msat(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr);
11243         public static native long ProbabilisticScoringFeeParameters_get_base_penalty_msat(long this_ptr);
11244         // void ProbabilisticScoringFeeParameters_set_base_penalty_msat(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr, uint64_t val);
11245         public static native void ProbabilisticScoringFeeParameters_set_base_penalty_msat(long this_ptr, long val);
11246         // uint64_t ProbabilisticScoringFeeParameters_get_base_penalty_amount_multiplier_msat(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr);
11247         public static native long ProbabilisticScoringFeeParameters_get_base_penalty_amount_multiplier_msat(long this_ptr);
11248         // void ProbabilisticScoringFeeParameters_set_base_penalty_amount_multiplier_msat(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr, uint64_t val);
11249         public static native void ProbabilisticScoringFeeParameters_set_base_penalty_amount_multiplier_msat(long this_ptr, long val);
11250         // uint64_t ProbabilisticScoringFeeParameters_get_liquidity_penalty_multiplier_msat(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr);
11251         public static native long ProbabilisticScoringFeeParameters_get_liquidity_penalty_multiplier_msat(long this_ptr);
11252         // void ProbabilisticScoringFeeParameters_set_liquidity_penalty_multiplier_msat(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr, uint64_t val);
11253         public static native void ProbabilisticScoringFeeParameters_set_liquidity_penalty_multiplier_msat(long this_ptr, long val);
11254         // uint64_t ProbabilisticScoringFeeParameters_get_liquidity_penalty_amount_multiplier_msat(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr);
11255         public static native long ProbabilisticScoringFeeParameters_get_liquidity_penalty_amount_multiplier_msat(long this_ptr);
11256         // void ProbabilisticScoringFeeParameters_set_liquidity_penalty_amount_multiplier_msat(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr, uint64_t val);
11257         public static native void ProbabilisticScoringFeeParameters_set_liquidity_penalty_amount_multiplier_msat(long this_ptr, long val);
11258         // uint64_t ProbabilisticScoringFeeParameters_get_historical_liquidity_penalty_multiplier_msat(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr);
11259         public static native long ProbabilisticScoringFeeParameters_get_historical_liquidity_penalty_multiplier_msat(long this_ptr);
11260         // void ProbabilisticScoringFeeParameters_set_historical_liquidity_penalty_multiplier_msat(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr, uint64_t val);
11261         public static native void ProbabilisticScoringFeeParameters_set_historical_liquidity_penalty_multiplier_msat(long this_ptr, long val);
11262         // uint64_t ProbabilisticScoringFeeParameters_get_historical_liquidity_penalty_amount_multiplier_msat(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr);
11263         public static native long ProbabilisticScoringFeeParameters_get_historical_liquidity_penalty_amount_multiplier_msat(long this_ptr);
11264         // void ProbabilisticScoringFeeParameters_set_historical_liquidity_penalty_amount_multiplier_msat(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr, uint64_t val);
11265         public static native void ProbabilisticScoringFeeParameters_set_historical_liquidity_penalty_amount_multiplier_msat(long this_ptr, long val);
11266         // uint64_t ProbabilisticScoringFeeParameters_get_anti_probing_penalty_msat(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr);
11267         public static native long ProbabilisticScoringFeeParameters_get_anti_probing_penalty_msat(long this_ptr);
11268         // void ProbabilisticScoringFeeParameters_set_anti_probing_penalty_msat(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr, uint64_t val);
11269         public static native void ProbabilisticScoringFeeParameters_set_anti_probing_penalty_msat(long this_ptr, long val);
11270         // uint64_t ProbabilisticScoringFeeParameters_get_considered_impossible_penalty_msat(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr);
11271         public static native long ProbabilisticScoringFeeParameters_get_considered_impossible_penalty_msat(long this_ptr);
11272         // void ProbabilisticScoringFeeParameters_set_considered_impossible_penalty_msat(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr, uint64_t val);
11273         public static native void ProbabilisticScoringFeeParameters_set_considered_impossible_penalty_msat(long this_ptr, long val);
11274         // bool ProbabilisticScoringFeeParameters_get_linear_success_probability(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr);
11275         public static native boolean ProbabilisticScoringFeeParameters_get_linear_success_probability(long this_ptr);
11276         // void ProbabilisticScoringFeeParameters_set_linear_success_probability(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_ptr, bool val);
11277         public static native void ProbabilisticScoringFeeParameters_set_linear_success_probability(long this_ptr, boolean val);
11278         // uint64_t ProbabilisticScoringFeeParameters_clone_ptr(LDKProbabilisticScoringFeeParameters *NONNULL_PTR arg);
11279         public static native long ProbabilisticScoringFeeParameters_clone_ptr(long arg);
11280         // struct LDKProbabilisticScoringFeeParameters ProbabilisticScoringFeeParameters_clone(const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR orig);
11281         public static native long ProbabilisticScoringFeeParameters_clone(long orig);
11282         // MUST_USE_RES struct LDKProbabilisticScoringFeeParameters ProbabilisticScoringFeeParameters_default(void);
11283         public static native long ProbabilisticScoringFeeParameters_default();
11284         // void ProbabilisticScoringFeeParameters_add_banned(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id);
11285         public static native void ProbabilisticScoringFeeParameters_add_banned(long this_arg, long node_id);
11286         // void ProbabilisticScoringFeeParameters_add_banned_from_list(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_arg, struct LDKCVec_NodeIdZ node_ids);
11287         public static native void ProbabilisticScoringFeeParameters_add_banned_from_list(long this_arg, long[] node_ids);
11288         // void ProbabilisticScoringFeeParameters_remove_banned(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id);
11289         public static native void ProbabilisticScoringFeeParameters_remove_banned(long this_arg, long node_id);
11290         // void ProbabilisticScoringFeeParameters_set_manual_penalty(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id, uint64_t penalty);
11291         public static native void ProbabilisticScoringFeeParameters_set_manual_penalty(long this_arg, long node_id, long penalty);
11292         // void ProbabilisticScoringFeeParameters_remove_manual_penalty(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id);
11293         public static native void ProbabilisticScoringFeeParameters_remove_manual_penalty(long this_arg, long node_id);
11294         // void ProbabilisticScoringFeeParameters_clear_manual_penalties(struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR this_arg);
11295         public static native void ProbabilisticScoringFeeParameters_clear_manual_penalties(long this_arg);
11296         // void ProbabilisticScoringDecayParameters_free(struct LDKProbabilisticScoringDecayParameters this_obj);
11297         public static native void ProbabilisticScoringDecayParameters_free(long this_obj);
11298         // uint64_t ProbabilisticScoringDecayParameters_get_historical_no_updates_half_life(const struct LDKProbabilisticScoringDecayParameters *NONNULL_PTR this_ptr);
11299         public static native long ProbabilisticScoringDecayParameters_get_historical_no_updates_half_life(long this_ptr);
11300         // void ProbabilisticScoringDecayParameters_set_historical_no_updates_half_life(struct LDKProbabilisticScoringDecayParameters *NONNULL_PTR this_ptr, uint64_t val);
11301         public static native void ProbabilisticScoringDecayParameters_set_historical_no_updates_half_life(long this_ptr, long val);
11302         // uint64_t ProbabilisticScoringDecayParameters_get_liquidity_offset_half_life(const struct LDKProbabilisticScoringDecayParameters *NONNULL_PTR this_ptr);
11303         public static native long ProbabilisticScoringDecayParameters_get_liquidity_offset_half_life(long this_ptr);
11304         // void ProbabilisticScoringDecayParameters_set_liquidity_offset_half_life(struct LDKProbabilisticScoringDecayParameters *NONNULL_PTR this_ptr, uint64_t val);
11305         public static native void ProbabilisticScoringDecayParameters_set_liquidity_offset_half_life(long this_ptr, long val);
11306         // MUST_USE_RES struct LDKProbabilisticScoringDecayParameters ProbabilisticScoringDecayParameters_new(uint64_t historical_no_updates_half_life_arg, uint64_t liquidity_offset_half_life_arg);
11307         public static native long ProbabilisticScoringDecayParameters_new(long historical_no_updates_half_life_arg, long liquidity_offset_half_life_arg);
11308         // uint64_t ProbabilisticScoringDecayParameters_clone_ptr(LDKProbabilisticScoringDecayParameters *NONNULL_PTR arg);
11309         public static native long ProbabilisticScoringDecayParameters_clone_ptr(long arg);
11310         // struct LDKProbabilisticScoringDecayParameters ProbabilisticScoringDecayParameters_clone(const struct LDKProbabilisticScoringDecayParameters *NONNULL_PTR orig);
11311         public static native long ProbabilisticScoringDecayParameters_clone(long orig);
11312         // MUST_USE_RES struct LDKProbabilisticScoringDecayParameters ProbabilisticScoringDecayParameters_default(void);
11313         public static native long ProbabilisticScoringDecayParameters_default();
11314         // MUST_USE_RES struct LDKProbabilisticScorer ProbabilisticScorer_new(struct LDKProbabilisticScoringDecayParameters decay_params, const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKLogger logger);
11315         public static native long ProbabilisticScorer_new(long decay_params, long network_graph, long logger);
11316         // void ProbabilisticScorer_debug_log_liquidity_stats(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg);
11317         public static native void ProbabilisticScorer_debug_log_liquidity_stats(long this_arg);
11318         // MUST_USE_RES struct LDKCOption_C2Tuple_u64u64ZZ ProbabilisticScorer_estimated_channel_liquidity_range(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg, uint64_t scid, const struct LDKNodeId *NONNULL_PTR target);
11319         public static native long ProbabilisticScorer_estimated_channel_liquidity_range(long this_arg, long scid, long target);
11320         // MUST_USE_RES struct LDKCOption_C2Tuple_ThirtyTwoU16sThirtyTwoU16sZZ ProbabilisticScorer_historical_estimated_channel_liquidity_probabilities(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg, uint64_t scid, const struct LDKNodeId *NONNULL_PTR target);
11321         public static native long ProbabilisticScorer_historical_estimated_channel_liquidity_probabilities(long this_arg, long scid, long target);
11322         // MUST_USE_RES struct LDKCOption_f64Z ProbabilisticScorer_historical_estimated_payment_success_probability(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg, uint64_t scid, const struct LDKNodeId *NONNULL_PTR target, uint64_t amount_msat, const struct LDKProbabilisticScoringFeeParameters *NONNULL_PTR params);
11323         public static native long ProbabilisticScorer_historical_estimated_payment_success_probability(long this_arg, long scid, long target, long amount_msat, long params);
11324         // struct LDKScoreLookUp ProbabilisticScorer_as_ScoreLookUp(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg);
11325         public static native long ProbabilisticScorer_as_ScoreLookUp(long this_arg);
11326         // struct LDKScoreUpdate ProbabilisticScorer_as_ScoreUpdate(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg);
11327         public static native long ProbabilisticScorer_as_ScoreUpdate(long this_arg);
11328         // struct LDKScore ProbabilisticScorer_as_Score(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg);
11329         public static native long ProbabilisticScorer_as_Score(long this_arg);
11330         // struct LDKCVec_u8Z ProbabilisticScorer_write(const struct LDKProbabilisticScorer *NONNULL_PTR obj);
11331         public static native byte[] ProbabilisticScorer_write(long obj);
11332         // struct LDKCResult_ProbabilisticScorerDecodeErrorZ ProbabilisticScorer_read(struct LDKu8slice ser, struct LDKProbabilisticScoringDecayParameters arg_a, const struct LDKNetworkGraph *NONNULL_PTR arg_b, struct LDKLogger arg_c);
11333         public static native long ProbabilisticScorer_read(byte[] ser, long arg_a, long arg_b, long arg_c);
11334         // void DelayedPaymentOutputDescriptor_free(struct LDKDelayedPaymentOutputDescriptor this_obj);
11335         public static native void DelayedPaymentOutputDescriptor_free(long this_obj);
11336         // struct LDKOutPoint DelayedPaymentOutputDescriptor_get_outpoint(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11337         public static native long DelayedPaymentOutputDescriptor_get_outpoint(long this_ptr);
11338         // void DelayedPaymentOutputDescriptor_set_outpoint(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKOutPoint val);
11339         public static native void DelayedPaymentOutputDescriptor_set_outpoint(long this_ptr, long val);
11340         // struct LDKPublicKey DelayedPaymentOutputDescriptor_get_per_commitment_point(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11341         public static native byte[] DelayedPaymentOutputDescriptor_get_per_commitment_point(long this_ptr);
11342         // void DelayedPaymentOutputDescriptor_set_per_commitment_point(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKPublicKey val);
11343         public static native void DelayedPaymentOutputDescriptor_set_per_commitment_point(long this_ptr, byte[] val);
11344         // uint16_t DelayedPaymentOutputDescriptor_get_to_self_delay(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11345         public static native short DelayedPaymentOutputDescriptor_get_to_self_delay(long this_ptr);
11346         // void DelayedPaymentOutputDescriptor_set_to_self_delay(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, uint16_t val);
11347         public static native void DelayedPaymentOutputDescriptor_set_to_self_delay(long this_ptr, short val);
11348         // struct LDKTxOut DelayedPaymentOutputDescriptor_get_output(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11349         public static native long DelayedPaymentOutputDescriptor_get_output(long this_ptr);
11350         // void DelayedPaymentOutputDescriptor_set_output(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKTxOut val);
11351         public static native void DelayedPaymentOutputDescriptor_set_output(long this_ptr, long val);
11352         // struct LDKPublicKey DelayedPaymentOutputDescriptor_get_revocation_pubkey(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11353         public static native byte[] DelayedPaymentOutputDescriptor_get_revocation_pubkey(long this_ptr);
11354         // void DelayedPaymentOutputDescriptor_set_revocation_pubkey(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKPublicKey val);
11355         public static native void DelayedPaymentOutputDescriptor_set_revocation_pubkey(long this_ptr, byte[] val);
11356         // const uint8_t (*DelayedPaymentOutputDescriptor_get_channel_keys_id(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr))[32];
11357         public static native byte[] DelayedPaymentOutputDescriptor_get_channel_keys_id(long this_ptr);
11358         // void DelayedPaymentOutputDescriptor_set_channel_keys_id(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
11359         public static native void DelayedPaymentOutputDescriptor_set_channel_keys_id(long this_ptr, byte[] val);
11360         // uint64_t DelayedPaymentOutputDescriptor_get_channel_value_satoshis(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11361         public static native long DelayedPaymentOutputDescriptor_get_channel_value_satoshis(long this_ptr);
11362         // void DelayedPaymentOutputDescriptor_set_channel_value_satoshis(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, uint64_t val);
11363         public static native void DelayedPaymentOutputDescriptor_set_channel_value_satoshis(long this_ptr, long val);
11364         // MUST_USE_RES struct LDKDelayedPaymentOutputDescriptor DelayedPaymentOutputDescriptor_new(struct LDKOutPoint outpoint_arg, struct LDKPublicKey per_commitment_point_arg, uint16_t to_self_delay_arg, struct LDKTxOut output_arg, struct LDKPublicKey revocation_pubkey_arg, struct LDKThirtyTwoBytes channel_keys_id_arg, uint64_t channel_value_satoshis_arg);
11365         public static native long DelayedPaymentOutputDescriptor_new(long outpoint_arg, byte[] per_commitment_point_arg, short to_self_delay_arg, long output_arg, byte[] revocation_pubkey_arg, byte[] channel_keys_id_arg, long channel_value_satoshis_arg);
11366         // uint64_t DelayedPaymentOutputDescriptor_clone_ptr(LDKDelayedPaymentOutputDescriptor *NONNULL_PTR arg);
11367         public static native long DelayedPaymentOutputDescriptor_clone_ptr(long arg);
11368         // struct LDKDelayedPaymentOutputDescriptor DelayedPaymentOutputDescriptor_clone(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR orig);
11369         public static native long DelayedPaymentOutputDescriptor_clone(long orig);
11370         // uint64_t DelayedPaymentOutputDescriptor_hash(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR o);
11371         public static native long DelayedPaymentOutputDescriptor_hash(long o);
11372         // bool DelayedPaymentOutputDescriptor_eq(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR a, const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR b);
11373         public static native boolean DelayedPaymentOutputDescriptor_eq(long a, long b);
11374         // struct LDKCVec_u8Z DelayedPaymentOutputDescriptor_write(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR obj);
11375         public static native byte[] DelayedPaymentOutputDescriptor_write(long obj);
11376         // struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ DelayedPaymentOutputDescriptor_read(struct LDKu8slice ser);
11377         public static native long DelayedPaymentOutputDescriptor_read(byte[] ser);
11378         // void StaticPaymentOutputDescriptor_free(struct LDKStaticPaymentOutputDescriptor this_obj);
11379         public static native void StaticPaymentOutputDescriptor_free(long this_obj);
11380         // struct LDKOutPoint StaticPaymentOutputDescriptor_get_outpoint(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11381         public static native long StaticPaymentOutputDescriptor_get_outpoint(long this_ptr);
11382         // void StaticPaymentOutputDescriptor_set_outpoint(struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKOutPoint val);
11383         public static native void StaticPaymentOutputDescriptor_set_outpoint(long this_ptr, long val);
11384         // struct LDKTxOut StaticPaymentOutputDescriptor_get_output(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11385         public static native long StaticPaymentOutputDescriptor_get_output(long this_ptr);
11386         // void StaticPaymentOutputDescriptor_set_output(struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKTxOut val);
11387         public static native void StaticPaymentOutputDescriptor_set_output(long this_ptr, long val);
11388         // const uint8_t (*StaticPaymentOutputDescriptor_get_channel_keys_id(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr))[32];
11389         public static native byte[] StaticPaymentOutputDescriptor_get_channel_keys_id(long this_ptr);
11390         // void StaticPaymentOutputDescriptor_set_channel_keys_id(struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
11391         public static native void StaticPaymentOutputDescriptor_set_channel_keys_id(long this_ptr, byte[] val);
11392         // uint64_t StaticPaymentOutputDescriptor_get_channel_value_satoshis(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11393         public static native long StaticPaymentOutputDescriptor_get_channel_value_satoshis(long this_ptr);
11394         // void StaticPaymentOutputDescriptor_set_channel_value_satoshis(struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr, uint64_t val);
11395         public static native void StaticPaymentOutputDescriptor_set_channel_value_satoshis(long this_ptr, long val);
11396         // struct LDKChannelTransactionParameters StaticPaymentOutputDescriptor_get_channel_transaction_parameters(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr);
11397         public static native long StaticPaymentOutputDescriptor_get_channel_transaction_parameters(long this_ptr);
11398         // void StaticPaymentOutputDescriptor_set_channel_transaction_parameters(struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKChannelTransactionParameters val);
11399         public static native void StaticPaymentOutputDescriptor_set_channel_transaction_parameters(long this_ptr, long val);
11400         // MUST_USE_RES struct LDKStaticPaymentOutputDescriptor StaticPaymentOutputDescriptor_new(struct LDKOutPoint outpoint_arg, struct LDKTxOut output_arg, struct LDKThirtyTwoBytes channel_keys_id_arg, uint64_t channel_value_satoshis_arg, struct LDKChannelTransactionParameters channel_transaction_parameters_arg);
11401         public static native long StaticPaymentOutputDescriptor_new(long outpoint_arg, long output_arg, byte[] channel_keys_id_arg, long channel_value_satoshis_arg, long channel_transaction_parameters_arg);
11402         // uint64_t StaticPaymentOutputDescriptor_clone_ptr(LDKStaticPaymentOutputDescriptor *NONNULL_PTR arg);
11403         public static native long StaticPaymentOutputDescriptor_clone_ptr(long arg);
11404         // struct LDKStaticPaymentOutputDescriptor StaticPaymentOutputDescriptor_clone(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR orig);
11405         public static native long StaticPaymentOutputDescriptor_clone(long orig);
11406         // uint64_t StaticPaymentOutputDescriptor_hash(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR o);
11407         public static native long StaticPaymentOutputDescriptor_hash(long o);
11408         // bool StaticPaymentOutputDescriptor_eq(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR a, const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR b);
11409         public static native boolean StaticPaymentOutputDescriptor_eq(long a, long b);
11410         // MUST_USE_RES struct LDKCOption_CVec_u8ZZ StaticPaymentOutputDescriptor_witness_script(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_arg);
11411         public static native long StaticPaymentOutputDescriptor_witness_script(long this_arg);
11412         // MUST_USE_RES uintptr_t StaticPaymentOutputDescriptor_max_witness_length(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_arg);
11413         public static native long StaticPaymentOutputDescriptor_max_witness_length(long this_arg);
11414         // struct LDKCVec_u8Z StaticPaymentOutputDescriptor_write(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR obj);
11415         public static native byte[] StaticPaymentOutputDescriptor_write(long obj);
11416         // struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ StaticPaymentOutputDescriptor_read(struct LDKu8slice ser);
11417         public static native long StaticPaymentOutputDescriptor_read(byte[] ser);
11418         // void SpendableOutputDescriptor_free(struct LDKSpendableOutputDescriptor this_ptr);
11419         public static native void SpendableOutputDescriptor_free(long this_ptr);
11420         // uint64_t SpendableOutputDescriptor_clone_ptr(LDKSpendableOutputDescriptor *NONNULL_PTR arg);
11421         public static native long SpendableOutputDescriptor_clone_ptr(long arg);
11422         // struct LDKSpendableOutputDescriptor SpendableOutputDescriptor_clone(const struct LDKSpendableOutputDescriptor *NONNULL_PTR orig);
11423         public static native long SpendableOutputDescriptor_clone(long orig);
11424         // struct LDKSpendableOutputDescriptor SpendableOutputDescriptor_static_output(struct LDKOutPoint outpoint, struct LDKTxOut output);
11425         public static native long SpendableOutputDescriptor_static_output(long outpoint, long output);
11426         // struct LDKSpendableOutputDescriptor SpendableOutputDescriptor_delayed_payment_output(struct LDKDelayedPaymentOutputDescriptor a);
11427         public static native long SpendableOutputDescriptor_delayed_payment_output(long a);
11428         // struct LDKSpendableOutputDescriptor SpendableOutputDescriptor_static_payment_output(struct LDKStaticPaymentOutputDescriptor a);
11429         public static native long SpendableOutputDescriptor_static_payment_output(long a);
11430         // uint64_t SpendableOutputDescriptor_hash(const struct LDKSpendableOutputDescriptor *NONNULL_PTR o);
11431         public static native long SpendableOutputDescriptor_hash(long o);
11432         // bool SpendableOutputDescriptor_eq(const struct LDKSpendableOutputDescriptor *NONNULL_PTR a, const struct LDKSpendableOutputDescriptor *NONNULL_PTR b);
11433         public static native boolean SpendableOutputDescriptor_eq(long a, long b);
11434         // struct LDKCVec_u8Z SpendableOutputDescriptor_write(const struct LDKSpendableOutputDescriptor *NONNULL_PTR obj);
11435         public static native byte[] SpendableOutputDescriptor_write(long obj);
11436         // struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ SpendableOutputDescriptor_read(struct LDKu8slice ser);
11437         public static native long SpendableOutputDescriptor_read(byte[] ser);
11438         // MUST_USE_RES struct LDKCResult_C2Tuple_CVec_u8ZusizeZNoneZ SpendableOutputDescriptor_create_spendable_outputs_psbt(struct LDKCVec_SpendableOutputDescriptorZ descriptors, struct LDKCVec_TxOutZ outputs, struct LDKCVec_u8Z change_destination_script, uint32_t feerate_sat_per_1000_weight, struct LDKCOption_u32Z locktime);
11439         public static native long SpendableOutputDescriptor_create_spendable_outputs_psbt(long[] descriptors, long[] outputs, byte[] change_destination_script, int feerate_sat_per_1000_weight, long locktime);
11440         // void ChannelSigner_free(struct LDKChannelSigner this_ptr);
11441         public static native void ChannelSigner_free(long this_ptr);
11442         // void EcdsaChannelSigner_free(struct LDKEcdsaChannelSigner this_ptr);
11443         public static native void EcdsaChannelSigner_free(long this_ptr);
11444         // uint64_t WriteableEcdsaChannelSigner_clone_ptr(LDKWriteableEcdsaChannelSigner *NONNULL_PTR arg);
11445         public static native long WriteableEcdsaChannelSigner_clone_ptr(long arg);
11446         // struct LDKWriteableEcdsaChannelSigner WriteableEcdsaChannelSigner_clone(const struct LDKWriteableEcdsaChannelSigner *NONNULL_PTR orig);
11447         public static native long WriteableEcdsaChannelSigner_clone(long orig);
11448         // void WriteableEcdsaChannelSigner_free(struct LDKWriteableEcdsaChannelSigner this_ptr);
11449         public static native void WriteableEcdsaChannelSigner_free(long this_ptr);
11450         // enum LDKRecipient Recipient_clone(const enum LDKRecipient *NONNULL_PTR orig);
11451         public static native Recipient Recipient_clone(long orig);
11452         // enum LDKRecipient Recipient_node(void);
11453         public static native Recipient Recipient_node();
11454         // enum LDKRecipient Recipient_phantom_node(void);
11455         public static native Recipient Recipient_phantom_node();
11456         // void EntropySource_free(struct LDKEntropySource this_ptr);
11457         public static native void EntropySource_free(long this_ptr);
11458         // void NodeSigner_free(struct LDKNodeSigner this_ptr);
11459         public static native void NodeSigner_free(long this_ptr);
11460         // void SignerProvider_free(struct LDKSignerProvider this_ptr);
11461         public static native void SignerProvider_free(long this_ptr);
11462         // void InMemorySigner_free(struct LDKInMemorySigner this_obj);
11463         public static native void InMemorySigner_free(long this_obj);
11464         // const uint8_t (*InMemorySigner_get_funding_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
11465         public static native byte[] InMemorySigner_get_funding_key(long this_ptr);
11466         // void InMemorySigner_set_funding_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
11467         public static native void InMemorySigner_set_funding_key(long this_ptr, byte[] val);
11468         // const uint8_t (*InMemorySigner_get_revocation_base_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
11469         public static native byte[] InMemorySigner_get_revocation_base_key(long this_ptr);
11470         // void InMemorySigner_set_revocation_base_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
11471         public static native void InMemorySigner_set_revocation_base_key(long this_ptr, byte[] val);
11472         // const uint8_t (*InMemorySigner_get_payment_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
11473         public static native byte[] InMemorySigner_get_payment_key(long this_ptr);
11474         // void InMemorySigner_set_payment_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
11475         public static native void InMemorySigner_set_payment_key(long this_ptr, byte[] val);
11476         // const uint8_t (*InMemorySigner_get_delayed_payment_base_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
11477         public static native byte[] InMemorySigner_get_delayed_payment_base_key(long this_ptr);
11478         // void InMemorySigner_set_delayed_payment_base_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
11479         public static native void InMemorySigner_set_delayed_payment_base_key(long this_ptr, byte[] val);
11480         // const uint8_t (*InMemorySigner_get_htlc_base_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
11481         public static native byte[] InMemorySigner_get_htlc_base_key(long this_ptr);
11482         // void InMemorySigner_set_htlc_base_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
11483         public static native void InMemorySigner_set_htlc_base_key(long this_ptr, byte[] val);
11484         // const uint8_t (*InMemorySigner_get_commitment_seed(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
11485         public static native byte[] InMemorySigner_get_commitment_seed(long this_ptr);
11486         // void InMemorySigner_set_commitment_seed(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
11487         public static native void InMemorySigner_set_commitment_seed(long this_ptr, byte[] val);
11488         // uint64_t InMemorySigner_clone_ptr(LDKInMemorySigner *NONNULL_PTR arg);
11489         public static native long InMemorySigner_clone_ptr(long arg);
11490         // struct LDKInMemorySigner InMemorySigner_clone(const struct LDKInMemorySigner *NONNULL_PTR orig);
11491         public static native long InMemorySigner_clone(long orig);
11492         // MUST_USE_RES struct LDKInMemorySigner InMemorySigner_new(struct LDKSecretKey funding_key, struct LDKSecretKey revocation_base_key, struct LDKSecretKey payment_key, struct LDKSecretKey delayed_payment_base_key, struct LDKSecretKey htlc_base_key, struct LDKThirtyTwoBytes commitment_seed, uint64_t channel_value_satoshis, struct LDKThirtyTwoBytes channel_keys_id, struct LDKThirtyTwoBytes rand_bytes_unique_start);
11493         public static native long InMemorySigner_new(byte[] funding_key, byte[] revocation_base_key, byte[] payment_key, byte[] delayed_payment_base_key, byte[] htlc_base_key, byte[] commitment_seed, long channel_value_satoshis, byte[] channel_keys_id, byte[] rand_bytes_unique_start);
11494         // MUST_USE_RES struct LDKChannelPublicKeys InMemorySigner_counterparty_pubkeys(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11495         public static native long InMemorySigner_counterparty_pubkeys(long this_arg);
11496         // MUST_USE_RES struct LDKCOption_u16Z InMemorySigner_counterparty_selected_contest_delay(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11497         public static native long InMemorySigner_counterparty_selected_contest_delay(long this_arg);
11498         // MUST_USE_RES struct LDKCOption_u16Z InMemorySigner_holder_selected_contest_delay(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11499         public static native long InMemorySigner_holder_selected_contest_delay(long this_arg);
11500         // MUST_USE_RES struct LDKCOption_boolZ InMemorySigner_is_outbound(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11501         public static native long InMemorySigner_is_outbound(long this_arg);
11502         // MUST_USE_RES struct LDKOutPoint InMemorySigner_funding_outpoint(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11503         public static native long InMemorySigner_funding_outpoint(long this_arg);
11504         // MUST_USE_RES struct LDKChannelTransactionParameters InMemorySigner_get_channel_parameters(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11505         public static native long InMemorySigner_get_channel_parameters(long this_arg);
11506         // MUST_USE_RES struct LDKChannelTypeFeatures InMemorySigner_channel_type_features(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11507         public static native long InMemorySigner_channel_type_features(long this_arg);
11508         // MUST_USE_RES struct LDKCResult_CVec_CVec_u8ZZNoneZ InMemorySigner_sign_counterparty_payment_input(const struct LDKInMemorySigner *NONNULL_PTR this_arg, struct LDKTransaction spend_tx, uintptr_t input_idx, const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR descriptor);
11509         public static native long InMemorySigner_sign_counterparty_payment_input(long this_arg, byte[] spend_tx, long input_idx, long descriptor);
11510         // MUST_USE_RES struct LDKCResult_CVec_CVec_u8ZZNoneZ InMemorySigner_sign_dynamic_p2wsh_input(const struct LDKInMemorySigner *NONNULL_PTR this_arg, struct LDKTransaction spend_tx, uintptr_t input_idx, const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR descriptor);
11511         public static native long InMemorySigner_sign_dynamic_p2wsh_input(long this_arg, byte[] spend_tx, long input_idx, long descriptor);
11512         // struct LDKEntropySource InMemorySigner_as_EntropySource(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11513         public static native long InMemorySigner_as_EntropySource(long this_arg);
11514         // struct LDKChannelSigner InMemorySigner_as_ChannelSigner(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11515         public static native long InMemorySigner_as_ChannelSigner(long this_arg);
11516         // struct LDKEcdsaChannelSigner InMemorySigner_as_EcdsaChannelSigner(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11517         public static native long InMemorySigner_as_EcdsaChannelSigner(long this_arg);
11518         // struct LDKWriteableEcdsaChannelSigner InMemorySigner_as_WriteableEcdsaChannelSigner(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
11519         public static native long InMemorySigner_as_WriteableEcdsaChannelSigner(long this_arg);
11520         // struct LDKCVec_u8Z InMemorySigner_write(const struct LDKInMemorySigner *NONNULL_PTR obj);
11521         public static native byte[] InMemorySigner_write(long obj);
11522         // struct LDKCResult_InMemorySignerDecodeErrorZ InMemorySigner_read(struct LDKu8slice ser, struct LDKEntropySource arg);
11523         public static native long InMemorySigner_read(byte[] ser, long arg);
11524         // void KeysManager_free(struct LDKKeysManager this_obj);
11525         public static native void KeysManager_free(long this_obj);
11526         // MUST_USE_RES struct LDKKeysManager KeysManager_new(const uint8_t (*seed)[32], uint64_t starting_time_secs, uint32_t starting_time_nanos);
11527         public static native long KeysManager_new(byte[] seed, long starting_time_secs, int starting_time_nanos);
11528         // MUST_USE_RES struct LDKSecretKey KeysManager_get_node_secret_key(const struct LDKKeysManager *NONNULL_PTR this_arg);
11529         public static native byte[] KeysManager_get_node_secret_key(long this_arg);
11530         // MUST_USE_RES struct LDKInMemorySigner KeysManager_derive_channel_keys(const struct LDKKeysManager *NONNULL_PTR this_arg, uint64_t channel_value_satoshis, const uint8_t (*params)[32]);
11531         public static native long KeysManager_derive_channel_keys(long this_arg, long channel_value_satoshis, byte[] params);
11532         // MUST_USE_RES struct LDKCResult_CVec_u8ZNoneZ KeysManager_sign_spendable_outputs_psbt(const struct LDKKeysManager *NONNULL_PTR this_arg, struct LDKCVec_SpendableOutputDescriptorZ descriptors, struct LDKCVec_u8Z psbt);
11533         public static native long KeysManager_sign_spendable_outputs_psbt(long this_arg, long[] descriptors, byte[] psbt);
11534         // MUST_USE_RES struct LDKCResult_TransactionNoneZ KeysManager_spend_spendable_outputs(const struct LDKKeysManager *NONNULL_PTR this_arg, struct LDKCVec_SpendableOutputDescriptorZ descriptors, struct LDKCVec_TxOutZ outputs, struct LDKCVec_u8Z change_destination_script, uint32_t feerate_sat_per_1000_weight, struct LDKCOption_u32Z locktime);
11535         public static native long KeysManager_spend_spendable_outputs(long this_arg, long[] descriptors, long[] outputs, byte[] change_destination_script, int feerate_sat_per_1000_weight, long locktime);
11536         // struct LDKEntropySource KeysManager_as_EntropySource(const struct LDKKeysManager *NONNULL_PTR this_arg);
11537         public static native long KeysManager_as_EntropySource(long this_arg);
11538         // struct LDKNodeSigner KeysManager_as_NodeSigner(const struct LDKKeysManager *NONNULL_PTR this_arg);
11539         public static native long KeysManager_as_NodeSigner(long this_arg);
11540         // struct LDKSignerProvider KeysManager_as_SignerProvider(const struct LDKKeysManager *NONNULL_PTR this_arg);
11541         public static native long KeysManager_as_SignerProvider(long this_arg);
11542         // void PhantomKeysManager_free(struct LDKPhantomKeysManager this_obj);
11543         public static native void PhantomKeysManager_free(long this_obj);
11544         // struct LDKEntropySource PhantomKeysManager_as_EntropySource(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg);
11545         public static native long PhantomKeysManager_as_EntropySource(long this_arg);
11546         // struct LDKNodeSigner PhantomKeysManager_as_NodeSigner(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg);
11547         public static native long PhantomKeysManager_as_NodeSigner(long this_arg);
11548         // struct LDKSignerProvider PhantomKeysManager_as_SignerProvider(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg);
11549         public static native long PhantomKeysManager_as_SignerProvider(long this_arg);
11550         // MUST_USE_RES struct LDKPhantomKeysManager PhantomKeysManager_new(const uint8_t (*seed)[32], uint64_t starting_time_secs, uint32_t starting_time_nanos, const uint8_t (*cross_node_seed)[32]);
11551         public static native long PhantomKeysManager_new(byte[] seed, long starting_time_secs, int starting_time_nanos, byte[] cross_node_seed);
11552         // MUST_USE_RES struct LDKCResult_TransactionNoneZ PhantomKeysManager_spend_spendable_outputs(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg, struct LDKCVec_SpendableOutputDescriptorZ descriptors, struct LDKCVec_TxOutZ outputs, struct LDKCVec_u8Z change_destination_script, uint32_t feerate_sat_per_1000_weight, struct LDKCOption_u32Z locktime);
11553         public static native long PhantomKeysManager_spend_spendable_outputs(long this_arg, long[] descriptors, long[] outputs, byte[] change_destination_script, int feerate_sat_per_1000_weight, long locktime);
11554         // MUST_USE_RES struct LDKInMemorySigner PhantomKeysManager_derive_channel_keys(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg, uint64_t channel_value_satoshis, const uint8_t (*params)[32]);
11555         public static native long PhantomKeysManager_derive_channel_keys(long this_arg, long channel_value_satoshis, byte[] params);
11556         // MUST_USE_RES struct LDKSecretKey PhantomKeysManager_get_node_secret_key(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg);
11557         public static native byte[] PhantomKeysManager_get_node_secret_key(long this_arg);
11558         // MUST_USE_RES struct LDKSecretKey PhantomKeysManager_get_phantom_node_secret_key(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg);
11559         public static native byte[] PhantomKeysManager_get_phantom_node_secret_key(long this_arg);
11560         // void OnionMessenger_free(struct LDKOnionMessenger this_obj);
11561         public static native void OnionMessenger_free(long this_obj);
11562         // void MessageRouter_free(struct LDKMessageRouter this_ptr);
11563         public static native void MessageRouter_free(long this_ptr);
11564         // void DefaultMessageRouter_free(struct LDKDefaultMessageRouter this_obj);
11565         public static native void DefaultMessageRouter_free(long this_obj);
11566         // MUST_USE_RES struct LDKDefaultMessageRouter DefaultMessageRouter_new(void);
11567         public static native long DefaultMessageRouter_new();
11568         // struct LDKMessageRouter DefaultMessageRouter_as_MessageRouter(const struct LDKDefaultMessageRouter *NONNULL_PTR this_arg);
11569         public static native long DefaultMessageRouter_as_MessageRouter(long this_arg);
11570         // void OnionMessagePath_free(struct LDKOnionMessagePath this_obj);
11571         public static native void OnionMessagePath_free(long this_obj);
11572         // struct LDKCVec_PublicKeyZ OnionMessagePath_get_intermediate_nodes(const struct LDKOnionMessagePath *NONNULL_PTR this_ptr);
11573         public static native byte[][] OnionMessagePath_get_intermediate_nodes(long this_ptr);
11574         // void OnionMessagePath_set_intermediate_nodes(struct LDKOnionMessagePath *NONNULL_PTR this_ptr, struct LDKCVec_PublicKeyZ val);
11575         public static native void OnionMessagePath_set_intermediate_nodes(long this_ptr, byte[][] val);
11576         // struct LDKDestination OnionMessagePath_get_destination(const struct LDKOnionMessagePath *NONNULL_PTR this_ptr);
11577         public static native long OnionMessagePath_get_destination(long this_ptr);
11578         // void OnionMessagePath_set_destination(struct LDKOnionMessagePath *NONNULL_PTR this_ptr, struct LDKDestination val);
11579         public static native void OnionMessagePath_set_destination(long this_ptr, long val);
11580         // MUST_USE_RES struct LDKOnionMessagePath OnionMessagePath_new(struct LDKCVec_PublicKeyZ intermediate_nodes_arg, struct LDKDestination destination_arg);
11581         public static native long OnionMessagePath_new(byte[][] intermediate_nodes_arg, long destination_arg);
11582         // uint64_t OnionMessagePath_clone_ptr(LDKOnionMessagePath *NONNULL_PTR arg);
11583         public static native long OnionMessagePath_clone_ptr(long arg);
11584         // struct LDKOnionMessagePath OnionMessagePath_clone(const struct LDKOnionMessagePath *NONNULL_PTR orig);
11585         public static native long OnionMessagePath_clone(long orig);
11586         // void Destination_free(struct LDKDestination this_ptr);
11587         public static native void Destination_free(long this_ptr);
11588         // uint64_t Destination_clone_ptr(LDKDestination *NONNULL_PTR arg);
11589         public static native long Destination_clone_ptr(long arg);
11590         // struct LDKDestination Destination_clone(const struct LDKDestination *NONNULL_PTR orig);
11591         public static native long Destination_clone(long orig);
11592         // struct LDKDestination Destination_node(struct LDKPublicKey a);
11593         public static native long Destination_node(byte[] a);
11594         // struct LDKDestination Destination_blinded_path(struct LDKBlindedPath a);
11595         public static native long Destination_blinded_path(long a);
11596         // void SendError_free(struct LDKSendError this_ptr);
11597         public static native void SendError_free(long this_ptr);
11598         // uint64_t SendError_clone_ptr(LDKSendError *NONNULL_PTR arg);
11599         public static native long SendError_clone_ptr(long arg);
11600         // struct LDKSendError SendError_clone(const struct LDKSendError *NONNULL_PTR orig);
11601         public static native long SendError_clone(long orig);
11602         // struct LDKSendError SendError_secp256k1(enum LDKSecp256k1Error a);
11603         public static native long SendError_secp256k1(Secp256k1Error a);
11604         // struct LDKSendError SendError_too_big_packet(void);
11605         public static native long SendError_too_big_packet();
11606         // struct LDKSendError SendError_too_few_blinded_hops(void);
11607         public static native long SendError_too_few_blinded_hops();
11608         // struct LDKSendError SendError_invalid_first_hop(void);
11609         public static native long SendError_invalid_first_hop();
11610         // struct LDKSendError SendError_invalid_message(void);
11611         public static native long SendError_invalid_message();
11612         // struct LDKSendError SendError_buffer_full(void);
11613         public static native long SendError_buffer_full();
11614         // struct LDKSendError SendError_get_node_id_failed(void);
11615         public static native long SendError_get_node_id_failed();
11616         // struct LDKSendError SendError_blinded_path_advance_failed(void);
11617         public static native long SendError_blinded_path_advance_failed();
11618         // bool SendError_eq(const struct LDKSendError *NONNULL_PTR a, const struct LDKSendError *NONNULL_PTR b);
11619         public static native boolean SendError_eq(long a, long b);
11620         // void CustomOnionMessageHandler_free(struct LDKCustomOnionMessageHandler this_ptr);
11621         public static native void CustomOnionMessageHandler_free(long this_ptr);
11622         // struct LDKCResult_C2Tuple_PublicKeyOnionMessageZSendErrorZ create_onion_message(const struct LDKEntropySource *NONNULL_PTR entropy_source, const struct LDKNodeSigner *NONNULL_PTR node_signer, struct LDKOnionMessagePath path, struct LDKOnionMessageContents message, struct LDKBlindedPath reply_path);
11623         public static native long create_onion_message(long entropy_source, long node_signer, long path, long message, long reply_path);
11624         // MUST_USE_RES struct LDKOnionMessenger OnionMessenger_new(struct LDKEntropySource entropy_source, struct LDKNodeSigner node_signer, struct LDKLogger logger, struct LDKMessageRouter message_router, struct LDKOffersMessageHandler offers_handler, struct LDKCustomOnionMessageHandler custom_handler);
11625         public static native long OnionMessenger_new(long entropy_source, long node_signer, long logger, long message_router, long offers_handler, long custom_handler);
11626         // MUST_USE_RES struct LDKCResult_NoneSendErrorZ OnionMessenger_send_onion_message(const struct LDKOnionMessenger *NONNULL_PTR this_arg, struct LDKOnionMessagePath path, struct LDKOnionMessageContents message, struct LDKBlindedPath reply_path);
11627         public static native long OnionMessenger_send_onion_message(long this_arg, long path, long message, long reply_path);
11628         // struct LDKOnionMessageHandler OnionMessenger_as_OnionMessageHandler(const struct LDKOnionMessenger *NONNULL_PTR this_arg);
11629         public static native long OnionMessenger_as_OnionMessageHandler(long this_arg);
11630         // struct LDKOnionMessageProvider OnionMessenger_as_OnionMessageProvider(const struct LDKOnionMessenger *NONNULL_PTR this_arg);
11631         public static native long OnionMessenger_as_OnionMessageProvider(long this_arg);
11632         // void OffersMessageHandler_free(struct LDKOffersMessageHandler this_ptr);
11633         public static native void OffersMessageHandler_free(long this_ptr);
11634         // void OffersMessage_free(struct LDKOffersMessage this_ptr);
11635         public static native void OffersMessage_free(long this_ptr);
11636         // uint64_t OffersMessage_clone_ptr(LDKOffersMessage *NONNULL_PTR arg);
11637         public static native long OffersMessage_clone_ptr(long arg);
11638         // struct LDKOffersMessage OffersMessage_clone(const struct LDKOffersMessage *NONNULL_PTR orig);
11639         public static native long OffersMessage_clone(long orig);
11640         // struct LDKOffersMessage OffersMessage_invoice_request(struct LDKInvoiceRequest a);
11641         public static native long OffersMessage_invoice_request(long a);
11642         // struct LDKOffersMessage OffersMessage_invoice(struct LDKBolt12Invoice a);
11643         public static native long OffersMessage_invoice(long a);
11644         // struct LDKOffersMessage OffersMessage_invoice_error(struct LDKInvoiceError a);
11645         public static native long OffersMessage_invoice_error(long a);
11646         // MUST_USE_RES bool OffersMessage_is_known_type(uint64_t tlv_type);
11647         public static native boolean OffersMessage_is_known_type(long tlv_type);
11648         // MUST_USE_RES uint64_t OffersMessage_tlv_type(const struct LDKOffersMessage *NONNULL_PTR this_arg);
11649         public static native long OffersMessage_tlv_type(long this_arg);
11650         // struct LDKCVec_u8Z OffersMessage_write(const struct LDKOffersMessage *NONNULL_PTR obj);
11651         public static native byte[] OffersMessage_write(long obj);
11652         // struct LDKCResult_OffersMessageDecodeErrorZ OffersMessage_read(struct LDKu8slice ser, uint64_t arg_a, const struct LDKLogger *NONNULL_PTR arg_b);
11653         public static native long OffersMessage_read(byte[] ser, long arg_a, long arg_b);
11654         // void Packet_free(struct LDKPacket this_obj);
11655         public static native void Packet_free(long this_obj);
11656         // uint8_t Packet_get_version(const struct LDKPacket *NONNULL_PTR this_ptr);
11657         public static native byte Packet_get_version(long this_ptr);
11658         // void Packet_set_version(struct LDKPacket *NONNULL_PTR this_ptr, uint8_t val);
11659         public static native void Packet_set_version(long this_ptr, byte val);
11660         // struct LDKPublicKey Packet_get_public_key(const struct LDKPacket *NONNULL_PTR this_ptr);
11661         public static native byte[] Packet_get_public_key(long this_ptr);
11662         // void Packet_set_public_key(struct LDKPacket *NONNULL_PTR this_ptr, struct LDKPublicKey val);
11663         public static native void Packet_set_public_key(long this_ptr, byte[] val);
11664         // struct LDKCVec_u8Z Packet_get_hop_data(const struct LDKPacket *NONNULL_PTR this_ptr);
11665         public static native byte[] Packet_get_hop_data(long this_ptr);
11666         // void Packet_set_hop_data(struct LDKPacket *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
11667         public static native void Packet_set_hop_data(long this_ptr, byte[] val);
11668         // const uint8_t (*Packet_get_hmac(const struct LDKPacket *NONNULL_PTR this_ptr))[32];
11669         public static native byte[] Packet_get_hmac(long this_ptr);
11670         // void Packet_set_hmac(struct LDKPacket *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
11671         public static native void Packet_set_hmac(long this_ptr, byte[] val);
11672         // MUST_USE_RES struct LDKPacket Packet_new(uint8_t version_arg, struct LDKPublicKey public_key_arg, struct LDKCVec_u8Z hop_data_arg, struct LDKThirtyTwoBytes hmac_arg);
11673         public static native long Packet_new(byte version_arg, byte[] public_key_arg, byte[] hop_data_arg, byte[] hmac_arg);
11674         // uint64_t Packet_clone_ptr(LDKPacket *NONNULL_PTR arg);
11675         public static native long Packet_clone_ptr(long arg);
11676         // struct LDKPacket Packet_clone(const struct LDKPacket *NONNULL_PTR orig);
11677         public static native long Packet_clone(long orig);
11678         // bool Packet_eq(const struct LDKPacket *NONNULL_PTR a, const struct LDKPacket *NONNULL_PTR b);
11679         public static native boolean Packet_eq(long a, long b);
11680         // struct LDKCVec_u8Z Packet_write(const struct LDKPacket *NONNULL_PTR obj);
11681         public static native byte[] Packet_write(long obj);
11682         // void OnionMessageContents_free(struct LDKOnionMessageContents this_ptr);
11683         public static native void OnionMessageContents_free(long this_ptr);
11684         // uint64_t OnionMessageContents_clone_ptr(LDKOnionMessageContents *NONNULL_PTR arg);
11685         public static native long OnionMessageContents_clone_ptr(long arg);
11686         // struct LDKOnionMessageContents OnionMessageContents_clone(const struct LDKOnionMessageContents *NONNULL_PTR orig);
11687         public static native long OnionMessageContents_clone(long orig);
11688         // struct LDKOnionMessageContents OnionMessageContents_offers(struct LDKOffersMessage a);
11689         public static native long OnionMessageContents_offers(long a);
11690         // struct LDKOnionMessageContents OnionMessageContents_custom(struct LDKCustomOnionMessageContents a);
11691         public static native long OnionMessageContents_custom(long a);
11692         // uint64_t CustomOnionMessageContents_clone_ptr(LDKCustomOnionMessageContents *NONNULL_PTR arg);
11693         public static native long CustomOnionMessageContents_clone_ptr(long arg);
11694         // struct LDKCustomOnionMessageContents CustomOnionMessageContents_clone(const struct LDKCustomOnionMessageContents *NONNULL_PTR orig);
11695         public static native long CustomOnionMessageContents_clone(long orig);
11696         // void CustomOnionMessageContents_free(struct LDKCustomOnionMessageContents this_ptr);
11697         public static native void CustomOnionMessageContents_free(long this_ptr);
11698         // void BlindedPath_free(struct LDKBlindedPath this_obj);
11699         public static native void BlindedPath_free(long this_obj);
11700         // struct LDKPublicKey BlindedPath_get_introduction_node_id(const struct LDKBlindedPath *NONNULL_PTR this_ptr);
11701         public static native byte[] BlindedPath_get_introduction_node_id(long this_ptr);
11702         // void BlindedPath_set_introduction_node_id(struct LDKBlindedPath *NONNULL_PTR this_ptr, struct LDKPublicKey val);
11703         public static native void BlindedPath_set_introduction_node_id(long this_ptr, byte[] val);
11704         // struct LDKPublicKey BlindedPath_get_blinding_point(const struct LDKBlindedPath *NONNULL_PTR this_ptr);
11705         public static native byte[] BlindedPath_get_blinding_point(long this_ptr);
11706         // void BlindedPath_set_blinding_point(struct LDKBlindedPath *NONNULL_PTR this_ptr, struct LDKPublicKey val);
11707         public static native void BlindedPath_set_blinding_point(long this_ptr, byte[] val);
11708         // struct LDKCVec_BlindedHopZ BlindedPath_get_blinded_hops(const struct LDKBlindedPath *NONNULL_PTR this_ptr);
11709         public static native long[] BlindedPath_get_blinded_hops(long this_ptr);
11710         // void BlindedPath_set_blinded_hops(struct LDKBlindedPath *NONNULL_PTR this_ptr, struct LDKCVec_BlindedHopZ val);
11711         public static native void BlindedPath_set_blinded_hops(long this_ptr, long[] val);
11712         // MUST_USE_RES struct LDKBlindedPath BlindedPath_new(struct LDKPublicKey introduction_node_id_arg, struct LDKPublicKey blinding_point_arg, struct LDKCVec_BlindedHopZ blinded_hops_arg);
11713         public static native long BlindedPath_new(byte[] introduction_node_id_arg, byte[] blinding_point_arg, long[] blinded_hops_arg);
11714         // uint64_t BlindedPath_clone_ptr(LDKBlindedPath *NONNULL_PTR arg);
11715         public static native long BlindedPath_clone_ptr(long arg);
11716         // struct LDKBlindedPath BlindedPath_clone(const struct LDKBlindedPath *NONNULL_PTR orig);
11717         public static native long BlindedPath_clone(long orig);
11718         // uint64_t BlindedPath_hash(const struct LDKBlindedPath *NONNULL_PTR o);
11719         public static native long BlindedPath_hash(long o);
11720         // bool BlindedPath_eq(const struct LDKBlindedPath *NONNULL_PTR a, const struct LDKBlindedPath *NONNULL_PTR b);
11721         public static native boolean BlindedPath_eq(long a, long b);
11722         // void BlindedHop_free(struct LDKBlindedHop this_obj);
11723         public static native void BlindedHop_free(long this_obj);
11724         // struct LDKPublicKey BlindedHop_get_blinded_node_id(const struct LDKBlindedHop *NONNULL_PTR this_ptr);
11725         public static native byte[] BlindedHop_get_blinded_node_id(long this_ptr);
11726         // void BlindedHop_set_blinded_node_id(struct LDKBlindedHop *NONNULL_PTR this_ptr, struct LDKPublicKey val);
11727         public static native void BlindedHop_set_blinded_node_id(long this_ptr, byte[] val);
11728         // struct LDKCVec_u8Z BlindedHop_get_encrypted_payload(const struct LDKBlindedHop *NONNULL_PTR this_ptr);
11729         public static native byte[] BlindedHop_get_encrypted_payload(long this_ptr);
11730         // void BlindedHop_set_encrypted_payload(struct LDKBlindedHop *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
11731         public static native void BlindedHop_set_encrypted_payload(long this_ptr, byte[] val);
11732         // MUST_USE_RES struct LDKBlindedHop BlindedHop_new(struct LDKPublicKey blinded_node_id_arg, struct LDKCVec_u8Z encrypted_payload_arg);
11733         public static native long BlindedHop_new(byte[] blinded_node_id_arg, byte[] encrypted_payload_arg);
11734         // uint64_t BlindedHop_clone_ptr(LDKBlindedHop *NONNULL_PTR arg);
11735         public static native long BlindedHop_clone_ptr(long arg);
11736         // struct LDKBlindedHop BlindedHop_clone(const struct LDKBlindedHop *NONNULL_PTR orig);
11737         public static native long BlindedHop_clone(long orig);
11738         // uint64_t BlindedHop_hash(const struct LDKBlindedHop *NONNULL_PTR o);
11739         public static native long BlindedHop_hash(long o);
11740         // bool BlindedHop_eq(const struct LDKBlindedHop *NONNULL_PTR a, const struct LDKBlindedHop *NONNULL_PTR b);
11741         public static native boolean BlindedHop_eq(long a, long b);
11742         // MUST_USE_RES struct LDKCResult_BlindedPathNoneZ BlindedPath_new_for_message(struct LDKCVec_PublicKeyZ node_pks, const struct LDKEntropySource *NONNULL_PTR entropy_source);
11743         public static native long BlindedPath_new_for_message(byte[][] node_pks, long entropy_source);
11744         // MUST_USE_RES struct LDKCResult_C2Tuple_BlindedPayInfoBlindedPathZNoneZ BlindedPath_one_hop_for_payment(struct LDKPublicKey payee_node_id, struct LDKReceiveTlvs payee_tlvs, const struct LDKEntropySource *NONNULL_PTR entropy_source);
11745         public static native long BlindedPath_one_hop_for_payment(byte[] payee_node_id, long payee_tlvs, long entropy_source);
11746         // struct LDKCVec_u8Z BlindedPath_write(const struct LDKBlindedPath *NONNULL_PTR obj);
11747         public static native byte[] BlindedPath_write(long obj);
11748         // struct LDKCResult_BlindedPathDecodeErrorZ BlindedPath_read(struct LDKu8slice ser);
11749         public static native long BlindedPath_read(byte[] ser);
11750         // struct LDKCVec_u8Z BlindedHop_write(const struct LDKBlindedHop *NONNULL_PTR obj);
11751         public static native byte[] BlindedHop_write(long obj);
11752         // struct LDKCResult_BlindedHopDecodeErrorZ BlindedHop_read(struct LDKu8slice ser);
11753         public static native long BlindedHop_read(byte[] ser);
11754         // void ForwardNode_free(struct LDKForwardNode this_obj);
11755         public static native void ForwardNode_free(long this_obj);
11756         // struct LDKForwardTlvs ForwardNode_get_tlvs(const struct LDKForwardNode *NONNULL_PTR this_ptr);
11757         public static native long ForwardNode_get_tlvs(long this_ptr);
11758         // void ForwardNode_set_tlvs(struct LDKForwardNode *NONNULL_PTR this_ptr, struct LDKForwardTlvs val);
11759         public static native void ForwardNode_set_tlvs(long this_ptr, long val);
11760         // struct LDKPublicKey ForwardNode_get_node_id(const struct LDKForwardNode *NONNULL_PTR this_ptr);
11761         public static native byte[] ForwardNode_get_node_id(long this_ptr);
11762         // void ForwardNode_set_node_id(struct LDKForwardNode *NONNULL_PTR this_ptr, struct LDKPublicKey val);
11763         public static native void ForwardNode_set_node_id(long this_ptr, byte[] val);
11764         // uint64_t ForwardNode_get_htlc_maximum_msat(const struct LDKForwardNode *NONNULL_PTR this_ptr);
11765         public static native long ForwardNode_get_htlc_maximum_msat(long this_ptr);
11766         // void ForwardNode_set_htlc_maximum_msat(struct LDKForwardNode *NONNULL_PTR this_ptr, uint64_t val);
11767         public static native void ForwardNode_set_htlc_maximum_msat(long this_ptr, long val);
11768         // MUST_USE_RES struct LDKForwardNode ForwardNode_new(struct LDKForwardTlvs tlvs_arg, struct LDKPublicKey node_id_arg, uint64_t htlc_maximum_msat_arg);
11769         public static native long ForwardNode_new(long tlvs_arg, byte[] node_id_arg, long htlc_maximum_msat_arg);
11770         // uint64_t ForwardNode_clone_ptr(LDKForwardNode *NONNULL_PTR arg);
11771         public static native long ForwardNode_clone_ptr(long arg);
11772         // struct LDKForwardNode ForwardNode_clone(const struct LDKForwardNode *NONNULL_PTR orig);
11773         public static native long ForwardNode_clone(long orig);
11774         // void ForwardTlvs_free(struct LDKForwardTlvs this_obj);
11775         public static native void ForwardTlvs_free(long this_obj);
11776         // uint64_t ForwardTlvs_get_short_channel_id(const struct LDKForwardTlvs *NONNULL_PTR this_ptr);
11777         public static native long ForwardTlvs_get_short_channel_id(long this_ptr);
11778         // void ForwardTlvs_set_short_channel_id(struct LDKForwardTlvs *NONNULL_PTR this_ptr, uint64_t val);
11779         public static native void ForwardTlvs_set_short_channel_id(long this_ptr, long val);
11780         // struct LDKPaymentRelay ForwardTlvs_get_payment_relay(const struct LDKForwardTlvs *NONNULL_PTR this_ptr);
11781         public static native long ForwardTlvs_get_payment_relay(long this_ptr);
11782         // void ForwardTlvs_set_payment_relay(struct LDKForwardTlvs *NONNULL_PTR this_ptr, struct LDKPaymentRelay val);
11783         public static native void ForwardTlvs_set_payment_relay(long this_ptr, long val);
11784         // struct LDKPaymentConstraints ForwardTlvs_get_payment_constraints(const struct LDKForwardTlvs *NONNULL_PTR this_ptr);
11785         public static native long ForwardTlvs_get_payment_constraints(long this_ptr);
11786         // void ForwardTlvs_set_payment_constraints(struct LDKForwardTlvs *NONNULL_PTR this_ptr, struct LDKPaymentConstraints val);
11787         public static native void ForwardTlvs_set_payment_constraints(long this_ptr, long val);
11788         // struct LDKBlindedHopFeatures ForwardTlvs_get_features(const struct LDKForwardTlvs *NONNULL_PTR this_ptr);
11789         public static native long ForwardTlvs_get_features(long this_ptr);
11790         // void ForwardTlvs_set_features(struct LDKForwardTlvs *NONNULL_PTR this_ptr, struct LDKBlindedHopFeatures val);
11791         public static native void ForwardTlvs_set_features(long this_ptr, long val);
11792         // MUST_USE_RES struct LDKForwardTlvs ForwardTlvs_new(uint64_t short_channel_id_arg, struct LDKPaymentRelay payment_relay_arg, struct LDKPaymentConstraints payment_constraints_arg, struct LDKBlindedHopFeatures features_arg);
11793         public static native long ForwardTlvs_new(long short_channel_id_arg, long payment_relay_arg, long payment_constraints_arg, long features_arg);
11794         // uint64_t ForwardTlvs_clone_ptr(LDKForwardTlvs *NONNULL_PTR arg);
11795         public static native long ForwardTlvs_clone_ptr(long arg);
11796         // struct LDKForwardTlvs ForwardTlvs_clone(const struct LDKForwardTlvs *NONNULL_PTR orig);
11797         public static native long ForwardTlvs_clone(long orig);
11798         // void ReceiveTlvs_free(struct LDKReceiveTlvs this_obj);
11799         public static native void ReceiveTlvs_free(long this_obj);
11800         // const uint8_t (*ReceiveTlvs_get_payment_secret(const struct LDKReceiveTlvs *NONNULL_PTR this_ptr))[32];
11801         public static native byte[] ReceiveTlvs_get_payment_secret(long this_ptr);
11802         // void ReceiveTlvs_set_payment_secret(struct LDKReceiveTlvs *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
11803         public static native void ReceiveTlvs_set_payment_secret(long this_ptr, byte[] val);
11804         // struct LDKPaymentConstraints ReceiveTlvs_get_payment_constraints(const struct LDKReceiveTlvs *NONNULL_PTR this_ptr);
11805         public static native long ReceiveTlvs_get_payment_constraints(long this_ptr);
11806         // void ReceiveTlvs_set_payment_constraints(struct LDKReceiveTlvs *NONNULL_PTR this_ptr, struct LDKPaymentConstraints val);
11807         public static native void ReceiveTlvs_set_payment_constraints(long this_ptr, long val);
11808         // MUST_USE_RES struct LDKReceiveTlvs ReceiveTlvs_new(struct LDKThirtyTwoBytes payment_secret_arg, struct LDKPaymentConstraints payment_constraints_arg);
11809         public static native long ReceiveTlvs_new(byte[] payment_secret_arg, long payment_constraints_arg);
11810         // uint64_t ReceiveTlvs_clone_ptr(LDKReceiveTlvs *NONNULL_PTR arg);
11811         public static native long ReceiveTlvs_clone_ptr(long arg);
11812         // struct LDKReceiveTlvs ReceiveTlvs_clone(const struct LDKReceiveTlvs *NONNULL_PTR orig);
11813         public static native long ReceiveTlvs_clone(long orig);
11814         // void PaymentRelay_free(struct LDKPaymentRelay this_obj);
11815         public static native void PaymentRelay_free(long this_obj);
11816         // uint16_t PaymentRelay_get_cltv_expiry_delta(const struct LDKPaymentRelay *NONNULL_PTR this_ptr);
11817         public static native short PaymentRelay_get_cltv_expiry_delta(long this_ptr);
11818         // void PaymentRelay_set_cltv_expiry_delta(struct LDKPaymentRelay *NONNULL_PTR this_ptr, uint16_t val);
11819         public static native void PaymentRelay_set_cltv_expiry_delta(long this_ptr, short val);
11820         // uint32_t PaymentRelay_get_fee_proportional_millionths(const struct LDKPaymentRelay *NONNULL_PTR this_ptr);
11821         public static native int PaymentRelay_get_fee_proportional_millionths(long this_ptr);
11822         // void PaymentRelay_set_fee_proportional_millionths(struct LDKPaymentRelay *NONNULL_PTR this_ptr, uint32_t val);
11823         public static native void PaymentRelay_set_fee_proportional_millionths(long this_ptr, int val);
11824         // uint32_t PaymentRelay_get_fee_base_msat(const struct LDKPaymentRelay *NONNULL_PTR this_ptr);
11825         public static native int PaymentRelay_get_fee_base_msat(long this_ptr);
11826         // void PaymentRelay_set_fee_base_msat(struct LDKPaymentRelay *NONNULL_PTR this_ptr, uint32_t val);
11827         public static native void PaymentRelay_set_fee_base_msat(long this_ptr, int val);
11828         // MUST_USE_RES struct LDKPaymentRelay PaymentRelay_new(uint16_t cltv_expiry_delta_arg, uint32_t fee_proportional_millionths_arg, uint32_t fee_base_msat_arg);
11829         public static native long PaymentRelay_new(short cltv_expiry_delta_arg, int fee_proportional_millionths_arg, int fee_base_msat_arg);
11830         // uint64_t PaymentRelay_clone_ptr(LDKPaymentRelay *NONNULL_PTR arg);
11831         public static native long PaymentRelay_clone_ptr(long arg);
11832         // struct LDKPaymentRelay PaymentRelay_clone(const struct LDKPaymentRelay *NONNULL_PTR orig);
11833         public static native long PaymentRelay_clone(long orig);
11834         // void PaymentConstraints_free(struct LDKPaymentConstraints this_obj);
11835         public static native void PaymentConstraints_free(long this_obj);
11836         // uint32_t PaymentConstraints_get_max_cltv_expiry(const struct LDKPaymentConstraints *NONNULL_PTR this_ptr);
11837         public static native int PaymentConstraints_get_max_cltv_expiry(long this_ptr);
11838         // void PaymentConstraints_set_max_cltv_expiry(struct LDKPaymentConstraints *NONNULL_PTR this_ptr, uint32_t val);
11839         public static native void PaymentConstraints_set_max_cltv_expiry(long this_ptr, int val);
11840         // uint64_t PaymentConstraints_get_htlc_minimum_msat(const struct LDKPaymentConstraints *NONNULL_PTR this_ptr);
11841         public static native long PaymentConstraints_get_htlc_minimum_msat(long this_ptr);
11842         // void PaymentConstraints_set_htlc_minimum_msat(struct LDKPaymentConstraints *NONNULL_PTR this_ptr, uint64_t val);
11843         public static native void PaymentConstraints_set_htlc_minimum_msat(long this_ptr, long val);
11844         // MUST_USE_RES struct LDKPaymentConstraints PaymentConstraints_new(uint32_t max_cltv_expiry_arg, uint64_t htlc_minimum_msat_arg);
11845         public static native long PaymentConstraints_new(int max_cltv_expiry_arg, long htlc_minimum_msat_arg);
11846         // uint64_t PaymentConstraints_clone_ptr(LDKPaymentConstraints *NONNULL_PTR arg);
11847         public static native long PaymentConstraints_clone_ptr(long arg);
11848         // struct LDKPaymentConstraints PaymentConstraints_clone(const struct LDKPaymentConstraints *NONNULL_PTR orig);
11849         public static native long PaymentConstraints_clone(long orig);
11850         // struct LDKCVec_u8Z ForwardTlvs_write(const struct LDKForwardTlvs *NONNULL_PTR obj);
11851         public static native byte[] ForwardTlvs_write(long obj);
11852         // struct LDKCVec_u8Z ReceiveTlvs_write(const struct LDKReceiveTlvs *NONNULL_PTR obj);
11853         public static native byte[] ReceiveTlvs_write(long obj);
11854         // struct LDKCResult_ReceiveTlvsDecodeErrorZ ReceiveTlvs_read(struct LDKu8slice ser);
11855         public static native long ReceiveTlvs_read(byte[] ser);
11856         // struct LDKCVec_u8Z PaymentRelay_write(const struct LDKPaymentRelay *NONNULL_PTR obj);
11857         public static native byte[] PaymentRelay_write(long obj);
11858         // struct LDKCResult_PaymentRelayDecodeErrorZ PaymentRelay_read(struct LDKu8slice ser);
11859         public static native long PaymentRelay_read(byte[] ser);
11860         // struct LDKCVec_u8Z PaymentConstraints_write(const struct LDKPaymentConstraints *NONNULL_PTR obj);
11861         public static native byte[] PaymentConstraints_write(long obj);
11862         // struct LDKCResult_PaymentConstraintsDecodeErrorZ PaymentConstraints_read(struct LDKu8slice ser);
11863         public static native long PaymentConstraints_read(byte[] ser);
11864         // void PaymentPurpose_free(struct LDKPaymentPurpose this_ptr);
11865         public static native void PaymentPurpose_free(long this_ptr);
11866         // uint64_t PaymentPurpose_clone_ptr(LDKPaymentPurpose *NONNULL_PTR arg);
11867         public static native long PaymentPurpose_clone_ptr(long arg);
11868         // struct LDKPaymentPurpose PaymentPurpose_clone(const struct LDKPaymentPurpose *NONNULL_PTR orig);
11869         public static native long PaymentPurpose_clone(long orig);
11870         // struct LDKPaymentPurpose PaymentPurpose_invoice_payment(struct LDKCOption_ThirtyTwoBytesZ payment_preimage, struct LDKThirtyTwoBytes payment_secret);
11871         public static native long PaymentPurpose_invoice_payment(long payment_preimage, byte[] payment_secret);
11872         // struct LDKPaymentPurpose PaymentPurpose_spontaneous_payment(struct LDKThirtyTwoBytes a);
11873         public static native long PaymentPurpose_spontaneous_payment(byte[] a);
11874         // bool PaymentPurpose_eq(const struct LDKPaymentPurpose *NONNULL_PTR a, const struct LDKPaymentPurpose *NONNULL_PTR b);
11875         public static native boolean PaymentPurpose_eq(long a, long b);
11876         // struct LDKCVec_u8Z PaymentPurpose_write(const struct LDKPaymentPurpose *NONNULL_PTR obj);
11877         public static native byte[] PaymentPurpose_write(long obj);
11878         // struct LDKCResult_PaymentPurposeDecodeErrorZ PaymentPurpose_read(struct LDKu8slice ser);
11879         public static native long PaymentPurpose_read(byte[] ser);
11880         // void ClaimedHTLC_free(struct LDKClaimedHTLC this_obj);
11881         public static native void ClaimedHTLC_free(long this_obj);
11882         // const uint8_t (*ClaimedHTLC_get_channel_id(const struct LDKClaimedHTLC *NONNULL_PTR this_ptr))[32];
11883         public static native byte[] ClaimedHTLC_get_channel_id(long this_ptr);
11884         // void ClaimedHTLC_set_channel_id(struct LDKClaimedHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
11885         public static native void ClaimedHTLC_set_channel_id(long this_ptr, byte[] val);
11886         // struct LDKU128 ClaimedHTLC_get_user_channel_id(const struct LDKClaimedHTLC *NONNULL_PTR this_ptr);
11887         public static native byte[] ClaimedHTLC_get_user_channel_id(long this_ptr);
11888         // void ClaimedHTLC_set_user_channel_id(struct LDKClaimedHTLC *NONNULL_PTR this_ptr, struct LDKU128 val);
11889         public static native void ClaimedHTLC_set_user_channel_id(long this_ptr, byte[] val);
11890         // uint32_t ClaimedHTLC_get_cltv_expiry(const struct LDKClaimedHTLC *NONNULL_PTR this_ptr);
11891         public static native int ClaimedHTLC_get_cltv_expiry(long this_ptr);
11892         // void ClaimedHTLC_set_cltv_expiry(struct LDKClaimedHTLC *NONNULL_PTR this_ptr, uint32_t val);
11893         public static native void ClaimedHTLC_set_cltv_expiry(long this_ptr, int val);
11894         // uint64_t ClaimedHTLC_get_value_msat(const struct LDKClaimedHTLC *NONNULL_PTR this_ptr);
11895         public static native long ClaimedHTLC_get_value_msat(long this_ptr);
11896         // void ClaimedHTLC_set_value_msat(struct LDKClaimedHTLC *NONNULL_PTR this_ptr, uint64_t val);
11897         public static native void ClaimedHTLC_set_value_msat(long this_ptr, long val);
11898         // MUST_USE_RES struct LDKClaimedHTLC ClaimedHTLC_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKU128 user_channel_id_arg, uint32_t cltv_expiry_arg, uint64_t value_msat_arg);
11899         public static native long ClaimedHTLC_new(byte[] channel_id_arg, byte[] user_channel_id_arg, int cltv_expiry_arg, long value_msat_arg);
11900         // uint64_t ClaimedHTLC_clone_ptr(LDKClaimedHTLC *NONNULL_PTR arg);
11901         public static native long ClaimedHTLC_clone_ptr(long arg);
11902         // struct LDKClaimedHTLC ClaimedHTLC_clone(const struct LDKClaimedHTLC *NONNULL_PTR orig);
11903         public static native long ClaimedHTLC_clone(long orig);
11904         // bool ClaimedHTLC_eq(const struct LDKClaimedHTLC *NONNULL_PTR a, const struct LDKClaimedHTLC *NONNULL_PTR b);
11905         public static native boolean ClaimedHTLC_eq(long a, long b);
11906         // struct LDKCVec_u8Z ClaimedHTLC_write(const struct LDKClaimedHTLC *NONNULL_PTR obj);
11907         public static native byte[] ClaimedHTLC_write(long obj);
11908         // struct LDKCResult_ClaimedHTLCDecodeErrorZ ClaimedHTLC_read(struct LDKu8slice ser);
11909         public static native long ClaimedHTLC_read(byte[] ser);
11910         // void PathFailure_free(struct LDKPathFailure this_ptr);
11911         public static native void PathFailure_free(long this_ptr);
11912         // uint64_t PathFailure_clone_ptr(LDKPathFailure *NONNULL_PTR arg);
11913         public static native long PathFailure_clone_ptr(long arg);
11914         // struct LDKPathFailure PathFailure_clone(const struct LDKPathFailure *NONNULL_PTR orig);
11915         public static native long PathFailure_clone(long orig);
11916         // struct LDKPathFailure PathFailure_initial_send(struct LDKAPIError err);
11917         public static native long PathFailure_initial_send(long err);
11918         // struct LDKPathFailure PathFailure_on_path(struct LDKCOption_NetworkUpdateZ network_update);
11919         public static native long PathFailure_on_path(long network_update);
11920         // bool PathFailure_eq(const struct LDKPathFailure *NONNULL_PTR a, const struct LDKPathFailure *NONNULL_PTR b);
11921         public static native boolean PathFailure_eq(long a, long b);
11922         // struct LDKCVec_u8Z PathFailure_write(const struct LDKPathFailure *NONNULL_PTR obj);
11923         public static native byte[] PathFailure_write(long obj);
11924         // struct LDKCResult_COption_PathFailureZDecodeErrorZ PathFailure_read(struct LDKu8slice ser);
11925         public static native long PathFailure_read(byte[] ser);
11926         // void ClosureReason_free(struct LDKClosureReason this_ptr);
11927         public static native void ClosureReason_free(long this_ptr);
11928         // uint64_t ClosureReason_clone_ptr(LDKClosureReason *NONNULL_PTR arg);
11929         public static native long ClosureReason_clone_ptr(long arg);
11930         // struct LDKClosureReason ClosureReason_clone(const struct LDKClosureReason *NONNULL_PTR orig);
11931         public static native long ClosureReason_clone(long orig);
11932         // struct LDKClosureReason ClosureReason_counterparty_force_closed(struct LDKUntrustedString peer_msg);
11933         public static native long ClosureReason_counterparty_force_closed(long peer_msg);
11934         // struct LDKClosureReason ClosureReason_holder_force_closed(void);
11935         public static native long ClosureReason_holder_force_closed();
11936         // struct LDKClosureReason ClosureReason_cooperative_closure(void);
11937         public static native long ClosureReason_cooperative_closure();
11938         // struct LDKClosureReason ClosureReason_commitment_tx_confirmed(void);
11939         public static native long ClosureReason_commitment_tx_confirmed();
11940         // struct LDKClosureReason ClosureReason_funding_timed_out(void);
11941         public static native long ClosureReason_funding_timed_out();
11942         // struct LDKClosureReason ClosureReason_processing_error(struct LDKStr err);
11943         public static native long ClosureReason_processing_error(String err);
11944         // struct LDKClosureReason ClosureReason_disconnected_peer(void);
11945         public static native long ClosureReason_disconnected_peer();
11946         // struct LDKClosureReason ClosureReason_outdated_channel_manager(void);
11947         public static native long ClosureReason_outdated_channel_manager();
11948         // struct LDKClosureReason ClosureReason_counterparty_coop_closed_unfunded_channel(void);
11949         public static native long ClosureReason_counterparty_coop_closed_unfunded_channel();
11950         // struct LDKClosureReason ClosureReason_funding_batch_closure(void);
11951         public static native long ClosureReason_funding_batch_closure();
11952         // bool ClosureReason_eq(const struct LDKClosureReason *NONNULL_PTR a, const struct LDKClosureReason *NONNULL_PTR b);
11953         public static native boolean ClosureReason_eq(long a, long b);
11954         // struct LDKCVec_u8Z ClosureReason_write(const struct LDKClosureReason *NONNULL_PTR obj);
11955         public static native byte[] ClosureReason_write(long obj);
11956         // struct LDKCResult_COption_ClosureReasonZDecodeErrorZ ClosureReason_read(struct LDKu8slice ser);
11957         public static native long ClosureReason_read(byte[] ser);
11958         // void HTLCDestination_free(struct LDKHTLCDestination this_ptr);
11959         public static native void HTLCDestination_free(long this_ptr);
11960         // uint64_t HTLCDestination_clone_ptr(LDKHTLCDestination *NONNULL_PTR arg);
11961         public static native long HTLCDestination_clone_ptr(long arg);
11962         // struct LDKHTLCDestination HTLCDestination_clone(const struct LDKHTLCDestination *NONNULL_PTR orig);
11963         public static native long HTLCDestination_clone(long orig);
11964         // struct LDKHTLCDestination HTLCDestination_next_hop_channel(struct LDKPublicKey node_id, struct LDKThirtyTwoBytes channel_id);
11965         public static native long HTLCDestination_next_hop_channel(byte[] node_id, byte[] channel_id);
11966         // struct LDKHTLCDestination HTLCDestination_unknown_next_hop(uint64_t requested_forward_scid);
11967         public static native long HTLCDestination_unknown_next_hop(long requested_forward_scid);
11968         // struct LDKHTLCDestination HTLCDestination_invalid_forward(uint64_t requested_forward_scid);
11969         public static native long HTLCDestination_invalid_forward(long requested_forward_scid);
11970         // struct LDKHTLCDestination HTLCDestination_failed_payment(struct LDKThirtyTwoBytes payment_hash);
11971         public static native long HTLCDestination_failed_payment(byte[] payment_hash);
11972         // bool HTLCDestination_eq(const struct LDKHTLCDestination *NONNULL_PTR a, const struct LDKHTLCDestination *NONNULL_PTR b);
11973         public static native boolean HTLCDestination_eq(long a, long b);
11974         // struct LDKCVec_u8Z HTLCDestination_write(const struct LDKHTLCDestination *NONNULL_PTR obj);
11975         public static native byte[] HTLCDestination_write(long obj);
11976         // struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ HTLCDestination_read(struct LDKu8slice ser);
11977         public static native long HTLCDestination_read(byte[] ser);
11978         // enum LDKPaymentFailureReason PaymentFailureReason_clone(const enum LDKPaymentFailureReason *NONNULL_PTR orig);
11979         public static native PaymentFailureReason PaymentFailureReason_clone(long orig);
11980         // enum LDKPaymentFailureReason PaymentFailureReason_recipient_rejected(void);
11981         public static native PaymentFailureReason PaymentFailureReason_recipient_rejected();
11982         // enum LDKPaymentFailureReason PaymentFailureReason_user_abandoned(void);
11983         public static native PaymentFailureReason PaymentFailureReason_user_abandoned();
11984         // enum LDKPaymentFailureReason PaymentFailureReason_retries_exhausted(void);
11985         public static native PaymentFailureReason PaymentFailureReason_retries_exhausted();
11986         // enum LDKPaymentFailureReason PaymentFailureReason_payment_expired(void);
11987         public static native PaymentFailureReason PaymentFailureReason_payment_expired();
11988         // enum LDKPaymentFailureReason PaymentFailureReason_route_not_found(void);
11989         public static native PaymentFailureReason PaymentFailureReason_route_not_found();
11990         // enum LDKPaymentFailureReason PaymentFailureReason_unexpected_error(void);
11991         public static native PaymentFailureReason PaymentFailureReason_unexpected_error();
11992         // bool PaymentFailureReason_eq(const enum LDKPaymentFailureReason *NONNULL_PTR a, const enum LDKPaymentFailureReason *NONNULL_PTR b);
11993         public static native boolean PaymentFailureReason_eq(long a, long b);
11994         // struct LDKCVec_u8Z PaymentFailureReason_write(const enum LDKPaymentFailureReason *NONNULL_PTR obj);
11995         public static native byte[] PaymentFailureReason_write(long obj);
11996         // struct LDKCResult_PaymentFailureReasonDecodeErrorZ PaymentFailureReason_read(struct LDKu8slice ser);
11997         public static native long PaymentFailureReason_read(byte[] ser);
11998         // void Event_free(struct LDKEvent this_ptr);
11999         public static native void Event_free(long this_ptr);
12000         // uint64_t Event_clone_ptr(LDKEvent *NONNULL_PTR arg);
12001         public static native long Event_clone_ptr(long arg);
12002         // struct LDKEvent Event_clone(const struct LDKEvent *NONNULL_PTR orig);
12003         public static native long Event_clone(long orig);
12004         // struct LDKEvent Event_funding_generation_ready(struct LDKThirtyTwoBytes temporary_channel_id, struct LDKPublicKey counterparty_node_id, uint64_t channel_value_satoshis, struct LDKCVec_u8Z output_script, struct LDKU128 user_channel_id);
12005         public static native long Event_funding_generation_ready(byte[] temporary_channel_id, byte[] counterparty_node_id, long channel_value_satoshis, byte[] output_script, byte[] user_channel_id);
12006         // struct LDKEvent Event_payment_claimable(struct LDKPublicKey receiver_node_id, struct LDKThirtyTwoBytes payment_hash, struct LDKRecipientOnionFields onion_fields, uint64_t amount_msat, uint64_t counterparty_skimmed_fee_msat, struct LDKPaymentPurpose purpose, struct LDKCOption_ThirtyTwoBytesZ via_channel_id, struct LDKCOption_U128Z via_user_channel_id, struct LDKCOption_u32Z claim_deadline);
12007         public static native long Event_payment_claimable(byte[] receiver_node_id, byte[] payment_hash, long onion_fields, long amount_msat, long counterparty_skimmed_fee_msat, long purpose, long via_channel_id, long via_user_channel_id, long claim_deadline);
12008         // struct LDKEvent Event_payment_claimed(struct LDKPublicKey receiver_node_id, struct LDKThirtyTwoBytes payment_hash, uint64_t amount_msat, struct LDKPaymentPurpose purpose, struct LDKCVec_ClaimedHTLCZ htlcs, struct LDKCOption_u64Z sender_intended_total_msat);
12009         public static native long Event_payment_claimed(byte[] receiver_node_id, byte[] payment_hash, long amount_msat, long purpose, long[] htlcs, long sender_intended_total_msat);
12010         // struct LDKEvent Event_payment_sent(struct LDKCOption_ThirtyTwoBytesZ payment_id, struct LDKThirtyTwoBytes payment_preimage, struct LDKThirtyTwoBytes payment_hash, struct LDKCOption_u64Z fee_paid_msat);
12011         public static native long Event_payment_sent(long payment_id, byte[] payment_preimage, byte[] payment_hash, long fee_paid_msat);
12012         // struct LDKEvent Event_payment_failed(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash, struct LDKCOption_PaymentFailureReasonZ reason);
12013         public static native long Event_payment_failed(byte[] payment_id, byte[] payment_hash, long reason);
12014         // struct LDKEvent Event_payment_path_successful(struct LDKThirtyTwoBytes payment_id, struct LDKCOption_ThirtyTwoBytesZ payment_hash, struct LDKPath path);
12015         public static native long Event_payment_path_successful(byte[] payment_id, long payment_hash, long path);
12016         // struct LDKEvent Event_payment_path_failed(struct LDKCOption_ThirtyTwoBytesZ payment_id, struct LDKThirtyTwoBytes payment_hash, bool payment_failed_permanently, struct LDKPathFailure failure, struct LDKPath path, struct LDKCOption_u64Z short_channel_id);
12017         public static native long Event_payment_path_failed(long payment_id, byte[] payment_hash, boolean payment_failed_permanently, long failure, long path, long short_channel_id);
12018         // struct LDKEvent Event_probe_successful(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash, struct LDKPath path);
12019         public static native long Event_probe_successful(byte[] payment_id, byte[] payment_hash, long path);
12020         // struct LDKEvent Event_probe_failed(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash, struct LDKPath path, struct LDKCOption_u64Z short_channel_id);
12021         public static native long Event_probe_failed(byte[] payment_id, byte[] payment_hash, long path, long short_channel_id);
12022         // struct LDKEvent Event_pending_htlcs_forwardable(uint64_t time_forwardable);
12023         public static native long Event_pending_htlcs_forwardable(long time_forwardable);
12024         // struct LDKEvent Event_htlcintercepted(struct LDKThirtyTwoBytes intercept_id, uint64_t requested_next_hop_scid, struct LDKThirtyTwoBytes payment_hash, uint64_t inbound_amount_msat, uint64_t expected_outbound_amount_msat);
12025         public static native long Event_htlcintercepted(byte[] intercept_id, long requested_next_hop_scid, byte[] payment_hash, long inbound_amount_msat, long expected_outbound_amount_msat);
12026         // struct LDKEvent Event_spendable_outputs(struct LDKCVec_SpendableOutputDescriptorZ outputs, struct LDKCOption_ThirtyTwoBytesZ channel_id);
12027         public static native long Event_spendable_outputs(long[] outputs, long channel_id);
12028         // struct LDKEvent Event_payment_forwarded(struct LDKCOption_ThirtyTwoBytesZ prev_channel_id, struct LDKCOption_ThirtyTwoBytesZ next_channel_id, struct LDKCOption_u64Z fee_earned_msat, bool claim_from_onchain_tx, struct LDKCOption_u64Z outbound_amount_forwarded_msat);
12029         public static native long Event_payment_forwarded(long prev_channel_id, long next_channel_id, long fee_earned_msat, boolean claim_from_onchain_tx, long outbound_amount_forwarded_msat);
12030         // struct LDKEvent Event_channel_pending(struct LDKThirtyTwoBytes channel_id, struct LDKU128 user_channel_id, struct LDKCOption_ThirtyTwoBytesZ former_temporary_channel_id, struct LDKPublicKey counterparty_node_id, struct LDKOutPoint funding_txo);
12031         public static native long Event_channel_pending(byte[] channel_id, byte[] user_channel_id, long former_temporary_channel_id, byte[] counterparty_node_id, long funding_txo);
12032         // struct LDKEvent Event_channel_ready(struct LDKThirtyTwoBytes channel_id, struct LDKU128 user_channel_id, struct LDKPublicKey counterparty_node_id, struct LDKChannelTypeFeatures channel_type);
12033         public static native long Event_channel_ready(byte[] channel_id, byte[] user_channel_id, byte[] counterparty_node_id, long channel_type);
12034         // struct LDKEvent Event_channel_closed(struct LDKThirtyTwoBytes channel_id, struct LDKU128 user_channel_id, struct LDKClosureReason reason, struct LDKPublicKey counterparty_node_id, struct LDKCOption_u64Z channel_capacity_sats);
12035         public static native long Event_channel_closed(byte[] channel_id, byte[] user_channel_id, long reason, byte[] counterparty_node_id, long channel_capacity_sats);
12036         // struct LDKEvent Event_discard_funding(struct LDKThirtyTwoBytes channel_id, struct LDKTransaction transaction);
12037         public static native long Event_discard_funding(byte[] channel_id, byte[] transaction);
12038         // struct LDKEvent Event_open_channel_request(struct LDKThirtyTwoBytes temporary_channel_id, struct LDKPublicKey counterparty_node_id, uint64_t funding_satoshis, uint64_t push_msat, struct LDKChannelTypeFeatures channel_type);
12039         public static native long Event_open_channel_request(byte[] temporary_channel_id, byte[] counterparty_node_id, long funding_satoshis, long push_msat, long channel_type);
12040         // struct LDKEvent Event_htlchandling_failed(struct LDKThirtyTwoBytes prev_channel_id, struct LDKHTLCDestination failed_next_destination);
12041         public static native long Event_htlchandling_failed(byte[] prev_channel_id, long failed_next_destination);
12042         // struct LDKEvent Event_bump_transaction(struct LDKBumpTransactionEvent a);
12043         public static native long Event_bump_transaction(long a);
12044         // bool Event_eq(const struct LDKEvent *NONNULL_PTR a, const struct LDKEvent *NONNULL_PTR b);
12045         public static native boolean Event_eq(long a, long b);
12046         // struct LDKCVec_u8Z Event_write(const struct LDKEvent *NONNULL_PTR obj);
12047         public static native byte[] Event_write(long obj);
12048         // struct LDKCResult_COption_EventZDecodeErrorZ Event_read(struct LDKu8slice ser);
12049         public static native long Event_read(byte[] ser);
12050         // void MessageSendEvent_free(struct LDKMessageSendEvent this_ptr);
12051         public static native void MessageSendEvent_free(long this_ptr);
12052         // uint64_t MessageSendEvent_clone_ptr(LDKMessageSendEvent *NONNULL_PTR arg);
12053         public static native long MessageSendEvent_clone_ptr(long arg);
12054         // struct LDKMessageSendEvent MessageSendEvent_clone(const struct LDKMessageSendEvent *NONNULL_PTR orig);
12055         public static native long MessageSendEvent_clone(long orig);
12056         // struct LDKMessageSendEvent MessageSendEvent_send_accept_channel(struct LDKPublicKey node_id, struct LDKAcceptChannel msg);
12057         public static native long MessageSendEvent_send_accept_channel(byte[] node_id, long msg);
12058         // struct LDKMessageSendEvent MessageSendEvent_send_accept_channel_v2(struct LDKPublicKey node_id, struct LDKAcceptChannelV2 msg);
12059         public static native long MessageSendEvent_send_accept_channel_v2(byte[] node_id, long msg);
12060         // struct LDKMessageSendEvent MessageSendEvent_send_open_channel(struct LDKPublicKey node_id, struct LDKOpenChannel msg);
12061         public static native long MessageSendEvent_send_open_channel(byte[] node_id, long msg);
12062         // struct LDKMessageSendEvent MessageSendEvent_send_open_channel_v2(struct LDKPublicKey node_id, struct LDKOpenChannelV2 msg);
12063         public static native long MessageSendEvent_send_open_channel_v2(byte[] node_id, long msg);
12064         // struct LDKMessageSendEvent MessageSendEvent_send_funding_created(struct LDKPublicKey node_id, struct LDKFundingCreated msg);
12065         public static native long MessageSendEvent_send_funding_created(byte[] node_id, long msg);
12066         // struct LDKMessageSendEvent MessageSendEvent_send_funding_signed(struct LDKPublicKey node_id, struct LDKFundingSigned msg);
12067         public static native long MessageSendEvent_send_funding_signed(byte[] node_id, long msg);
12068         // struct LDKMessageSendEvent MessageSendEvent_send_tx_add_input(struct LDKPublicKey node_id, struct LDKTxAddInput msg);
12069         public static native long MessageSendEvent_send_tx_add_input(byte[] node_id, long msg);
12070         // struct LDKMessageSendEvent MessageSendEvent_send_tx_add_output(struct LDKPublicKey node_id, struct LDKTxAddOutput msg);
12071         public static native long MessageSendEvent_send_tx_add_output(byte[] node_id, long msg);
12072         // struct LDKMessageSendEvent MessageSendEvent_send_tx_remove_input(struct LDKPublicKey node_id, struct LDKTxRemoveInput msg);
12073         public static native long MessageSendEvent_send_tx_remove_input(byte[] node_id, long msg);
12074         // struct LDKMessageSendEvent MessageSendEvent_send_tx_remove_output(struct LDKPublicKey node_id, struct LDKTxRemoveOutput msg);
12075         public static native long MessageSendEvent_send_tx_remove_output(byte[] node_id, long msg);
12076         // struct LDKMessageSendEvent MessageSendEvent_send_tx_complete(struct LDKPublicKey node_id, struct LDKTxComplete msg);
12077         public static native long MessageSendEvent_send_tx_complete(byte[] node_id, long msg);
12078         // struct LDKMessageSendEvent MessageSendEvent_send_tx_signatures(struct LDKPublicKey node_id, struct LDKTxSignatures msg);
12079         public static native long MessageSendEvent_send_tx_signatures(byte[] node_id, long msg);
12080         // struct LDKMessageSendEvent MessageSendEvent_send_tx_init_rbf(struct LDKPublicKey node_id, struct LDKTxInitRbf msg);
12081         public static native long MessageSendEvent_send_tx_init_rbf(byte[] node_id, long msg);
12082         // struct LDKMessageSendEvent MessageSendEvent_send_tx_ack_rbf(struct LDKPublicKey node_id, struct LDKTxAckRbf msg);
12083         public static native long MessageSendEvent_send_tx_ack_rbf(byte[] node_id, long msg);
12084         // struct LDKMessageSendEvent MessageSendEvent_send_tx_abort(struct LDKPublicKey node_id, struct LDKTxAbort msg);
12085         public static native long MessageSendEvent_send_tx_abort(byte[] node_id, long msg);
12086         // struct LDKMessageSendEvent MessageSendEvent_send_channel_ready(struct LDKPublicKey node_id, struct LDKChannelReady msg);
12087         public static native long MessageSendEvent_send_channel_ready(byte[] node_id, long msg);
12088         // struct LDKMessageSendEvent MessageSendEvent_send_announcement_signatures(struct LDKPublicKey node_id, struct LDKAnnouncementSignatures msg);
12089         public static native long MessageSendEvent_send_announcement_signatures(byte[] node_id, long msg);
12090         // struct LDKMessageSendEvent MessageSendEvent_update_htlcs(struct LDKPublicKey node_id, struct LDKCommitmentUpdate updates);
12091         public static native long MessageSendEvent_update_htlcs(byte[] node_id, long updates);
12092         // struct LDKMessageSendEvent MessageSendEvent_send_revoke_and_ack(struct LDKPublicKey node_id, struct LDKRevokeAndACK msg);
12093         public static native long MessageSendEvent_send_revoke_and_ack(byte[] node_id, long msg);
12094         // struct LDKMessageSendEvent MessageSendEvent_send_closing_signed(struct LDKPublicKey node_id, struct LDKClosingSigned msg);
12095         public static native long MessageSendEvent_send_closing_signed(byte[] node_id, long msg);
12096         // struct LDKMessageSendEvent MessageSendEvent_send_shutdown(struct LDKPublicKey node_id, struct LDKShutdown msg);
12097         public static native long MessageSendEvent_send_shutdown(byte[] node_id, long msg);
12098         // struct LDKMessageSendEvent MessageSendEvent_send_channel_reestablish(struct LDKPublicKey node_id, struct LDKChannelReestablish msg);
12099         public static native long MessageSendEvent_send_channel_reestablish(byte[] node_id, long msg);
12100         // struct LDKMessageSendEvent MessageSendEvent_send_channel_announcement(struct LDKPublicKey node_id, struct LDKChannelAnnouncement msg, struct LDKChannelUpdate update_msg);
12101         public static native long MessageSendEvent_send_channel_announcement(byte[] node_id, long msg, long update_msg);
12102         // struct LDKMessageSendEvent MessageSendEvent_broadcast_channel_announcement(struct LDKChannelAnnouncement msg, struct LDKChannelUpdate update_msg);
12103         public static native long MessageSendEvent_broadcast_channel_announcement(long msg, long update_msg);
12104         // struct LDKMessageSendEvent MessageSendEvent_broadcast_channel_update(struct LDKChannelUpdate msg);
12105         public static native long MessageSendEvent_broadcast_channel_update(long msg);
12106         // struct LDKMessageSendEvent MessageSendEvent_broadcast_node_announcement(struct LDKNodeAnnouncement msg);
12107         public static native long MessageSendEvent_broadcast_node_announcement(long msg);
12108         // struct LDKMessageSendEvent MessageSendEvent_send_channel_update(struct LDKPublicKey node_id, struct LDKChannelUpdate msg);
12109         public static native long MessageSendEvent_send_channel_update(byte[] node_id, long msg);
12110         // struct LDKMessageSendEvent MessageSendEvent_handle_error(struct LDKPublicKey node_id, struct LDKErrorAction action);
12111         public static native long MessageSendEvent_handle_error(byte[] node_id, long action);
12112         // struct LDKMessageSendEvent MessageSendEvent_send_channel_range_query(struct LDKPublicKey node_id, struct LDKQueryChannelRange msg);
12113         public static native long MessageSendEvent_send_channel_range_query(byte[] node_id, long msg);
12114         // struct LDKMessageSendEvent MessageSendEvent_send_short_ids_query(struct LDKPublicKey node_id, struct LDKQueryShortChannelIds msg);
12115         public static native long MessageSendEvent_send_short_ids_query(byte[] node_id, long msg);
12116         // struct LDKMessageSendEvent MessageSendEvent_send_reply_channel_range(struct LDKPublicKey node_id, struct LDKReplyChannelRange msg);
12117         public static native long MessageSendEvent_send_reply_channel_range(byte[] node_id, long msg);
12118         // struct LDKMessageSendEvent MessageSendEvent_send_gossip_timestamp_filter(struct LDKPublicKey node_id, struct LDKGossipTimestampFilter msg);
12119         public static native long MessageSendEvent_send_gossip_timestamp_filter(byte[] node_id, long msg);
12120         // void MessageSendEventsProvider_free(struct LDKMessageSendEventsProvider this_ptr);
12121         public static native void MessageSendEventsProvider_free(long this_ptr);
12122         // void OnionMessageProvider_free(struct LDKOnionMessageProvider this_ptr);
12123         public static native void OnionMessageProvider_free(long this_ptr);
12124         // void EventsProvider_free(struct LDKEventsProvider this_ptr);
12125         public static native void EventsProvider_free(long this_ptr);
12126         // void EventHandler_free(struct LDKEventHandler this_ptr);
12127         public static native void EventHandler_free(long this_ptr);
12128         // void ChannelDerivationParameters_free(struct LDKChannelDerivationParameters this_obj);
12129         public static native void ChannelDerivationParameters_free(long this_obj);
12130         // uint64_t ChannelDerivationParameters_get_value_satoshis(const struct LDKChannelDerivationParameters *NONNULL_PTR this_ptr);
12131         public static native long ChannelDerivationParameters_get_value_satoshis(long this_ptr);
12132         // void ChannelDerivationParameters_set_value_satoshis(struct LDKChannelDerivationParameters *NONNULL_PTR this_ptr, uint64_t val);
12133         public static native void ChannelDerivationParameters_set_value_satoshis(long this_ptr, long val);
12134         // const uint8_t (*ChannelDerivationParameters_get_keys_id(const struct LDKChannelDerivationParameters *NONNULL_PTR this_ptr))[32];
12135         public static native byte[] ChannelDerivationParameters_get_keys_id(long this_ptr);
12136         // void ChannelDerivationParameters_set_keys_id(struct LDKChannelDerivationParameters *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
12137         public static native void ChannelDerivationParameters_set_keys_id(long this_ptr, byte[] val);
12138         // struct LDKChannelTransactionParameters ChannelDerivationParameters_get_transaction_parameters(const struct LDKChannelDerivationParameters *NONNULL_PTR this_ptr);
12139         public static native long ChannelDerivationParameters_get_transaction_parameters(long this_ptr);
12140         // void ChannelDerivationParameters_set_transaction_parameters(struct LDKChannelDerivationParameters *NONNULL_PTR this_ptr, struct LDKChannelTransactionParameters val);
12141         public static native void ChannelDerivationParameters_set_transaction_parameters(long this_ptr, long val);
12142         // MUST_USE_RES struct LDKChannelDerivationParameters ChannelDerivationParameters_new(uint64_t value_satoshis_arg, struct LDKThirtyTwoBytes keys_id_arg, struct LDKChannelTransactionParameters transaction_parameters_arg);
12143         public static native long ChannelDerivationParameters_new(long value_satoshis_arg, byte[] keys_id_arg, long transaction_parameters_arg);
12144         // uint64_t ChannelDerivationParameters_clone_ptr(LDKChannelDerivationParameters *NONNULL_PTR arg);
12145         public static native long ChannelDerivationParameters_clone_ptr(long arg);
12146         // struct LDKChannelDerivationParameters ChannelDerivationParameters_clone(const struct LDKChannelDerivationParameters *NONNULL_PTR orig);
12147         public static native long ChannelDerivationParameters_clone(long orig);
12148         // bool ChannelDerivationParameters_eq(const struct LDKChannelDerivationParameters *NONNULL_PTR a, const struct LDKChannelDerivationParameters *NONNULL_PTR b);
12149         public static native boolean ChannelDerivationParameters_eq(long a, long b);
12150         // struct LDKCVec_u8Z ChannelDerivationParameters_write(const struct LDKChannelDerivationParameters *NONNULL_PTR obj);
12151         public static native byte[] ChannelDerivationParameters_write(long obj);
12152         // struct LDKCResult_ChannelDerivationParametersDecodeErrorZ ChannelDerivationParameters_read(struct LDKu8slice ser);
12153         public static native long ChannelDerivationParameters_read(byte[] ser);
12154         // void AnchorDescriptor_free(struct LDKAnchorDescriptor this_obj);
12155         public static native void AnchorDescriptor_free(long this_obj);
12156         // struct LDKChannelDerivationParameters AnchorDescriptor_get_channel_derivation_parameters(const struct LDKAnchorDescriptor *NONNULL_PTR this_ptr);
12157         public static native long AnchorDescriptor_get_channel_derivation_parameters(long this_ptr);
12158         // void AnchorDescriptor_set_channel_derivation_parameters(struct LDKAnchorDescriptor *NONNULL_PTR this_ptr, struct LDKChannelDerivationParameters val);
12159         public static native void AnchorDescriptor_set_channel_derivation_parameters(long this_ptr, long val);
12160         // struct LDKOutPoint AnchorDescriptor_get_outpoint(const struct LDKAnchorDescriptor *NONNULL_PTR this_ptr);
12161         public static native long AnchorDescriptor_get_outpoint(long this_ptr);
12162         // void AnchorDescriptor_set_outpoint(struct LDKAnchorDescriptor *NONNULL_PTR this_ptr, struct LDKOutPoint val);
12163         public static native void AnchorDescriptor_set_outpoint(long this_ptr, long val);
12164         // MUST_USE_RES struct LDKAnchorDescriptor AnchorDescriptor_new(struct LDKChannelDerivationParameters channel_derivation_parameters_arg, struct LDKOutPoint outpoint_arg);
12165         public static native long AnchorDescriptor_new(long channel_derivation_parameters_arg, long outpoint_arg);
12166         // uint64_t AnchorDescriptor_clone_ptr(LDKAnchorDescriptor *NONNULL_PTR arg);
12167         public static native long AnchorDescriptor_clone_ptr(long arg);
12168         // struct LDKAnchorDescriptor AnchorDescriptor_clone(const struct LDKAnchorDescriptor *NONNULL_PTR orig);
12169         public static native long AnchorDescriptor_clone(long orig);
12170         // bool AnchorDescriptor_eq(const struct LDKAnchorDescriptor *NONNULL_PTR a, const struct LDKAnchorDescriptor *NONNULL_PTR b);
12171         public static native boolean AnchorDescriptor_eq(long a, long b);
12172         // MUST_USE_RES struct LDKTxOut AnchorDescriptor_previous_utxo(const struct LDKAnchorDescriptor *NONNULL_PTR this_arg);
12173         public static native long AnchorDescriptor_previous_utxo(long this_arg);
12174         // MUST_USE_RES struct LDKTxIn AnchorDescriptor_unsigned_tx_input(const struct LDKAnchorDescriptor *NONNULL_PTR this_arg);
12175         public static native long AnchorDescriptor_unsigned_tx_input(long this_arg);
12176         // MUST_USE_RES struct LDKCVec_u8Z AnchorDescriptor_witness_script(const struct LDKAnchorDescriptor *NONNULL_PTR this_arg);
12177         public static native byte[] AnchorDescriptor_witness_script(long this_arg);
12178         // MUST_USE_RES struct LDKWitness AnchorDescriptor_tx_input_witness(const struct LDKAnchorDescriptor *NONNULL_PTR this_arg, struct LDKECDSASignature signature);
12179         public static native byte[] AnchorDescriptor_tx_input_witness(long this_arg, byte[] signature);
12180         // MUST_USE_RES struct LDKWriteableEcdsaChannelSigner AnchorDescriptor_derive_channel_signer(const struct LDKAnchorDescriptor *NONNULL_PTR this_arg, const struct LDKSignerProvider *NONNULL_PTR signer_provider);
12181         public static native long AnchorDescriptor_derive_channel_signer(long this_arg, long signer_provider);
12182         // void HTLCDescriptor_free(struct LDKHTLCDescriptor this_obj);
12183         public static native void HTLCDescriptor_free(long this_obj);
12184         // struct LDKChannelDerivationParameters HTLCDescriptor_get_channel_derivation_parameters(const struct LDKHTLCDescriptor *NONNULL_PTR this_ptr);
12185         public static native long HTLCDescriptor_get_channel_derivation_parameters(long this_ptr);
12186         // void HTLCDescriptor_set_channel_derivation_parameters(struct LDKHTLCDescriptor *NONNULL_PTR this_ptr, struct LDKChannelDerivationParameters val);
12187         public static native void HTLCDescriptor_set_channel_derivation_parameters(long this_ptr, long val);
12188         // uint64_t HTLCDescriptor_get_per_commitment_number(const struct LDKHTLCDescriptor *NONNULL_PTR this_ptr);
12189         public static native long HTLCDescriptor_get_per_commitment_number(long this_ptr);
12190         // void HTLCDescriptor_set_per_commitment_number(struct LDKHTLCDescriptor *NONNULL_PTR this_ptr, uint64_t val);
12191         public static native void HTLCDescriptor_set_per_commitment_number(long this_ptr, long val);
12192         // struct LDKPublicKey HTLCDescriptor_get_per_commitment_point(const struct LDKHTLCDescriptor *NONNULL_PTR this_ptr);
12193         public static native byte[] HTLCDescriptor_get_per_commitment_point(long this_ptr);
12194         // void HTLCDescriptor_set_per_commitment_point(struct LDKHTLCDescriptor *NONNULL_PTR this_ptr, struct LDKPublicKey val);
12195         public static native void HTLCDescriptor_set_per_commitment_point(long this_ptr, byte[] val);
12196         // struct LDKHTLCOutputInCommitment HTLCDescriptor_get_htlc(const struct LDKHTLCDescriptor *NONNULL_PTR this_ptr);
12197         public static native long HTLCDescriptor_get_htlc(long this_ptr);
12198         // void HTLCDescriptor_set_htlc(struct LDKHTLCDescriptor *NONNULL_PTR this_ptr, struct LDKHTLCOutputInCommitment val);
12199         public static native void HTLCDescriptor_set_htlc(long this_ptr, long val);
12200         // struct LDKCOption_ThirtyTwoBytesZ HTLCDescriptor_get_preimage(const struct LDKHTLCDescriptor *NONNULL_PTR this_ptr);
12201         public static native long HTLCDescriptor_get_preimage(long this_ptr);
12202         // void HTLCDescriptor_set_preimage(struct LDKHTLCDescriptor *NONNULL_PTR this_ptr, struct LDKCOption_ThirtyTwoBytesZ val);
12203         public static native void HTLCDescriptor_set_preimage(long this_ptr, long val);
12204         // struct LDKECDSASignature HTLCDescriptor_get_counterparty_sig(const struct LDKHTLCDescriptor *NONNULL_PTR this_ptr);
12205         public static native byte[] HTLCDescriptor_get_counterparty_sig(long this_ptr);
12206         // void HTLCDescriptor_set_counterparty_sig(struct LDKHTLCDescriptor *NONNULL_PTR this_ptr, struct LDKECDSASignature val);
12207         public static native void HTLCDescriptor_set_counterparty_sig(long this_ptr, byte[] val);
12208         // uint64_t HTLCDescriptor_clone_ptr(LDKHTLCDescriptor *NONNULL_PTR arg);
12209         public static native long HTLCDescriptor_clone_ptr(long arg);
12210         // struct LDKHTLCDescriptor HTLCDescriptor_clone(const struct LDKHTLCDescriptor *NONNULL_PTR orig);
12211         public static native long HTLCDescriptor_clone(long orig);
12212         // bool HTLCDescriptor_eq(const struct LDKHTLCDescriptor *NONNULL_PTR a, const struct LDKHTLCDescriptor *NONNULL_PTR b);
12213         public static native boolean HTLCDescriptor_eq(long a, long b);
12214         // struct LDKCVec_u8Z HTLCDescriptor_write(const struct LDKHTLCDescriptor *NONNULL_PTR obj);
12215         public static native byte[] HTLCDescriptor_write(long obj);
12216         // struct LDKCResult_HTLCDescriptorDecodeErrorZ HTLCDescriptor_read(struct LDKu8slice ser);
12217         public static native long HTLCDescriptor_read(byte[] ser);
12218         // MUST_USE_RES struct LDKOutPoint HTLCDescriptor_outpoint(const struct LDKHTLCDescriptor *NONNULL_PTR this_arg);
12219         public static native long HTLCDescriptor_outpoint(long this_arg);
12220         // MUST_USE_RES struct LDKTxOut HTLCDescriptor_previous_utxo(const struct LDKHTLCDescriptor *NONNULL_PTR this_arg);
12221         public static native long HTLCDescriptor_previous_utxo(long this_arg);
12222         // MUST_USE_RES struct LDKTxIn HTLCDescriptor_unsigned_tx_input(const struct LDKHTLCDescriptor *NONNULL_PTR this_arg);
12223         public static native long HTLCDescriptor_unsigned_tx_input(long this_arg);
12224         // MUST_USE_RES struct LDKTxOut HTLCDescriptor_tx_output(const struct LDKHTLCDescriptor *NONNULL_PTR this_arg);
12225         public static native long HTLCDescriptor_tx_output(long this_arg);
12226         // MUST_USE_RES struct LDKCVec_u8Z HTLCDescriptor_witness_script(const struct LDKHTLCDescriptor *NONNULL_PTR this_arg);
12227         public static native byte[] HTLCDescriptor_witness_script(long this_arg);
12228         // MUST_USE_RES struct LDKWitness HTLCDescriptor_tx_input_witness(const struct LDKHTLCDescriptor *NONNULL_PTR this_arg, struct LDKECDSASignature signature, struct LDKu8slice witness_script);
12229         public static native byte[] HTLCDescriptor_tx_input_witness(long this_arg, byte[] signature, byte[] witness_script);
12230         // MUST_USE_RES struct LDKWriteableEcdsaChannelSigner HTLCDescriptor_derive_channel_signer(const struct LDKHTLCDescriptor *NONNULL_PTR this_arg, const struct LDKSignerProvider *NONNULL_PTR signer_provider);
12231         public static native long HTLCDescriptor_derive_channel_signer(long this_arg, long signer_provider);
12232         // void BumpTransactionEvent_free(struct LDKBumpTransactionEvent this_ptr);
12233         public static native void BumpTransactionEvent_free(long this_ptr);
12234         // uint64_t BumpTransactionEvent_clone_ptr(LDKBumpTransactionEvent *NONNULL_PTR arg);
12235         public static native long BumpTransactionEvent_clone_ptr(long arg);
12236         // struct LDKBumpTransactionEvent BumpTransactionEvent_clone(const struct LDKBumpTransactionEvent *NONNULL_PTR orig);
12237         public static native long BumpTransactionEvent_clone(long orig);
12238         // struct LDKBumpTransactionEvent BumpTransactionEvent_channel_close(struct LDKThirtyTwoBytes claim_id, uint32_t package_target_feerate_sat_per_1000_weight, struct LDKTransaction commitment_tx, uint64_t commitment_tx_fee_satoshis, struct LDKAnchorDescriptor anchor_descriptor, struct LDKCVec_HTLCOutputInCommitmentZ pending_htlcs);
12239         public static native long BumpTransactionEvent_channel_close(byte[] claim_id, int package_target_feerate_sat_per_1000_weight, byte[] commitment_tx, long commitment_tx_fee_satoshis, long anchor_descriptor, long[] pending_htlcs);
12240         // struct LDKBumpTransactionEvent BumpTransactionEvent_htlcresolution(struct LDKThirtyTwoBytes claim_id, uint32_t target_feerate_sat_per_1000_weight, struct LDKCVec_HTLCDescriptorZ htlc_descriptors, uint32_t tx_lock_time);
12241         public static native long BumpTransactionEvent_htlcresolution(byte[] claim_id, int target_feerate_sat_per_1000_weight, long[] htlc_descriptors, int tx_lock_time);
12242         // bool BumpTransactionEvent_eq(const struct LDKBumpTransactionEvent *NONNULL_PTR a, const struct LDKBumpTransactionEvent *NONNULL_PTR b);
12243         public static native boolean BumpTransactionEvent_eq(long a, long b);
12244         // void Input_free(struct LDKInput this_obj);
12245         public static native void Input_free(long this_obj);
12246         // struct LDKOutPoint Input_get_outpoint(const struct LDKInput *NONNULL_PTR this_ptr);
12247         public static native long Input_get_outpoint(long this_ptr);
12248         // void Input_set_outpoint(struct LDKInput *NONNULL_PTR this_ptr, struct LDKOutPoint val);
12249         public static native void Input_set_outpoint(long this_ptr, long val);
12250         // struct LDKTxOut Input_get_previous_utxo(const struct LDKInput *NONNULL_PTR this_ptr);
12251         public static native long Input_get_previous_utxo(long this_ptr);
12252         // void Input_set_previous_utxo(struct LDKInput *NONNULL_PTR this_ptr, struct LDKTxOut val);
12253         public static native void Input_set_previous_utxo(long this_ptr, long val);
12254         // uint64_t Input_get_satisfaction_weight(const struct LDKInput *NONNULL_PTR this_ptr);
12255         public static native long Input_get_satisfaction_weight(long this_ptr);
12256         // void Input_set_satisfaction_weight(struct LDKInput *NONNULL_PTR this_ptr, uint64_t val);
12257         public static native void Input_set_satisfaction_weight(long this_ptr, long val);
12258         // MUST_USE_RES struct LDKInput Input_new(struct LDKOutPoint outpoint_arg, struct LDKTxOut previous_utxo_arg, uint64_t satisfaction_weight_arg);
12259         public static native long Input_new(long outpoint_arg, long previous_utxo_arg, long satisfaction_weight_arg);
12260         // uint64_t Input_clone_ptr(LDKInput *NONNULL_PTR arg);
12261         public static native long Input_clone_ptr(long arg);
12262         // struct LDKInput Input_clone(const struct LDKInput *NONNULL_PTR orig);
12263         public static native long Input_clone(long orig);
12264         // uint64_t Input_hash(const struct LDKInput *NONNULL_PTR o);
12265         public static native long Input_hash(long o);
12266         // bool Input_eq(const struct LDKInput *NONNULL_PTR a, const struct LDKInput *NONNULL_PTR b);
12267         public static native boolean Input_eq(long a, long b);
12268         // void Utxo_free(struct LDKUtxo this_obj);
12269         public static native void Utxo_free(long this_obj);
12270         // struct LDKOutPoint Utxo_get_outpoint(const struct LDKUtxo *NONNULL_PTR this_ptr);
12271         public static native long Utxo_get_outpoint(long this_ptr);
12272         // void Utxo_set_outpoint(struct LDKUtxo *NONNULL_PTR this_ptr, struct LDKOutPoint val);
12273         public static native void Utxo_set_outpoint(long this_ptr, long val);
12274         // struct LDKTxOut Utxo_get_output(const struct LDKUtxo *NONNULL_PTR this_ptr);
12275         public static native long Utxo_get_output(long this_ptr);
12276         // void Utxo_set_output(struct LDKUtxo *NONNULL_PTR this_ptr, struct LDKTxOut val);
12277         public static native void Utxo_set_output(long this_ptr, long val);
12278         // uint64_t Utxo_get_satisfaction_weight(const struct LDKUtxo *NONNULL_PTR this_ptr);
12279         public static native long Utxo_get_satisfaction_weight(long this_ptr);
12280         // void Utxo_set_satisfaction_weight(struct LDKUtxo *NONNULL_PTR this_ptr, uint64_t val);
12281         public static native void Utxo_set_satisfaction_weight(long this_ptr, long val);
12282         // MUST_USE_RES struct LDKUtxo Utxo_new(struct LDKOutPoint outpoint_arg, struct LDKTxOut output_arg, uint64_t satisfaction_weight_arg);
12283         public static native long Utxo_new(long outpoint_arg, long output_arg, long satisfaction_weight_arg);
12284         // uint64_t Utxo_clone_ptr(LDKUtxo *NONNULL_PTR arg);
12285         public static native long Utxo_clone_ptr(long arg);
12286         // struct LDKUtxo Utxo_clone(const struct LDKUtxo *NONNULL_PTR orig);
12287         public static native long Utxo_clone(long orig);
12288         // uint64_t Utxo_hash(const struct LDKUtxo *NONNULL_PTR o);
12289         public static native long Utxo_hash(long o);
12290         // bool Utxo_eq(const struct LDKUtxo *NONNULL_PTR a, const struct LDKUtxo *NONNULL_PTR b);
12291         public static native boolean Utxo_eq(long a, long b);
12292         // MUST_USE_RES struct LDKUtxo Utxo_new_p2pkh(struct LDKOutPoint outpoint, uint64_t value, const uint8_t (*pubkey_hash)[20]);
12293         public static native long Utxo_new_p2pkh(long outpoint, long value, byte[] pubkey_hash);
12294         // void CoinSelection_free(struct LDKCoinSelection this_obj);
12295         public static native void CoinSelection_free(long this_obj);
12296         // struct LDKCVec_UtxoZ CoinSelection_get_confirmed_utxos(const struct LDKCoinSelection *NONNULL_PTR this_ptr);
12297         public static native long[] CoinSelection_get_confirmed_utxos(long this_ptr);
12298         // void CoinSelection_set_confirmed_utxos(struct LDKCoinSelection *NONNULL_PTR this_ptr, struct LDKCVec_UtxoZ val);
12299         public static native void CoinSelection_set_confirmed_utxos(long this_ptr, long[] val);
12300         // struct LDKCOption_TxOutZ CoinSelection_get_change_output(const struct LDKCoinSelection *NONNULL_PTR this_ptr);
12301         public static native long CoinSelection_get_change_output(long this_ptr);
12302         // void CoinSelection_set_change_output(struct LDKCoinSelection *NONNULL_PTR this_ptr, struct LDKCOption_TxOutZ val);
12303         public static native void CoinSelection_set_change_output(long this_ptr, long val);
12304         // MUST_USE_RES struct LDKCoinSelection CoinSelection_new(struct LDKCVec_UtxoZ confirmed_utxos_arg, struct LDKCOption_TxOutZ change_output_arg);
12305         public static native long CoinSelection_new(long[] confirmed_utxos_arg, long change_output_arg);
12306         // uint64_t CoinSelection_clone_ptr(LDKCoinSelection *NONNULL_PTR arg);
12307         public static native long CoinSelection_clone_ptr(long arg);
12308         // struct LDKCoinSelection CoinSelection_clone(const struct LDKCoinSelection *NONNULL_PTR orig);
12309         public static native long CoinSelection_clone(long orig);
12310         // void CoinSelectionSource_free(struct LDKCoinSelectionSource this_ptr);
12311         public static native void CoinSelectionSource_free(long this_ptr);
12312         // void WalletSource_free(struct LDKWalletSource this_ptr);
12313         public static native void WalletSource_free(long this_ptr);
12314         // void Wallet_free(struct LDKWallet this_obj);
12315         public static native void Wallet_free(long this_obj);
12316         // MUST_USE_RES struct LDKWallet Wallet_new(struct LDKWalletSource source, struct LDKLogger logger);
12317         public static native long Wallet_new(long source, long logger);
12318         // struct LDKCoinSelectionSource Wallet_as_CoinSelectionSource(const struct LDKWallet *NONNULL_PTR this_arg);
12319         public static native long Wallet_as_CoinSelectionSource(long this_arg);
12320         // void BumpTransactionEventHandler_free(struct LDKBumpTransactionEventHandler this_obj);
12321         public static native void BumpTransactionEventHandler_free(long this_obj);
12322         // MUST_USE_RES struct LDKBumpTransactionEventHandler BumpTransactionEventHandler_new(struct LDKBroadcasterInterface broadcaster, struct LDKCoinSelectionSource utxo_source, struct LDKSignerProvider signer_provider, struct LDKLogger logger);
12323         public static native long BumpTransactionEventHandler_new(long broadcaster, long utxo_source, long signer_provider, long logger);
12324         // void BumpTransactionEventHandler_handle_event(const struct LDKBumpTransactionEventHandler *NONNULL_PTR this_arg, const struct LDKBumpTransactionEvent *NONNULL_PTR event);
12325         public static native void BumpTransactionEventHandler_handle_event(long this_arg, long event);
12326         // void FilesystemStore_free(struct LDKFilesystemStore this_obj);
12327         public static native void FilesystemStore_free(long this_obj);
12328         // MUST_USE_RES struct LDKFilesystemStore FilesystemStore_new(struct LDKStr data_dir);
12329         public static native long FilesystemStore_new(String data_dir);
12330         // MUST_USE_RES struct LDKStr FilesystemStore_get_data_dir(const struct LDKFilesystemStore *NONNULL_PTR this_arg);
12331         public static native String FilesystemStore_get_data_dir(long this_arg);
12332         // struct LDKKVStore FilesystemStore_as_KVStore(const struct LDKFilesystemStore *NONNULL_PTR this_arg);
12333         public static native long FilesystemStore_as_KVStore(long this_arg);
12334         // void BackgroundProcessor_free(struct LDKBackgroundProcessor this_obj);
12335         public static native void BackgroundProcessor_free(long this_obj);
12336         // void GossipSync_free(struct LDKGossipSync this_ptr);
12337         public static native void GossipSync_free(long this_ptr);
12338         // struct LDKGossipSync GossipSync_p2_p(const struct LDKP2PGossipSync *NONNULL_PTR a);
12339         public static native long GossipSync_p2_p(long a);
12340         // struct LDKGossipSync GossipSync_rapid(const struct LDKRapidGossipSync *NONNULL_PTR a);
12341         public static native long GossipSync_rapid(long a);
12342         // struct LDKGossipSync GossipSync_none(void);
12343         public static native long GossipSync_none();
12344         // MUST_USE_RES struct LDKBackgroundProcessor BackgroundProcessor_start(struct LDKPersister persister, struct LDKEventHandler event_handler, const struct LDKChainMonitor *NONNULL_PTR chain_monitor, const struct LDKChannelManager *NONNULL_PTR channel_manager, struct LDKGossipSync gossip_sync, const struct LDKPeerManager *NONNULL_PTR peer_manager, struct LDKLogger logger, struct LDKCOption_WriteableScoreZ scorer);
12345         public static native long BackgroundProcessor_start(long persister, long event_handler, long chain_monitor, long channel_manager, long gossip_sync, long peer_manager, long logger, long scorer);
12346         // MUST_USE_RES struct LDKCResult_NoneIOErrorZ BackgroundProcessor_join(struct LDKBackgroundProcessor this_arg);
12347         public static native long BackgroundProcessor_join(long this_arg);
12348         // MUST_USE_RES struct LDKCResult_NoneIOErrorZ BackgroundProcessor_stop(struct LDKBackgroundProcessor this_arg);
12349         public static native long BackgroundProcessor_stop(long this_arg);
12350         // void Bolt11ParseError_free(struct LDKBolt11ParseError this_ptr);
12351         public static native void Bolt11ParseError_free(long this_ptr);
12352         // uint64_t Bolt11ParseError_clone_ptr(LDKBolt11ParseError *NONNULL_PTR arg);
12353         public static native long Bolt11ParseError_clone_ptr(long arg);
12354         // struct LDKBolt11ParseError Bolt11ParseError_clone(const struct LDKBolt11ParseError *NONNULL_PTR orig);
12355         public static native long Bolt11ParseError_clone(long orig);
12356         // struct LDKBolt11ParseError Bolt11ParseError_bech32_error(struct LDKBech32Error a);
12357         public static native long Bolt11ParseError_bech32_error(long a);
12358         // struct LDKBolt11ParseError Bolt11ParseError_parse_amount_error(struct LDKError a);
12359         public static native long Bolt11ParseError_parse_amount_error(int a);
12360         // struct LDKBolt11ParseError Bolt11ParseError_malformed_signature(enum LDKSecp256k1Error a);
12361         public static native long Bolt11ParseError_malformed_signature(Secp256k1Error a);
12362         // struct LDKBolt11ParseError Bolt11ParseError_bad_prefix(void);
12363         public static native long Bolt11ParseError_bad_prefix();
12364         // struct LDKBolt11ParseError Bolt11ParseError_unknown_currency(void);
12365         public static native long Bolt11ParseError_unknown_currency();
12366         // struct LDKBolt11ParseError Bolt11ParseError_unknown_si_prefix(void);
12367         public static native long Bolt11ParseError_unknown_si_prefix();
12368         // struct LDKBolt11ParseError Bolt11ParseError_malformed_hrp(void);
12369         public static native long Bolt11ParseError_malformed_hrp();
12370         // struct LDKBolt11ParseError Bolt11ParseError_too_short_data_part(void);
12371         public static native long Bolt11ParseError_too_short_data_part();
12372         // struct LDKBolt11ParseError Bolt11ParseError_unexpected_end_of_tagged_fields(void);
12373         public static native long Bolt11ParseError_unexpected_end_of_tagged_fields();
12374         // struct LDKBolt11ParseError Bolt11ParseError_description_decode_error(struct LDKError a);
12375         public static native long Bolt11ParseError_description_decode_error(int a);
12376         // struct LDKBolt11ParseError Bolt11ParseError_padding_error(void);
12377         public static native long Bolt11ParseError_padding_error();
12378         // struct LDKBolt11ParseError Bolt11ParseError_integer_overflow_error(void);
12379         public static native long Bolt11ParseError_integer_overflow_error();
12380         // struct LDKBolt11ParseError Bolt11ParseError_invalid_seg_wit_program_length(void);
12381         public static native long Bolt11ParseError_invalid_seg_wit_program_length();
12382         // struct LDKBolt11ParseError Bolt11ParseError_invalid_pub_key_hash_length(void);
12383         public static native long Bolt11ParseError_invalid_pub_key_hash_length();
12384         // struct LDKBolt11ParseError Bolt11ParseError_invalid_script_hash_length(void);
12385         public static native long Bolt11ParseError_invalid_script_hash_length();
12386         // struct LDKBolt11ParseError Bolt11ParseError_invalid_recovery_id(void);
12387         public static native long Bolt11ParseError_invalid_recovery_id();
12388         // struct LDKBolt11ParseError Bolt11ParseError_invalid_slice_length(struct LDKStr a);
12389         public static native long Bolt11ParseError_invalid_slice_length(String a);
12390         // struct LDKBolt11ParseError Bolt11ParseError_skip(void);
12391         public static native long Bolt11ParseError_skip();
12392         // bool Bolt11ParseError_eq(const struct LDKBolt11ParseError *NONNULL_PTR a, const struct LDKBolt11ParseError *NONNULL_PTR b);
12393         public static native boolean Bolt11ParseError_eq(long a, long b);
12394         // void ParseOrSemanticError_free(struct LDKParseOrSemanticError this_ptr);
12395         public static native void ParseOrSemanticError_free(long this_ptr);
12396         // uint64_t ParseOrSemanticError_clone_ptr(LDKParseOrSemanticError *NONNULL_PTR arg);
12397         public static native long ParseOrSemanticError_clone_ptr(long arg);
12398         // struct LDKParseOrSemanticError ParseOrSemanticError_clone(const struct LDKParseOrSemanticError *NONNULL_PTR orig);
12399         public static native long ParseOrSemanticError_clone(long orig);
12400         // struct LDKParseOrSemanticError ParseOrSemanticError_parse_error(struct LDKBolt11ParseError a);
12401         public static native long ParseOrSemanticError_parse_error(long a);
12402         // struct LDKParseOrSemanticError ParseOrSemanticError_semantic_error(enum LDKBolt11SemanticError a);
12403         public static native long ParseOrSemanticError_semantic_error(Bolt11SemanticError a);
12404         // bool ParseOrSemanticError_eq(const struct LDKParseOrSemanticError *NONNULL_PTR a, const struct LDKParseOrSemanticError *NONNULL_PTR b);
12405         public static native boolean ParseOrSemanticError_eq(long a, long b);
12406         // void Bolt11Invoice_free(struct LDKBolt11Invoice this_obj);
12407         public static native void Bolt11Invoice_free(long this_obj);
12408         // bool Bolt11Invoice_eq(const struct LDKBolt11Invoice *NONNULL_PTR a, const struct LDKBolt11Invoice *NONNULL_PTR b);
12409         public static native boolean Bolt11Invoice_eq(long a, long b);
12410         // uint64_t Bolt11Invoice_clone_ptr(LDKBolt11Invoice *NONNULL_PTR arg);
12411         public static native long Bolt11Invoice_clone_ptr(long arg);
12412         // struct LDKBolt11Invoice Bolt11Invoice_clone(const struct LDKBolt11Invoice *NONNULL_PTR orig);
12413         public static native long Bolt11Invoice_clone(long orig);
12414         // uint64_t Bolt11Invoice_hash(const struct LDKBolt11Invoice *NONNULL_PTR o);
12415         public static native long Bolt11Invoice_hash(long o);
12416         // void SignedRawBolt11Invoice_free(struct LDKSignedRawBolt11Invoice this_obj);
12417         public static native void SignedRawBolt11Invoice_free(long this_obj);
12418         // bool SignedRawBolt11Invoice_eq(const struct LDKSignedRawBolt11Invoice *NONNULL_PTR a, const struct LDKSignedRawBolt11Invoice *NONNULL_PTR b);
12419         public static native boolean SignedRawBolt11Invoice_eq(long a, long b);
12420         // uint64_t SignedRawBolt11Invoice_clone_ptr(LDKSignedRawBolt11Invoice *NONNULL_PTR arg);
12421         public static native long SignedRawBolt11Invoice_clone_ptr(long arg);
12422         // struct LDKSignedRawBolt11Invoice SignedRawBolt11Invoice_clone(const struct LDKSignedRawBolt11Invoice *NONNULL_PTR orig);
12423         public static native long SignedRawBolt11Invoice_clone(long orig);
12424         // uint64_t SignedRawBolt11Invoice_hash(const struct LDKSignedRawBolt11Invoice *NONNULL_PTR o);
12425         public static native long SignedRawBolt11Invoice_hash(long o);
12426         // void RawBolt11Invoice_free(struct LDKRawBolt11Invoice this_obj);
12427         public static native void RawBolt11Invoice_free(long this_obj);
12428         // struct LDKRawDataPart RawBolt11Invoice_get_data(const struct LDKRawBolt11Invoice *NONNULL_PTR this_ptr);
12429         public static native long RawBolt11Invoice_get_data(long this_ptr);
12430         // void RawBolt11Invoice_set_data(struct LDKRawBolt11Invoice *NONNULL_PTR this_ptr, struct LDKRawDataPart val);
12431         public static native void RawBolt11Invoice_set_data(long this_ptr, long val);
12432         // bool RawBolt11Invoice_eq(const struct LDKRawBolt11Invoice *NONNULL_PTR a, const struct LDKRawBolt11Invoice *NONNULL_PTR b);
12433         public static native boolean RawBolt11Invoice_eq(long a, long b);
12434         // uint64_t RawBolt11Invoice_clone_ptr(LDKRawBolt11Invoice *NONNULL_PTR arg);
12435         public static native long RawBolt11Invoice_clone_ptr(long arg);
12436         // struct LDKRawBolt11Invoice RawBolt11Invoice_clone(const struct LDKRawBolt11Invoice *NONNULL_PTR orig);
12437         public static native long RawBolt11Invoice_clone(long orig);
12438         // uint64_t RawBolt11Invoice_hash(const struct LDKRawBolt11Invoice *NONNULL_PTR o);
12439         public static native long RawBolt11Invoice_hash(long o);
12440         // void RawDataPart_free(struct LDKRawDataPart this_obj);
12441         public static native void RawDataPart_free(long this_obj);
12442         // struct LDKPositiveTimestamp RawDataPart_get_timestamp(const struct LDKRawDataPart *NONNULL_PTR this_ptr);
12443         public static native long RawDataPart_get_timestamp(long this_ptr);
12444         // void RawDataPart_set_timestamp(struct LDKRawDataPart *NONNULL_PTR this_ptr, struct LDKPositiveTimestamp val);
12445         public static native void RawDataPart_set_timestamp(long this_ptr, long val);
12446         // bool RawDataPart_eq(const struct LDKRawDataPart *NONNULL_PTR a, const struct LDKRawDataPart *NONNULL_PTR b);
12447         public static native boolean RawDataPart_eq(long a, long b);
12448         // uint64_t RawDataPart_clone_ptr(LDKRawDataPart *NONNULL_PTR arg);
12449         public static native long RawDataPart_clone_ptr(long arg);
12450         // struct LDKRawDataPart RawDataPart_clone(const struct LDKRawDataPart *NONNULL_PTR orig);
12451         public static native long RawDataPart_clone(long orig);
12452         // uint64_t RawDataPart_hash(const struct LDKRawDataPart *NONNULL_PTR o);
12453         public static native long RawDataPart_hash(long o);
12454         // void PositiveTimestamp_free(struct LDKPositiveTimestamp this_obj);
12455         public static native void PositiveTimestamp_free(long this_obj);
12456         // bool PositiveTimestamp_eq(const struct LDKPositiveTimestamp *NONNULL_PTR a, const struct LDKPositiveTimestamp *NONNULL_PTR b);
12457         public static native boolean PositiveTimestamp_eq(long a, long b);
12458         // uint64_t PositiveTimestamp_clone_ptr(LDKPositiveTimestamp *NONNULL_PTR arg);
12459         public static native long PositiveTimestamp_clone_ptr(long arg);
12460         // struct LDKPositiveTimestamp PositiveTimestamp_clone(const struct LDKPositiveTimestamp *NONNULL_PTR orig);
12461         public static native long PositiveTimestamp_clone(long orig);
12462         // uint64_t PositiveTimestamp_hash(const struct LDKPositiveTimestamp *NONNULL_PTR o);
12463         public static native long PositiveTimestamp_hash(long o);
12464         // enum LDKSiPrefix SiPrefix_clone(const enum LDKSiPrefix *NONNULL_PTR orig);
12465         public static native SiPrefix SiPrefix_clone(long orig);
12466         // enum LDKSiPrefix SiPrefix_milli(void);
12467         public static native SiPrefix SiPrefix_milli();
12468         // enum LDKSiPrefix SiPrefix_micro(void);
12469         public static native SiPrefix SiPrefix_micro();
12470         // enum LDKSiPrefix SiPrefix_nano(void);
12471         public static native SiPrefix SiPrefix_nano();
12472         // enum LDKSiPrefix SiPrefix_pico(void);
12473         public static native SiPrefix SiPrefix_pico();
12474         // bool SiPrefix_eq(const enum LDKSiPrefix *NONNULL_PTR a, const enum LDKSiPrefix *NONNULL_PTR b);
12475         public static native boolean SiPrefix_eq(long a, long b);
12476         // uint64_t SiPrefix_hash(const enum LDKSiPrefix *NONNULL_PTR o);
12477         public static native long SiPrefix_hash(long o);
12478         // MUST_USE_RES uint64_t SiPrefix_multiplier(const enum LDKSiPrefix *NONNULL_PTR this_arg);
12479         public static native long SiPrefix_multiplier(long this_arg);
12480         // enum LDKCurrency Currency_clone(const enum LDKCurrency *NONNULL_PTR orig);
12481         public static native Currency Currency_clone(long orig);
12482         // enum LDKCurrency Currency_bitcoin(void);
12483         public static native Currency Currency_bitcoin();
12484         // enum LDKCurrency Currency_bitcoin_testnet(void);
12485         public static native Currency Currency_bitcoin_testnet();
12486         // enum LDKCurrency Currency_regtest(void);
12487         public static native Currency Currency_regtest();
12488         // enum LDKCurrency Currency_simnet(void);
12489         public static native Currency Currency_simnet();
12490         // enum LDKCurrency Currency_signet(void);
12491         public static native Currency Currency_signet();
12492         // uint64_t Currency_hash(const enum LDKCurrency *NONNULL_PTR o);
12493         public static native long Currency_hash(long o);
12494         // bool Currency_eq(const enum LDKCurrency *NONNULL_PTR a, const enum LDKCurrency *NONNULL_PTR b);
12495         public static native boolean Currency_eq(long a, long b);
12496         // void Sha256_free(struct LDKSha256 this_obj);
12497         public static native void Sha256_free(long this_obj);
12498         // uint64_t Sha256_clone_ptr(LDKSha256 *NONNULL_PTR arg);
12499         public static native long Sha256_clone_ptr(long arg);
12500         // struct LDKSha256 Sha256_clone(const struct LDKSha256 *NONNULL_PTR orig);
12501         public static native long Sha256_clone(long orig);
12502         // uint64_t Sha256_hash(const struct LDKSha256 *NONNULL_PTR o);
12503         public static native long Sha256_hash(long o);
12504         // bool Sha256_eq(const struct LDKSha256 *NONNULL_PTR a, const struct LDKSha256 *NONNULL_PTR b);
12505         public static native boolean Sha256_eq(long a, long b);
12506         // MUST_USE_RES struct LDKSha256 Sha256_from_bytes(const uint8_t (*bytes)[32]);
12507         public static native long Sha256_from_bytes(byte[] bytes);
12508         // void Description_free(struct LDKDescription this_obj);
12509         public static native void Description_free(long this_obj);
12510         // uint64_t Description_clone_ptr(LDKDescription *NONNULL_PTR arg);
12511         public static native long Description_clone_ptr(long arg);
12512         // struct LDKDescription Description_clone(const struct LDKDescription *NONNULL_PTR orig);
12513         public static native long Description_clone(long orig);
12514         // uint64_t Description_hash(const struct LDKDescription *NONNULL_PTR o);
12515         public static native long Description_hash(long o);
12516         // bool Description_eq(const struct LDKDescription *NONNULL_PTR a, const struct LDKDescription *NONNULL_PTR b);
12517         public static native boolean Description_eq(long a, long b);
12518         // void PayeePubKey_free(struct LDKPayeePubKey this_obj);
12519         public static native void PayeePubKey_free(long this_obj);
12520         // struct LDKPublicKey PayeePubKey_get_a(const struct LDKPayeePubKey *NONNULL_PTR this_ptr);
12521         public static native byte[] PayeePubKey_get_a(long this_ptr);
12522         // void PayeePubKey_set_a(struct LDKPayeePubKey *NONNULL_PTR this_ptr, struct LDKPublicKey val);
12523         public static native void PayeePubKey_set_a(long this_ptr, byte[] val);
12524         // MUST_USE_RES struct LDKPayeePubKey PayeePubKey_new(struct LDKPublicKey a_arg);
12525         public static native long PayeePubKey_new(byte[] a_arg);
12526         // uint64_t PayeePubKey_clone_ptr(LDKPayeePubKey *NONNULL_PTR arg);
12527         public static native long PayeePubKey_clone_ptr(long arg);
12528         // struct LDKPayeePubKey PayeePubKey_clone(const struct LDKPayeePubKey *NONNULL_PTR orig);
12529         public static native long PayeePubKey_clone(long orig);
12530         // uint64_t PayeePubKey_hash(const struct LDKPayeePubKey *NONNULL_PTR o);
12531         public static native long PayeePubKey_hash(long o);
12532         // bool PayeePubKey_eq(const struct LDKPayeePubKey *NONNULL_PTR a, const struct LDKPayeePubKey *NONNULL_PTR b);
12533         public static native boolean PayeePubKey_eq(long a, long b);
12534         // void ExpiryTime_free(struct LDKExpiryTime this_obj);
12535         public static native void ExpiryTime_free(long this_obj);
12536         // uint64_t ExpiryTime_clone_ptr(LDKExpiryTime *NONNULL_PTR arg);
12537         public static native long ExpiryTime_clone_ptr(long arg);
12538         // struct LDKExpiryTime ExpiryTime_clone(const struct LDKExpiryTime *NONNULL_PTR orig);
12539         public static native long ExpiryTime_clone(long orig);
12540         // uint64_t ExpiryTime_hash(const struct LDKExpiryTime *NONNULL_PTR o);
12541         public static native long ExpiryTime_hash(long o);
12542         // bool ExpiryTime_eq(const struct LDKExpiryTime *NONNULL_PTR a, const struct LDKExpiryTime *NONNULL_PTR b);
12543         public static native boolean ExpiryTime_eq(long a, long b);
12544         // void MinFinalCltvExpiryDelta_free(struct LDKMinFinalCltvExpiryDelta this_obj);
12545         public static native void MinFinalCltvExpiryDelta_free(long this_obj);
12546         // uint64_t MinFinalCltvExpiryDelta_get_a(const struct LDKMinFinalCltvExpiryDelta *NONNULL_PTR this_ptr);
12547         public static native long MinFinalCltvExpiryDelta_get_a(long this_ptr);
12548         // void MinFinalCltvExpiryDelta_set_a(struct LDKMinFinalCltvExpiryDelta *NONNULL_PTR this_ptr, uint64_t val);
12549         public static native void MinFinalCltvExpiryDelta_set_a(long this_ptr, long val);
12550         // MUST_USE_RES struct LDKMinFinalCltvExpiryDelta MinFinalCltvExpiryDelta_new(uint64_t a_arg);
12551         public static native long MinFinalCltvExpiryDelta_new(long a_arg);
12552         // uint64_t MinFinalCltvExpiryDelta_clone_ptr(LDKMinFinalCltvExpiryDelta *NONNULL_PTR arg);
12553         public static native long MinFinalCltvExpiryDelta_clone_ptr(long arg);
12554         // struct LDKMinFinalCltvExpiryDelta MinFinalCltvExpiryDelta_clone(const struct LDKMinFinalCltvExpiryDelta *NONNULL_PTR orig);
12555         public static native long MinFinalCltvExpiryDelta_clone(long orig);
12556         // uint64_t MinFinalCltvExpiryDelta_hash(const struct LDKMinFinalCltvExpiryDelta *NONNULL_PTR o);
12557         public static native long MinFinalCltvExpiryDelta_hash(long o);
12558         // bool MinFinalCltvExpiryDelta_eq(const struct LDKMinFinalCltvExpiryDelta *NONNULL_PTR a, const struct LDKMinFinalCltvExpiryDelta *NONNULL_PTR b);
12559         public static native boolean MinFinalCltvExpiryDelta_eq(long a, long b);
12560         // void Fallback_free(struct LDKFallback this_ptr);
12561         public static native void Fallback_free(long this_ptr);
12562         // uint64_t Fallback_clone_ptr(LDKFallback *NONNULL_PTR arg);
12563         public static native long Fallback_clone_ptr(long arg);
12564         // struct LDKFallback Fallback_clone(const struct LDKFallback *NONNULL_PTR orig);
12565         public static native long Fallback_clone(long orig);
12566         // struct LDKFallback Fallback_seg_wit_program(struct LDKWitnessVersion version, struct LDKCVec_u8Z program);
12567         public static native long Fallback_seg_wit_program(byte version, byte[] program);
12568         // struct LDKFallback Fallback_pub_key_hash(struct LDKTwentyBytes a);
12569         public static native long Fallback_pub_key_hash(byte[] a);
12570         // struct LDKFallback Fallback_script_hash(struct LDKTwentyBytes a);
12571         public static native long Fallback_script_hash(byte[] a);
12572         // uint64_t Fallback_hash(const struct LDKFallback *NONNULL_PTR o);
12573         public static native long Fallback_hash(long o);
12574         // bool Fallback_eq(const struct LDKFallback *NONNULL_PTR a, const struct LDKFallback *NONNULL_PTR b);
12575         public static native boolean Fallback_eq(long a, long b);
12576         // void Bolt11InvoiceSignature_free(struct LDKBolt11InvoiceSignature this_obj);
12577         public static native void Bolt11InvoiceSignature_free(long this_obj);
12578         // uint64_t Bolt11InvoiceSignature_clone_ptr(LDKBolt11InvoiceSignature *NONNULL_PTR arg);
12579         public static native long Bolt11InvoiceSignature_clone_ptr(long arg);
12580         // struct LDKBolt11InvoiceSignature Bolt11InvoiceSignature_clone(const struct LDKBolt11InvoiceSignature *NONNULL_PTR orig);
12581         public static native long Bolt11InvoiceSignature_clone(long orig);
12582         // uint64_t Bolt11InvoiceSignature_hash(const struct LDKBolt11InvoiceSignature *NONNULL_PTR o);
12583         public static native long Bolt11InvoiceSignature_hash(long o);
12584         // bool Bolt11InvoiceSignature_eq(const struct LDKBolt11InvoiceSignature *NONNULL_PTR a, const struct LDKBolt11InvoiceSignature *NONNULL_PTR b);
12585         public static native boolean Bolt11InvoiceSignature_eq(long a, long b);
12586         // void PrivateRoute_free(struct LDKPrivateRoute this_obj);
12587         public static native void PrivateRoute_free(long this_obj);
12588         // uint64_t PrivateRoute_clone_ptr(LDKPrivateRoute *NONNULL_PTR arg);
12589         public static native long PrivateRoute_clone_ptr(long arg);
12590         // struct LDKPrivateRoute PrivateRoute_clone(const struct LDKPrivateRoute *NONNULL_PTR orig);
12591         public static native long PrivateRoute_clone(long orig);
12592         // uint64_t PrivateRoute_hash(const struct LDKPrivateRoute *NONNULL_PTR o);
12593         public static native long PrivateRoute_hash(long o);
12594         // bool PrivateRoute_eq(const struct LDKPrivateRoute *NONNULL_PTR a, const struct LDKPrivateRoute *NONNULL_PTR b);
12595         public static native boolean PrivateRoute_eq(long a, long b);
12596         // MUST_USE_RES struct LDKC3Tuple_RawBolt11Invoice_u832Bolt11InvoiceSignatureZ SignedRawBolt11Invoice_into_parts(struct LDKSignedRawBolt11Invoice this_arg);
12597         public static native long SignedRawBolt11Invoice_into_parts(long this_arg);
12598         // MUST_USE_RES struct LDKRawBolt11Invoice SignedRawBolt11Invoice_raw_invoice(const struct LDKSignedRawBolt11Invoice *NONNULL_PTR this_arg);
12599         public static native long SignedRawBolt11Invoice_raw_invoice(long this_arg);
12600         // MUST_USE_RES const uint8_t (*SignedRawBolt11Invoice_signable_hash(const struct LDKSignedRawBolt11Invoice *NONNULL_PTR this_arg))[32];
12601         public static native byte[] SignedRawBolt11Invoice_signable_hash(long this_arg);
12602         // MUST_USE_RES struct LDKBolt11InvoiceSignature SignedRawBolt11Invoice_signature(const struct LDKSignedRawBolt11Invoice *NONNULL_PTR this_arg);
12603         public static native long SignedRawBolt11Invoice_signature(long this_arg);
12604         // MUST_USE_RES struct LDKCResult_PayeePubKeySecp256k1ErrorZ SignedRawBolt11Invoice_recover_payee_pub_key(const struct LDKSignedRawBolt11Invoice *NONNULL_PTR this_arg);
12605         public static native long SignedRawBolt11Invoice_recover_payee_pub_key(long this_arg);
12606         // MUST_USE_RES bool SignedRawBolt11Invoice_check_signature(const struct LDKSignedRawBolt11Invoice *NONNULL_PTR this_arg);
12607         public static native boolean SignedRawBolt11Invoice_check_signature(long this_arg);
12608         // MUST_USE_RES struct LDKThirtyTwoBytes RawBolt11Invoice_signable_hash(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12609         public static native byte[] RawBolt11Invoice_signable_hash(long this_arg);
12610         // MUST_USE_RES struct LDKSha256 RawBolt11Invoice_payment_hash(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12611         public static native long RawBolt11Invoice_payment_hash(long this_arg);
12612         // MUST_USE_RES struct LDKDescription RawBolt11Invoice_description(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12613         public static native long RawBolt11Invoice_description(long this_arg);
12614         // MUST_USE_RES struct LDKPayeePubKey RawBolt11Invoice_payee_pub_key(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12615         public static native long RawBolt11Invoice_payee_pub_key(long this_arg);
12616         // MUST_USE_RES struct LDKSha256 RawBolt11Invoice_description_hash(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12617         public static native long RawBolt11Invoice_description_hash(long this_arg);
12618         // MUST_USE_RES struct LDKExpiryTime RawBolt11Invoice_expiry_time(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12619         public static native long RawBolt11Invoice_expiry_time(long this_arg);
12620         // MUST_USE_RES struct LDKMinFinalCltvExpiryDelta RawBolt11Invoice_min_final_cltv_expiry_delta(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12621         public static native long RawBolt11Invoice_min_final_cltv_expiry_delta(long this_arg);
12622         // MUST_USE_RES struct LDKCOption_ThirtyTwoBytesZ RawBolt11Invoice_payment_secret(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12623         public static native long RawBolt11Invoice_payment_secret(long this_arg);
12624         // MUST_USE_RES struct LDKCOption_CVec_u8ZZ RawBolt11Invoice_payment_metadata(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12625         public static native long RawBolt11Invoice_payment_metadata(long this_arg);
12626         // MUST_USE_RES struct LDKBolt11InvoiceFeatures RawBolt11Invoice_features(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12627         public static native long RawBolt11Invoice_features(long this_arg);
12628         // MUST_USE_RES struct LDKCVec_PrivateRouteZ RawBolt11Invoice_private_routes(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12629         public static native long[] RawBolt11Invoice_private_routes(long this_arg);
12630         // MUST_USE_RES struct LDKCOption_u64Z RawBolt11Invoice_amount_pico_btc(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12631         public static native long RawBolt11Invoice_amount_pico_btc(long this_arg);
12632         // MUST_USE_RES enum LDKCurrency RawBolt11Invoice_currency(const struct LDKRawBolt11Invoice *NONNULL_PTR this_arg);
12633         public static native Currency RawBolt11Invoice_currency(long this_arg);
12634         // MUST_USE_RES struct LDKCResult_PositiveTimestampCreationErrorZ PositiveTimestamp_from_unix_timestamp(uint64_t unix_seconds);
12635         public static native long PositiveTimestamp_from_unix_timestamp(long unix_seconds);
12636         // MUST_USE_RES struct LDKCResult_PositiveTimestampCreationErrorZ PositiveTimestamp_from_system_time(uint64_t time);
12637         public static native long PositiveTimestamp_from_system_time(long time);
12638         // MUST_USE_RES struct LDKCResult_PositiveTimestampCreationErrorZ PositiveTimestamp_from_duration_since_epoch(uint64_t duration);
12639         public static native long PositiveTimestamp_from_duration_since_epoch(long duration);
12640         // MUST_USE_RES uint64_t PositiveTimestamp_as_unix_timestamp(const struct LDKPositiveTimestamp *NONNULL_PTR this_arg);
12641         public static native long PositiveTimestamp_as_unix_timestamp(long this_arg);
12642         // MUST_USE_RES uint64_t PositiveTimestamp_as_duration_since_epoch(const struct LDKPositiveTimestamp *NONNULL_PTR this_arg);
12643         public static native long PositiveTimestamp_as_duration_since_epoch(long this_arg);
12644         // MUST_USE_RES uint64_t PositiveTimestamp_as_time(const struct LDKPositiveTimestamp *NONNULL_PTR this_arg);
12645         public static native long PositiveTimestamp_as_time(long this_arg);
12646         // MUST_USE_RES struct LDKThirtyTwoBytes Bolt11Invoice_signable_hash(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12647         public static native byte[] Bolt11Invoice_signable_hash(long this_arg);
12648         // MUST_USE_RES struct LDKSignedRawBolt11Invoice Bolt11Invoice_into_signed_raw(struct LDKBolt11Invoice this_arg);
12649         public static native long Bolt11Invoice_into_signed_raw(long this_arg);
12650         // MUST_USE_RES struct LDKCResult_NoneBolt11SemanticErrorZ Bolt11Invoice_check_signature(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12651         public static native long Bolt11Invoice_check_signature(long this_arg);
12652         // MUST_USE_RES struct LDKCResult_Bolt11InvoiceBolt11SemanticErrorZ Bolt11Invoice_from_signed(struct LDKSignedRawBolt11Invoice signed_invoice);
12653         public static native long Bolt11Invoice_from_signed(long signed_invoice);
12654         // MUST_USE_RES uint64_t Bolt11Invoice_timestamp(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12655         public static native long Bolt11Invoice_timestamp(long this_arg);
12656         // MUST_USE_RES uint64_t Bolt11Invoice_duration_since_epoch(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12657         public static native long Bolt11Invoice_duration_since_epoch(long this_arg);
12658         // MUST_USE_RES const uint8_t (*Bolt11Invoice_payment_hash(const struct LDKBolt11Invoice *NONNULL_PTR this_arg))[32];
12659         public static native byte[] Bolt11Invoice_payment_hash(long this_arg);
12660         // MUST_USE_RES struct LDKPublicKey Bolt11Invoice_payee_pub_key(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12661         public static native byte[] Bolt11Invoice_payee_pub_key(long this_arg);
12662         // MUST_USE_RES const uint8_t (*Bolt11Invoice_payment_secret(const struct LDKBolt11Invoice *NONNULL_PTR this_arg))[32];
12663         public static native byte[] Bolt11Invoice_payment_secret(long this_arg);
12664         // MUST_USE_RES struct LDKCOption_CVec_u8ZZ Bolt11Invoice_payment_metadata(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12665         public static native long Bolt11Invoice_payment_metadata(long this_arg);
12666         // MUST_USE_RES struct LDKBolt11InvoiceFeatures Bolt11Invoice_features(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12667         public static native long Bolt11Invoice_features(long this_arg);
12668         // MUST_USE_RES struct LDKPublicKey Bolt11Invoice_recover_payee_pub_key(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12669         public static native byte[] Bolt11Invoice_recover_payee_pub_key(long this_arg);
12670         // MUST_USE_RES struct LDKCOption_u64Z Bolt11Invoice_expires_at(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12671         public static native long Bolt11Invoice_expires_at(long this_arg);
12672         // MUST_USE_RES uint64_t Bolt11Invoice_expiry_time(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12673         public static native long Bolt11Invoice_expiry_time(long this_arg);
12674         // MUST_USE_RES bool Bolt11Invoice_is_expired(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12675         public static native boolean Bolt11Invoice_is_expired(long this_arg);
12676         // MUST_USE_RES uint64_t Bolt11Invoice_duration_until_expiry(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12677         public static native long Bolt11Invoice_duration_until_expiry(long this_arg);
12678         // MUST_USE_RES uint64_t Bolt11Invoice_expiration_remaining_from_epoch(const struct LDKBolt11Invoice *NONNULL_PTR this_arg, uint64_t time);
12679         public static native long Bolt11Invoice_expiration_remaining_from_epoch(long this_arg, long time);
12680         // MUST_USE_RES bool Bolt11Invoice_would_expire(const struct LDKBolt11Invoice *NONNULL_PTR this_arg, uint64_t at_time);
12681         public static native boolean Bolt11Invoice_would_expire(long this_arg, long at_time);
12682         // MUST_USE_RES uint64_t Bolt11Invoice_min_final_cltv_expiry_delta(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12683         public static native long Bolt11Invoice_min_final_cltv_expiry_delta(long this_arg);
12684         // MUST_USE_RES struct LDKCVec_StrZ Bolt11Invoice_fallback_addresses(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12685         public static native String[] Bolt11Invoice_fallback_addresses(long this_arg);
12686         // MUST_USE_RES struct LDKCVec_PrivateRouteZ Bolt11Invoice_private_routes(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12687         public static native long[] Bolt11Invoice_private_routes(long this_arg);
12688         // MUST_USE_RES struct LDKCVec_RouteHintZ Bolt11Invoice_route_hints(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12689         public static native long[] Bolt11Invoice_route_hints(long this_arg);
12690         // MUST_USE_RES enum LDKCurrency Bolt11Invoice_currency(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12691         public static native Currency Bolt11Invoice_currency(long this_arg);
12692         // MUST_USE_RES struct LDKCOption_u64Z Bolt11Invoice_amount_milli_satoshis(const struct LDKBolt11Invoice *NONNULL_PTR this_arg);
12693         public static native long Bolt11Invoice_amount_milli_satoshis(long this_arg);
12694         // MUST_USE_RES struct LDKCResult_DescriptionCreationErrorZ Description_new(struct LDKStr description);
12695         public static native long Description_new(String description);
12696         // MUST_USE_RES struct LDKStr Description_into_inner(struct LDKDescription this_arg);
12697         public static native String Description_into_inner(long this_arg);
12698         // MUST_USE_RES struct LDKExpiryTime ExpiryTime_from_seconds(uint64_t seconds);
12699         public static native long ExpiryTime_from_seconds(long seconds);
12700         // MUST_USE_RES struct LDKExpiryTime ExpiryTime_from_duration(uint64_t duration);
12701         public static native long ExpiryTime_from_duration(long duration);
12702         // MUST_USE_RES uint64_t ExpiryTime_as_seconds(const struct LDKExpiryTime *NONNULL_PTR this_arg);
12703         public static native long ExpiryTime_as_seconds(long this_arg);
12704         // MUST_USE_RES uint64_t ExpiryTime_as_duration(const struct LDKExpiryTime *NONNULL_PTR this_arg);
12705         public static native long ExpiryTime_as_duration(long this_arg);
12706         // MUST_USE_RES struct LDKCResult_PrivateRouteCreationErrorZ PrivateRoute_new(struct LDKRouteHint hops);
12707         public static native long PrivateRoute_new(long hops);
12708         // MUST_USE_RES struct LDKRouteHint PrivateRoute_into_inner(struct LDKPrivateRoute this_arg);
12709         public static native long PrivateRoute_into_inner(long this_arg);
12710         // enum LDKCreationError CreationError_clone(const enum LDKCreationError *NONNULL_PTR orig);
12711         public static native CreationError CreationError_clone(long orig);
12712         // enum LDKCreationError CreationError_description_too_long(void);
12713         public static native CreationError CreationError_description_too_long();
12714         // enum LDKCreationError CreationError_route_too_long(void);
12715         public static native CreationError CreationError_route_too_long();
12716         // enum LDKCreationError CreationError_timestamp_out_of_bounds(void);
12717         public static native CreationError CreationError_timestamp_out_of_bounds();
12718         // enum LDKCreationError CreationError_invalid_amount(void);
12719         public static native CreationError CreationError_invalid_amount();
12720         // enum LDKCreationError CreationError_missing_route_hints(void);
12721         public static native CreationError CreationError_missing_route_hints();
12722         // enum LDKCreationError CreationError_min_final_cltv_expiry_delta_too_short(void);
12723         public static native CreationError CreationError_min_final_cltv_expiry_delta_too_short();
12724         // bool CreationError_eq(const enum LDKCreationError *NONNULL_PTR a, const enum LDKCreationError *NONNULL_PTR b);
12725         public static native boolean CreationError_eq(long a, long b);
12726         // struct LDKStr CreationError_to_str(const enum LDKCreationError *NONNULL_PTR o);
12727         public static native String CreationError_to_str(long o);
12728         // enum LDKBolt11SemanticError Bolt11SemanticError_clone(const enum LDKBolt11SemanticError *NONNULL_PTR orig);
12729         public static native Bolt11SemanticError Bolt11SemanticError_clone(long orig);
12730         // enum LDKBolt11SemanticError Bolt11SemanticError_no_payment_hash(void);
12731         public static native Bolt11SemanticError Bolt11SemanticError_no_payment_hash();
12732         // enum LDKBolt11SemanticError Bolt11SemanticError_multiple_payment_hashes(void);
12733         public static native Bolt11SemanticError Bolt11SemanticError_multiple_payment_hashes();
12734         // enum LDKBolt11SemanticError Bolt11SemanticError_no_description(void);
12735         public static native Bolt11SemanticError Bolt11SemanticError_no_description();
12736         // enum LDKBolt11SemanticError Bolt11SemanticError_multiple_descriptions(void);
12737         public static native Bolt11SemanticError Bolt11SemanticError_multiple_descriptions();
12738         // enum LDKBolt11SemanticError Bolt11SemanticError_no_payment_secret(void);
12739         public static native Bolt11SemanticError Bolt11SemanticError_no_payment_secret();
12740         // enum LDKBolt11SemanticError Bolt11SemanticError_multiple_payment_secrets(void);
12741         public static native Bolt11SemanticError Bolt11SemanticError_multiple_payment_secrets();
12742         // enum LDKBolt11SemanticError Bolt11SemanticError_invalid_features(void);
12743         public static native Bolt11SemanticError Bolt11SemanticError_invalid_features();
12744         // enum LDKBolt11SemanticError Bolt11SemanticError_invalid_recovery_id(void);
12745         public static native Bolt11SemanticError Bolt11SemanticError_invalid_recovery_id();
12746         // enum LDKBolt11SemanticError Bolt11SemanticError_invalid_signature(void);
12747         public static native Bolt11SemanticError Bolt11SemanticError_invalid_signature();
12748         // enum LDKBolt11SemanticError Bolt11SemanticError_imprecise_amount(void);
12749         public static native Bolt11SemanticError Bolt11SemanticError_imprecise_amount();
12750         // bool Bolt11SemanticError_eq(const enum LDKBolt11SemanticError *NONNULL_PTR a, const enum LDKBolt11SemanticError *NONNULL_PTR b);
12751         public static native boolean Bolt11SemanticError_eq(long a, long b);
12752         // struct LDKStr Bolt11SemanticError_to_str(const enum LDKBolt11SemanticError *NONNULL_PTR o);
12753         public static native String Bolt11SemanticError_to_str(long o);
12754         // void SignOrCreationError_free(struct LDKSignOrCreationError this_ptr);
12755         public static native void SignOrCreationError_free(long this_ptr);
12756         // uint64_t SignOrCreationError_clone_ptr(LDKSignOrCreationError *NONNULL_PTR arg);
12757         public static native long SignOrCreationError_clone_ptr(long arg);
12758         // struct LDKSignOrCreationError SignOrCreationError_clone(const struct LDKSignOrCreationError *NONNULL_PTR orig);
12759         public static native long SignOrCreationError_clone(long orig);
12760         // struct LDKSignOrCreationError SignOrCreationError_sign_error(void);
12761         public static native long SignOrCreationError_sign_error();
12762         // struct LDKSignOrCreationError SignOrCreationError_creation_error(enum LDKCreationError a);
12763         public static native long SignOrCreationError_creation_error(CreationError a);
12764         // bool SignOrCreationError_eq(const struct LDKSignOrCreationError *NONNULL_PTR a, const struct LDKSignOrCreationError *NONNULL_PTR b);
12765         public static native boolean SignOrCreationError_eq(long a, long b);
12766         // struct LDKStr SignOrCreationError_to_str(const struct LDKSignOrCreationError *NONNULL_PTR o);
12767         public static native String SignOrCreationError_to_str(long o);
12768         // struct LDKCResult_ThirtyTwoBytesPaymentErrorZ pay_invoice(const struct LDKBolt11Invoice *NONNULL_PTR invoice, struct LDKRetry retry_strategy, const struct LDKChannelManager *NONNULL_PTR channelmanager);
12769         public static native long pay_invoice(long invoice, long retry_strategy, long channelmanager);
12770         // struct LDKCResult_NonePaymentErrorZ pay_invoice_with_id(const struct LDKBolt11Invoice *NONNULL_PTR invoice, struct LDKThirtyTwoBytes payment_id, struct LDKRetry retry_strategy, const struct LDKChannelManager *NONNULL_PTR channelmanager);
12771         public static native long pay_invoice_with_id(long invoice, byte[] payment_id, long retry_strategy, long channelmanager);
12772         // struct LDKCResult_ThirtyTwoBytesPaymentErrorZ pay_zero_value_invoice(const struct LDKBolt11Invoice *NONNULL_PTR invoice, uint64_t amount_msats, struct LDKRetry retry_strategy, const struct LDKChannelManager *NONNULL_PTR channelmanager);
12773         public static native long pay_zero_value_invoice(long invoice, long amount_msats, long retry_strategy, long channelmanager);
12774         // struct LDKCResult_NonePaymentErrorZ pay_zero_value_invoice_with_id(const struct LDKBolt11Invoice *NONNULL_PTR invoice, uint64_t amount_msats, struct LDKThirtyTwoBytes payment_id, struct LDKRetry retry_strategy, const struct LDKChannelManager *NONNULL_PTR channelmanager);
12775         public static native long pay_zero_value_invoice_with_id(long invoice, long amount_msats, byte[] payment_id, long retry_strategy, long channelmanager);
12776         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ preflight_probe_invoice(const struct LDKBolt11Invoice *NONNULL_PTR invoice, const struct LDKChannelManager *NONNULL_PTR channelmanager, struct LDKCOption_u64Z liquidity_limit_multiplier);
12777         public static native long preflight_probe_invoice(long invoice, long channelmanager, long liquidity_limit_multiplier);
12778         // struct LDKCResult_CVec_C2Tuple_ThirtyTwoBytesThirtyTwoBytesZZProbingErrorZ preflight_probe_zero_value_invoice(const struct LDKBolt11Invoice *NONNULL_PTR invoice, uint64_t amount_msat, const struct LDKChannelManager *NONNULL_PTR channelmanager, struct LDKCOption_u64Z liquidity_limit_multiplier);
12779         public static native long preflight_probe_zero_value_invoice(long invoice, long amount_msat, long channelmanager, long liquidity_limit_multiplier);
12780         // void PaymentError_free(struct LDKPaymentError this_ptr);
12781         public static native void PaymentError_free(long this_ptr);
12782         // uint64_t PaymentError_clone_ptr(LDKPaymentError *NONNULL_PTR arg);
12783         public static native long PaymentError_clone_ptr(long arg);
12784         // struct LDKPaymentError PaymentError_clone(const struct LDKPaymentError *NONNULL_PTR orig);
12785         public static native long PaymentError_clone(long orig);
12786         // struct LDKPaymentError PaymentError_invoice(struct LDKStr a);
12787         public static native long PaymentError_invoice(String a);
12788         // struct LDKPaymentError PaymentError_sending(enum LDKRetryableSendFailure a);
12789         public static native long PaymentError_sending(RetryableSendFailure a);
12790         // bool PaymentError_eq(const struct LDKPaymentError *NONNULL_PTR a, const struct LDKPaymentError *NONNULL_PTR b);
12791         public static native boolean PaymentError_eq(long a, long b);
12792         // void ProbingError_free(struct LDKProbingError this_ptr);
12793         public static native void ProbingError_free(long this_ptr);
12794         // uint64_t ProbingError_clone_ptr(LDKProbingError *NONNULL_PTR arg);
12795         public static native long ProbingError_clone_ptr(long arg);
12796         // struct LDKProbingError ProbingError_clone(const struct LDKProbingError *NONNULL_PTR orig);
12797         public static native long ProbingError_clone(long orig);
12798         // struct LDKProbingError ProbingError_invoice(struct LDKStr a);
12799         public static native long ProbingError_invoice(String a);
12800         // struct LDKProbingError ProbingError_sending(struct LDKProbeSendFailure a);
12801         public static native long ProbingError_sending(long a);
12802         // bool ProbingError_eq(const struct LDKProbingError *NONNULL_PTR a, const struct LDKProbingError *NONNULL_PTR b);
12803         public static native boolean ProbingError_eq(long a, long b);
12804         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ create_phantom_invoice(struct LDKCOption_u64Z amt_msat, struct LDKCOption_ThirtyTwoBytesZ payment_hash, struct LDKStr description, uint32_t invoice_expiry_delta_secs, struct LDKCVec_PhantomRouteHintsZ phantom_route_hints, struct LDKEntropySource entropy_source, struct LDKNodeSigner node_signer, struct LDKLogger logger, enum LDKCurrency network, struct LDKCOption_u16Z min_final_cltv_expiry_delta, uint64_t duration_since_epoch);
12805         public static native long create_phantom_invoice(long amt_msat, long payment_hash, String description, int invoice_expiry_delta_secs, long[] phantom_route_hints, long entropy_source, long node_signer, long logger, Currency network, long min_final_cltv_expiry_delta, long duration_since_epoch);
12806         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ create_phantom_invoice_with_description_hash(struct LDKCOption_u64Z amt_msat, struct LDKCOption_ThirtyTwoBytesZ payment_hash, uint32_t invoice_expiry_delta_secs, struct LDKSha256 description_hash, struct LDKCVec_PhantomRouteHintsZ phantom_route_hints, struct LDKEntropySource entropy_source, struct LDKNodeSigner node_signer, struct LDKLogger logger, enum LDKCurrency network, struct LDKCOption_u16Z min_final_cltv_expiry_delta, uint64_t duration_since_epoch);
12807         public static native long create_phantom_invoice_with_description_hash(long amt_msat, long payment_hash, int invoice_expiry_delta_secs, long description_hash, long[] phantom_route_hints, long entropy_source, long node_signer, long logger, Currency network, long min_final_cltv_expiry_delta, long duration_since_epoch);
12808         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ create_invoice_from_channelmanager(const struct LDKChannelManager *NONNULL_PTR channelmanager, struct LDKNodeSigner node_signer, struct LDKLogger logger, enum LDKCurrency network, struct LDKCOption_u64Z amt_msat, struct LDKStr description, uint32_t invoice_expiry_delta_secs, struct LDKCOption_u16Z min_final_cltv_expiry_delta);
12809         public static native long create_invoice_from_channelmanager(long channelmanager, long node_signer, long logger, Currency network, long amt_msat, String description, int invoice_expiry_delta_secs, long min_final_cltv_expiry_delta);
12810         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ create_invoice_from_channelmanager_with_description_hash(const struct LDKChannelManager *NONNULL_PTR channelmanager, struct LDKNodeSigner node_signer, struct LDKLogger logger, enum LDKCurrency network, struct LDKCOption_u64Z amt_msat, struct LDKSha256 description_hash, uint32_t invoice_expiry_delta_secs, struct LDKCOption_u16Z min_final_cltv_expiry_delta);
12811         public static native long create_invoice_from_channelmanager_with_description_hash(long channelmanager, long node_signer, long logger, Currency network, long amt_msat, long description_hash, int invoice_expiry_delta_secs, long min_final_cltv_expiry_delta);
12812         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch(const struct LDKChannelManager *NONNULL_PTR channelmanager, struct LDKNodeSigner node_signer, struct LDKLogger logger, enum LDKCurrency network, struct LDKCOption_u64Z amt_msat, struct LDKSha256 description_hash, uint64_t duration_since_epoch, uint32_t invoice_expiry_delta_secs, struct LDKCOption_u16Z min_final_cltv_expiry_delta);
12813         public static native long create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch(long channelmanager, long node_signer, long logger, Currency network, long amt_msat, long description_hash, long duration_since_epoch, int invoice_expiry_delta_secs, long min_final_cltv_expiry_delta);
12814         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ create_invoice_from_channelmanager_and_duration_since_epoch(const struct LDKChannelManager *NONNULL_PTR channelmanager, struct LDKNodeSigner node_signer, struct LDKLogger logger, enum LDKCurrency network, struct LDKCOption_u64Z amt_msat, struct LDKStr description, uint64_t duration_since_epoch, uint32_t invoice_expiry_delta_secs, struct LDKCOption_u16Z min_final_cltv_expiry_delta);
12815         public static native long create_invoice_from_channelmanager_and_duration_since_epoch(long channelmanager, long node_signer, long logger, Currency network, long amt_msat, String description, long duration_since_epoch, int invoice_expiry_delta_secs, long min_final_cltv_expiry_delta);
12816         // struct LDKCResult_Bolt11InvoiceSignOrCreationErrorZ create_invoice_from_channelmanager_and_duration_since_epoch_with_payment_hash(const struct LDKChannelManager *NONNULL_PTR channelmanager, struct LDKNodeSigner node_signer, struct LDKLogger logger, enum LDKCurrency network, struct LDKCOption_u64Z amt_msat, struct LDKStr description, uint64_t duration_since_epoch, uint32_t invoice_expiry_delta_secs, struct LDKThirtyTwoBytes payment_hash, struct LDKCOption_u16Z min_final_cltv_expiry_delta);
12817         public static native long create_invoice_from_channelmanager_and_duration_since_epoch_with_payment_hash(long channelmanager, long node_signer, long logger, Currency network, long amt_msat, String description, long duration_since_epoch, int invoice_expiry_delta_secs, byte[] payment_hash, long min_final_cltv_expiry_delta);
12818         // struct LDKCResult_SiPrefixBolt11ParseErrorZ SiPrefix_from_str(struct LDKStr s);
12819         public static native long SiPrefix_from_str(String s);
12820         // struct LDKCResult_Bolt11InvoiceParseOrSemanticErrorZ Bolt11Invoice_from_str(struct LDKStr s);
12821         public static native long Bolt11Invoice_from_str(String s);
12822         // struct LDKCResult_SignedRawBolt11InvoiceBolt11ParseErrorZ SignedRawBolt11Invoice_from_str(struct LDKStr s);
12823         public static native long SignedRawBolt11Invoice_from_str(String s);
12824         // struct LDKStr Bolt11ParseError_to_str(const struct LDKBolt11ParseError *NONNULL_PTR o);
12825         public static native String Bolt11ParseError_to_str(long o);
12826         // struct LDKStr ParseOrSemanticError_to_str(const struct LDKParseOrSemanticError *NONNULL_PTR o);
12827         public static native String ParseOrSemanticError_to_str(long o);
12828         // struct LDKStr Bolt11Invoice_to_str(const struct LDKBolt11Invoice *NONNULL_PTR o);
12829         public static native String Bolt11Invoice_to_str(long o);
12830         // struct LDKStr SignedRawBolt11Invoice_to_str(const struct LDKSignedRawBolt11Invoice *NONNULL_PTR o);
12831         public static native String SignedRawBolt11Invoice_to_str(long o);
12832         // struct LDKStr Currency_to_str(const enum LDKCurrency *NONNULL_PTR o);
12833         public static native String Currency_to_str(long o);
12834         // struct LDKStr SiPrefix_to_str(const enum LDKSiPrefix *NONNULL_PTR o);
12835         public static native String SiPrefix_to_str(long o);
12836         // void RapidGossipSync_free(struct LDKRapidGossipSync this_obj);
12837         public static native void RapidGossipSync_free(long this_obj);
12838         // MUST_USE_RES struct LDKRapidGossipSync RapidGossipSync_new(const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKLogger logger);
12839         public static native long RapidGossipSync_new(long network_graph, long logger);
12840         // MUST_USE_RES struct LDKCResult_u32GraphSyncErrorZ RapidGossipSync_sync_network_graph_with_file_path(const struct LDKRapidGossipSync *NONNULL_PTR this_arg, struct LDKStr sync_path);
12841         public static native long RapidGossipSync_sync_network_graph_with_file_path(long this_arg, String sync_path);
12842         // MUST_USE_RES struct LDKCResult_u32GraphSyncErrorZ RapidGossipSync_update_network_graph(const struct LDKRapidGossipSync *NONNULL_PTR this_arg, struct LDKu8slice update_data);
12843         public static native long RapidGossipSync_update_network_graph(long this_arg, byte[] update_data);
12844         // MUST_USE_RES struct LDKCResult_u32GraphSyncErrorZ RapidGossipSync_update_network_graph_no_std(const struct LDKRapidGossipSync *NONNULL_PTR this_arg, struct LDKu8slice update_data, struct LDKCOption_u64Z current_time_unix);
12845         public static native long RapidGossipSync_update_network_graph_no_std(long this_arg, byte[] update_data, long current_time_unix);
12846         // MUST_USE_RES bool RapidGossipSync_is_initial_sync_complete(const struct LDKRapidGossipSync *NONNULL_PTR this_arg);
12847         public static native boolean RapidGossipSync_is_initial_sync_complete(long this_arg);
12848         // void GraphSyncError_free(struct LDKGraphSyncError this_ptr);
12849         public static native void GraphSyncError_free(long this_ptr);
12850         // uint64_t GraphSyncError_clone_ptr(LDKGraphSyncError *NONNULL_PTR arg);
12851         public static native long GraphSyncError_clone_ptr(long arg);
12852         // struct LDKGraphSyncError GraphSyncError_clone(const struct LDKGraphSyncError *NONNULL_PTR orig);
12853         public static native long GraphSyncError_clone(long orig);
12854         // struct LDKGraphSyncError GraphSyncError_decode_error(struct LDKDecodeError a);
12855         public static native long GraphSyncError_decode_error(long a);
12856         // struct LDKGraphSyncError GraphSyncError_lightning_error(struct LDKLightningError a);
12857         public static native long GraphSyncError_lightning_error(long a);
12858 }