Convert unitary enums to Java enums
[ldk-java] / src / main / java / org / ldk / impl / bindings.java
1 package org.ldk.impl;
2
3 public class bindings {
4         static native void init(java.lang.Class c);
5         static {
6                 System.loadLibrary("lightningjni");
7                 init(java.lang.Enum.class);
8         }
9
10         public static native long LDKSecretKey_new();
11
12         public enum LDKChainError {
13            LDKChainError_NotSupported,
14            LDKChainError_NotWatched,
15            LDKChainError_UnknownTx,
16         }
17         public enum LDKChannelMonitorUpdateErr {
18            LDKChannelMonitorUpdateErr_TemporaryFailure,
19            LDKChannelMonitorUpdateErr_PermanentFailure,
20         }
21         public enum LDKConfirmationTarget {
22            LDKConfirmationTarget_Background,
23            LDKConfirmationTarget_Normal,
24            LDKConfirmationTarget_HighPriority,
25         }
26         public enum LDKLevel {
27            LDKLevel_Off,
28            LDKLevel_Error,
29            LDKLevel_Warn,
30            LDKLevel_Info,
31            LDKLevel_Debug,
32            LDKLevel_Trace,
33         }
34         public enum LDKNetwork {
35            LDKNetwork_Bitcoin,
36            LDKNetwork_Testnet,
37            LDKNetwork_Regtest,
38         }
39         public enum LDKSecp256k1Error {
40            LDKSecp256k1Error_IncorrectSignature,
41            LDKSecp256k1Error_InvalidMessage,
42            LDKSecp256k1Error_InvalidPublicKey,
43            LDKSecp256k1Error_InvalidSignature,
44            LDKSecp256k1Error_InvalidSecretKey,
45            LDKSecp256k1Error_InvalidRecoveryId,
46            LDKSecp256k1Error_InvalidTweak,
47            LDKSecp256k1Error_NotEnoughMemory,
48            LDKSecp256k1Error_CallbackPanicked,
49         }
50         public interface LDKMessageSendEventsProvider {
51                  long get_and_clear_pending_msg_events();
52         }
53         public static native long LDKMessageSendEventsProvider_new(LDKMessageSendEventsProvider impl);
54         public interface LDKEventsProvider {
55                  long get_and_clear_pending_events();
56         }
57         public static native long LDKEventsProvider_new(LDKEventsProvider impl);
58         public interface LDKLogger {
59                  void log(String record);
60         }
61         public static native long LDKLogger_new(LDKLogger impl);
62         public interface LDKChainWatchInterface {
63                  void install_watch_tx(byte[] txid, long script_pub_key);
64                  void install_watch_outpoint(long outpoint, long out_script);
65                  void watch_all_txn();
66                  long get_chain_utxo(long genesis_hash, long unspent_tx_output_identifier);
67                  long filter_block(long block);
68                  long reentered();
69         }
70         public static native long LDKChainWatchInterface_new(LDKChainWatchInterface impl);
71         public interface LDKBroadcasterInterface {
72                  void broadcast_transaction(long tx);
73         }
74         public static native long LDKBroadcasterInterface_new(LDKBroadcasterInterface impl);
75         public interface LDKChainListener {
76                  void block_connected(byte[] header, int height, long txn_matched, long indexes_of_txn_matched);
77                  void block_disconnected(byte[] header, int disconnected_height);
78         }
79         public static native long LDKChainListener_new(LDKChainListener impl);
80         public interface LDKFeeEstimator {
81                  int get_est_sat_per_1000_weight(LDKConfirmationTarget confirmation_target);
82         }
83         public static native long LDKFeeEstimator_new(LDKFeeEstimator impl);
84         public interface LDKChannelKeys {
85                  long get_per_commitment_point(long idx);
86                  long release_commitment_secret(long idx);
87                  long key_derivation_params();
88                  long sign_remote_commitment(int feerate_per_kw, long commitment_tx, long keys, long htlcs);
89                  long sign_local_commitment(long local_commitment_tx);
90                  long sign_local_commitment_htlc_transactions(long local_commitment_tx);
91                  long sign_justice_transaction(long justice_tx, long input, long amount, byte[] per_commitment_key, long htlc);
92                  long sign_remote_htlc_transaction(long htlc_tx, long input, long amount, long per_commitment_point, long htlc);
93                  long sign_closing_transaction(long closing_tx);
94                  long sign_channel_announcement(long msg);
95                  void on_accept(long channel_points, short remote_to_self_delay, short local_to_self_delay);
96         }
97         public static native long LDKChannelKeys_new(LDKChannelKeys impl);
98         public interface LDKKeysInterface {
99                  long get_node_secret();
100                  long get_destination_script();
101                  long get_shutdown_pubkey();
102                  long get_channel_keys(boolean inbound, long channel_value_satoshis);
103                  long get_secure_random_bytes();
104         }
105         public static native long LDKKeysInterface_new(LDKKeysInterface impl);
106         public interface LDKManyChannelMonitor {
107                  long add_monitor(long funding_txo, long monitor);
108                  long update_monitor(long funding_txo, long monitor);
109                  long get_and_clear_pending_monitor_events();
110         }
111         public static native long LDKManyChannelMonitor_new(LDKManyChannelMonitor impl);
112         public interface LDKChannelMessageHandler {
113                  void handle_open_channel(long their_node_id, long their_features, long msg);
114                  void handle_accept_channel(long their_node_id, long their_features, long msg);
115                  void handle_funding_created(long their_node_id, long msg);
116                  void handle_funding_signed(long their_node_id, long msg);
117                  void handle_funding_locked(long their_node_id, long msg);
118                  void handle_shutdown(long their_node_id, long msg);
119                  void handle_closing_signed(long their_node_id, long msg);
120                  void handle_update_add_htlc(long their_node_id, long msg);
121                  void handle_update_fulfill_htlc(long their_node_id, long msg);
122                  void handle_update_fail_htlc(long their_node_id, long msg);
123                  void handle_update_fail_malformed_htlc(long their_node_id, long msg);
124                  void handle_commitment_signed(long their_node_id, long msg);
125                  void handle_revoke_and_ack(long their_node_id, long msg);
126                  void handle_update_fee(long their_node_id, long msg);
127                  void handle_announcement_signatures(long their_node_id, long msg);
128                  void peer_disconnected(long their_node_id, boolean no_connection_possible);
129                  void peer_connected(long their_node_id, long msg);
130                  void handle_channel_reestablish(long their_node_id, long msg);
131                  void handle_error(long their_node_id, long msg);
132         }
133         public static native long LDKChannelMessageHandler_new(LDKChannelMessageHandler impl, LDKMessageSendEventsProvider MessageSendEventsProvider);
134         public interface LDKRoutingMessageHandler {
135                  long handle_node_announcement(long msg);
136                  long handle_channel_announcement(long msg);
137                  long handle_channel_update(long msg);
138                  void handle_htlc_fail_channel_update(long update);
139                  long get_next_channel_announcements(long starting_point, byte batch_amount);
140                  long get_next_node_announcements(long starting_point, byte batch_amount);
141                  boolean should_request_full_sync(long node_id);
142         }
143         public static native long LDKRoutingMessageHandler_new(LDKRoutingMessageHandler impl);
144         public interface LDKSocketDescriptor {
145                  long send_data(long data, boolean resume_read);
146                  void disconnect_socket();
147                  boolean eq(long other_arg);
148                  long hash();
149         }
150         public static native long LDKSocketDescriptor_new(LDKSocketDescriptor impl);
151         /// extern const void (*C2Tuple_HTLCOutputInCommitmentSignatureZ_free)(LDKC2Tuple_HTLCOutputInCommitmentSignatureZ);
152         public static native void C2Tuple_HTLCOutputInCommitmentSignatureZ_free(long arg);
153         /// extern const void (*C2Tuple_OutPointScriptZ_free)(LDKC2Tuple_OutPointScriptZ);
154         public static native void C2Tuple_OutPointScriptZ_free(long arg);
155         /// extern const void (*C2Tuple_Scriptu64Z_free)(LDKC2Tuple_Scriptu64Z);
156         public static native void C2Tuple_Scriptu64Z_free(long arg);
157         /// extern const void (*C2Tuple_SignatureCVec_SignatureZZ_free)(LDKC2Tuple_SignatureCVec_SignatureZZ);
158         public static native void C2Tuple_SignatureCVec_SignatureZZ_free(long arg);
159         /// extern const void (*C2Tuple_Txidu32Z_free)(LDKC2Tuple_Txidu32Z);
160         public static native void C2Tuple_Txidu32Z_free(long arg);
161         /// extern const void (*C2Tuple_u64u64Z_free)(LDKC2Tuple_u64u64Z);
162         public static native void C2Tuple_u64u64Z_free(long arg);
163         /// extern const void (*C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_free)(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ);
164         public static native void C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_free(long arg);
165         /// extern const LDKCResult_C2Tuple_Scriptu64ZChainErrorZ (*CResult_C2Tuple_Scriptu64ZChainErrorZ_err)(LDKChainError);
166         public static native long CResult_C2Tuple_Scriptu64ZChainErrorZ_err(LDKChainError arg);
167         /// extern const void (*CResult_C2Tuple_Scriptu64ZChainErrorZ_free)(LDKCResult_C2Tuple_Scriptu64ZChainErrorZ);
168         public static native void CResult_C2Tuple_Scriptu64ZChainErrorZ_free(long arg);
169         /// extern const LDKCResult_C2Tuple_Scriptu64ZChainErrorZ (*CResult_C2Tuple_Scriptu64ZChainErrorZ_ok)(LDKC2Tuple_Scriptu64Z);
170         public static native long CResult_C2Tuple_Scriptu64ZChainErrorZ_ok(long arg);
171         /// extern const void (*CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_free)(LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ);
172         public static native void CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_free(long arg);
173         /// extern const LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ (*CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_ok)(LDKC2Tuple_SignatureCVec_SignatureZZ);
174         public static native long CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_ok(long arg);
175         /// extern const void (*CResult_CVec_SignatureZNoneZ_free)(LDKCResult_CVec_SignatureZNoneZ);
176         public static native void CResult_CVec_SignatureZNoneZ_free(long arg);
177         /// extern const LDKCResult_CVec_SignatureZNoneZ (*CResult_CVec_SignatureZNoneZ_ok)(LDKCVec_SignatureZ);
178         public static native long CResult_CVec_SignatureZNoneZ_ok(long arg);
179         /// extern const LDKCResult_CVec_u8ZPeerHandleErrorZ (*CResult_CVec_u8ZPeerHandleErrorZ_err)(LDKPeerHandleError);
180         public static native long CResult_CVec_u8ZPeerHandleErrorZ_err(long arg);
181         /// extern const void (*CResult_CVec_u8ZPeerHandleErrorZ_free)(LDKCResult_CVec_u8ZPeerHandleErrorZ);
182         public static native void CResult_CVec_u8ZPeerHandleErrorZ_free(long arg);
183         /// extern const LDKCResult_CVec_u8ZPeerHandleErrorZ (*CResult_CVec_u8ZPeerHandleErrorZ_ok)(LDKCVec_u8Z);
184         public static native long CResult_CVec_u8ZPeerHandleErrorZ_ok(long arg);
185         /// extern const LDKCResult_NoneAPIErrorZ (*CResult_NoneAPIErrorZ_err)(LDKAPIError);
186         public static native long CResult_NoneAPIErrorZ_err(long arg);
187         /// extern const void (*CResult_NoneAPIErrorZ_free)(LDKCResult_NoneAPIErrorZ);
188         public static native void CResult_NoneAPIErrorZ_free(long arg);
189         /// extern const LDKCResult_NoneChannelMonitorUpdateErrZ (*CResult_NoneChannelMonitorUpdateErrZ_err)(LDKChannelMonitorUpdateErr);
190         public static native long CResult_NoneChannelMonitorUpdateErrZ_err(LDKChannelMonitorUpdateErr arg);
191         /// extern const void (*CResult_NoneChannelMonitorUpdateErrZ_free)(LDKCResult_NoneChannelMonitorUpdateErrZ);
192         public static native void CResult_NoneChannelMonitorUpdateErrZ_free(long arg);
193         /// extern const LDKCResult_NoneMonitorUpdateErrorZ (*CResult_NoneMonitorUpdateErrorZ_err)(LDKMonitorUpdateError);
194         public static native long CResult_NoneMonitorUpdateErrorZ_err(long arg);
195         /// extern const void (*CResult_NoneMonitorUpdateErrorZ_free)(LDKCResult_NoneMonitorUpdateErrorZ);
196         public static native void CResult_NoneMonitorUpdateErrorZ_free(long arg);
197         /// extern const LDKCResult_NonePaymentSendFailureZ (*CResult_NonePaymentSendFailureZ_err)(LDKPaymentSendFailure);
198         public static native long CResult_NonePaymentSendFailureZ_err(long arg);
199         /// extern const void (*CResult_NonePaymentSendFailureZ_free)(LDKCResult_NonePaymentSendFailureZ);
200         public static native void CResult_NonePaymentSendFailureZ_free(long arg);
201         /// extern const LDKCResult_NonePeerHandleErrorZ (*CResult_NonePeerHandleErrorZ_err)(LDKPeerHandleError);
202         public static native long CResult_NonePeerHandleErrorZ_err(long arg);
203         /// extern const void (*CResult_NonePeerHandleErrorZ_free)(LDKCResult_NonePeerHandleErrorZ);
204         public static native void CResult_NonePeerHandleErrorZ_free(long arg);
205         /// extern const LDKCResult_RouteLightningErrorZ (*CResult_RouteLightningErrorZ_err)(LDKLightningError);
206         public static native long CResult_RouteLightningErrorZ_err(long arg);
207         /// extern const void (*CResult_RouteLightningErrorZ_free)(LDKCResult_RouteLightningErrorZ);
208         public static native void CResult_RouteLightningErrorZ_free(long arg);
209         /// extern const LDKCResult_RouteLightningErrorZ (*CResult_RouteLightningErrorZ_ok)(LDKRoute);
210         public static native long CResult_RouteLightningErrorZ_ok(long arg);
211         /// extern const void (*CResult_SignatureNoneZ_free)(LDKCResult_SignatureNoneZ);
212         public static native void CResult_SignatureNoneZ_free(long arg);
213         /// extern const LDKCResult_SignatureNoneZ (*CResult_SignatureNoneZ_ok)(LDKSignature);
214         public static native long CResult_SignatureNoneZ_ok(long arg);
215         /// extern const LDKCResult_TxCreationKeysSecpErrorZ (*CResult_TxCreationKeysSecpErrorZ_err)(LDKSecp256k1Error);
216         public static native long CResult_TxCreationKeysSecpErrorZ_err(LDKSecp256k1Error arg);
217         /// extern const void (*CResult_TxCreationKeysSecpErrorZ_free)(LDKCResult_TxCreationKeysSecpErrorZ);
218         public static native void CResult_TxCreationKeysSecpErrorZ_free(long arg);
219         /// extern const LDKCResult_TxCreationKeysSecpErrorZ (*CResult_TxCreationKeysSecpErrorZ_ok)(LDKTxCreationKeys);
220         public static native long CResult_TxCreationKeysSecpErrorZ_ok(long arg);
221         /// extern const LDKCResult_boolLightningErrorZ (*CResult_boolLightningErrorZ_err)(LDKLightningError);
222         public static native long CResult_boolLightningErrorZ_err(long arg);
223         /// extern const void (*CResult_boolLightningErrorZ_free)(LDKCResult_boolLightningErrorZ);
224         public static native void CResult_boolLightningErrorZ_free(long arg);
225         /// extern const LDKCResult_boolLightningErrorZ (*CResult_boolLightningErrorZ_ok)(bool);
226         public static native long CResult_boolLightningErrorZ_ok(boolean arg);
227         /// extern const LDKCResult_boolPeerHandleErrorZ (*CResult_boolPeerHandleErrorZ_err)(LDKPeerHandleError);
228         public static native long CResult_boolPeerHandleErrorZ_err(long arg);
229         /// extern const void (*CResult_boolPeerHandleErrorZ_free)(LDKCResult_boolPeerHandleErrorZ);
230         public static native void CResult_boolPeerHandleErrorZ_free(long arg);
231         /// extern const LDKCResult_boolPeerHandleErrorZ (*CResult_boolPeerHandleErrorZ_ok)(bool);
232         public static native long CResult_boolPeerHandleErrorZ_ok(boolean arg);
233         /// extern const void (*CVec_C2Tuple_HTLCOutputInCommitmentSignatureZZ_free)(LDKCVec_C2Tuple_HTLCOutputInCommitmentSignatureZZ);
234         public static native void CVec_C2Tuple_HTLCOutputInCommitmentSignatureZZ_free(long arg);
235         /// extern const void (*CVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_free)(LDKCVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ);
236         public static native void CVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_free(long arg);
237         /// extern const void (*CVec_CVec_RouteHopZZ_free)(LDKCVec_CVec_RouteHopZZ);
238         public static native void CVec_CVec_RouteHopZZ_free(long arg);
239         /// extern const void (*CVec_ChannelDetailsZ_free)(LDKCVec_ChannelDetailsZ);
240         public static native void CVec_ChannelDetailsZ_free(long arg);
241         /// extern const void (*CVec_ChannelMonitorZ_free)(LDKCVec_ChannelMonitorZ);
242         public static native void CVec_ChannelMonitorZ_free(long arg);
243         /// extern const void (*CVec_EventZ_free)(LDKCVec_EventZ);
244         public static native void CVec_EventZ_free(long arg);
245         /// extern const void (*CVec_HTLCOutputInCommitmentZ_free)(LDKCVec_HTLCOutputInCommitmentZ);
246         public static native void CVec_HTLCOutputInCommitmentZ_free(long arg);
247         /// extern const void (*CVec_MessageSendEventZ_free)(LDKCVec_MessageSendEventZ);
248         public static native void CVec_MessageSendEventZ_free(long arg);
249         /// extern const void (*CVec_MonitorEventZ_free)(LDKCVec_MonitorEventZ);
250         public static native void CVec_MonitorEventZ_free(long arg);
251         /// extern const void (*CVec_NetAddressZ_free)(LDKCVec_NetAddressZ);
252         public static native void CVec_NetAddressZ_free(long arg);
253         /// extern const void (*CVec_NodeAnnouncementZ_free)(LDKCVec_NodeAnnouncementZ);
254         public static native void CVec_NodeAnnouncementZ_free(long arg);
255         /// extern const void (*CVec_PublicKeyZ_free)(LDKCVec_PublicKeyZ);
256         public static native void CVec_PublicKeyZ_free(long arg);
257         /// extern const void (*CVec_RouteHintZ_free)(LDKCVec_RouteHintZ);
258         public static native void CVec_RouteHintZ_free(long arg);
259         /// extern const void (*CVec_RouteHopZ_free)(LDKCVec_RouteHopZ);
260         public static native void CVec_RouteHopZ_free(long arg);
261         /// extern const void (*CVec_SignatureZ_free)(LDKCVec_SignatureZ);
262         public static native void CVec_SignatureZ_free(long arg);
263         /// extern const void (*CVec_SpendableOutputDescriptorZ_free)(LDKCVec_SpendableOutputDescriptorZ);
264         public static native void CVec_SpendableOutputDescriptorZ_free(long arg);
265         /// extern const void (*CVec_TransactionZ_free)(LDKCVec_TransactionZ);
266         public static native void CVec_TransactionZ_free(long arg);
267         /// extern const void (*CVec_UpdateAddHTLCZ_free)(LDKCVec_UpdateAddHTLCZ);
268         public static native void CVec_UpdateAddHTLCZ_free(long arg);
269         /// extern const void (*CVec_UpdateFailHTLCZ_free)(LDKCVec_UpdateFailHTLCZ);
270         public static native void CVec_UpdateFailHTLCZ_free(long arg);
271         /// extern const void (*CVec_UpdateFailMalformedHTLCZ_free)(LDKCVec_UpdateFailMalformedHTLCZ);
272         public static native void CVec_UpdateFailMalformedHTLCZ_free(long arg);
273         /// extern const void (*CVec_UpdateFulfillHTLCZ_free)(LDKCVec_UpdateFulfillHTLCZ);
274         public static native void CVec_UpdateFulfillHTLCZ_free(long arg);
275         /// extern const void (*CVec_u64Z_free)(LDKCVec_u64Z);
276         public static native void CVec_u64Z_free(long arg);
277         /// extern const void (*CVec_u8Z_free)(LDKCVec_u8Z);
278         public static native void CVec_u8Z_free(long arg);
279         /// extern const void (*CVec_usizeZ_free)(LDKCVec_usizeZ);
280         public static native void CVec_usizeZ_free(long arg);
281         /// void TxOut_free(LDKTxOut _res);
282         public static native void TxOut_free(long _res);
283         /// LDKC2Tuple_Txidu32Z C2Tuple_Txidu32Z_new(LDKThirtyTwoBytes a, uint32_t b);
284         public static native long C2Tuple_Txidu32Z_new(long a, int b);
285         /// LDKC2Tuple_Scriptu64Z C2Tuple_Scriptu64Z_new(LDKCVec_u8Z a, uint64_t b);
286         public static native long C2Tuple_Scriptu64Z_new(long a, long b);
287         /// LDKC2Tuple_u64u64Z C2Tuple_u64u64Z_new(uint64_t a, uint64_t b);
288         public static native long C2Tuple_u64u64Z_new(long a, long b);
289         /// LDKC2Tuple_SignatureCVec_SignatureZZ C2Tuple_SignatureCVec_SignatureZZ_new(LDKSignature a, LDKCVec_SignatureZ b);
290         public static native long C2Tuple_SignatureCVec_SignatureZZ_new(long a, long b);
291         /// LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_err(void);
292         public static native long CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_err();
293         /// LDKCResult_SignatureNoneZ CResult_SignatureNoneZ_err(void);
294         public static native long CResult_SignatureNoneZ_err();
295         /// LDKCResult_CVec_SignatureZNoneZ CResult_CVec_SignatureZNoneZ_err(void);
296         public static native long CResult_CVec_SignatureZNoneZ_err();
297         /// LDKCResult_NoneAPIErrorZ CResult_NoneAPIErrorZ_ok(void);
298         public static native long CResult_NoneAPIErrorZ_ok();
299         /// LDKCResult_NonePaymentSendFailureZ CResult_NonePaymentSendFailureZ_ok(void);
300         public static native long CResult_NonePaymentSendFailureZ_ok();
301         /// LDKCResult_NoneChannelMonitorUpdateErrZ CResult_NoneChannelMonitorUpdateErrZ_ok(void);
302         public static native long CResult_NoneChannelMonitorUpdateErrZ_ok();
303         /// LDKCResult_NoneMonitorUpdateErrorZ CResult_NoneMonitorUpdateErrorZ_ok(void);
304         public static native long CResult_NoneMonitorUpdateErrorZ_ok();
305         /// LDKC2Tuple_OutPointScriptZ C2Tuple_OutPointScriptZ_new(LDKOutPoint a, LDKCVec_u8Z b);
306         public static native long C2Tuple_OutPointScriptZ_new(long a, long b);
307         /// LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_new(LDKChannelAnnouncement a, LDKChannelUpdate b, LDKChannelUpdate c);
308         public static native long C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_new(long a, long b, long c);
309         /// LDKCResult_NonePeerHandleErrorZ CResult_NonePeerHandleErrorZ_ok(void);
310         public static native long CResult_NonePeerHandleErrorZ_ok();
311         /// LDKC2Tuple_HTLCOutputInCommitmentSignatureZ C2Tuple_HTLCOutputInCommitmentSignatureZ_new(LDKHTLCOutputInCommitment a, LDKSignature b);
312         public static native long C2Tuple_HTLCOutputInCommitmentSignatureZ_new(long a, long b);
313         /// void Event_free(LDKEvent this_ptr);
314         public static native void Event_free(long this_ptr);
315         /// void MessageSendEvent_free(LDKMessageSendEvent this_ptr);
316         public static native void MessageSendEvent_free(long this_ptr);
317         /// void MessageSendEventsProvider_free(LDKMessageSendEventsProvider this_ptr);
318         public static native void MessageSendEventsProvider_free(long this_ptr);
319         /// void EventsProvider_free(LDKEventsProvider this_ptr);
320         public static native void EventsProvider_free(long this_ptr);
321         /// void APIError_free(LDKAPIError this_ptr);
322         public static native void APIError_free(long this_ptr);
323         /// MUST_USE_RES LDKLevel Level_max(void);
324         public static native LDKLevel Level_max();
325         /// void Logger_free(LDKLogger this_ptr);
326         public static native void Logger_free(long this_ptr);
327         /// void ChannelHandshakeConfig_free(LDKChannelHandshakeConfig this_ptr);
328         public static native void ChannelHandshakeConfig_free(long this_ptr);
329         /// uint32_t ChannelHandshakeConfig_get_minimum_depth(const LDKChannelHandshakeConfig *this_ptr);
330         public static native int ChannelHandshakeConfig_get_minimum_depth(long this_ptr);
331         /// void ChannelHandshakeConfig_set_minimum_depth(LDKChannelHandshakeConfig *this_ptr, uint32_t val);
332         public static native void ChannelHandshakeConfig_set_minimum_depth(long this_ptr, int val);
333         /// uint16_t ChannelHandshakeConfig_get_our_to_self_delay(const LDKChannelHandshakeConfig *this_ptr);
334         public static native short ChannelHandshakeConfig_get_our_to_self_delay(long this_ptr);
335         /// void ChannelHandshakeConfig_set_our_to_self_delay(LDKChannelHandshakeConfig *this_ptr, uint16_t val);
336         public static native void ChannelHandshakeConfig_set_our_to_self_delay(long this_ptr, short val);
337         /// uint64_t ChannelHandshakeConfig_get_our_htlc_minimum_msat(const LDKChannelHandshakeConfig *this_ptr);
338         public static native long ChannelHandshakeConfig_get_our_htlc_minimum_msat(long this_ptr);
339         /// void ChannelHandshakeConfig_set_our_htlc_minimum_msat(LDKChannelHandshakeConfig *this_ptr, uint64_t val);
340         public static native void ChannelHandshakeConfig_set_our_htlc_minimum_msat(long this_ptr, long val);
341         /// MUST_USE_RES LDKChannelHandshakeConfig ChannelHandshakeConfig_new(uint32_t minimum_depth_arg, uint16_t our_to_self_delay_arg, uint64_t our_htlc_minimum_msat_arg);
342         public static native long ChannelHandshakeConfig_new(int minimum_depth_arg, short our_to_self_delay_arg, long our_htlc_minimum_msat_arg);
343         /// MUST_USE_RES LDKChannelHandshakeConfig ChannelHandshakeConfig_default(void);
344         public static native long ChannelHandshakeConfig_default();
345         /// void ChannelHandshakeLimits_free(LDKChannelHandshakeLimits this_ptr);
346         public static native void ChannelHandshakeLimits_free(long this_ptr);
347         /// uint64_t ChannelHandshakeLimits_get_min_funding_satoshis(const LDKChannelHandshakeLimits *this_ptr);
348         public static native long ChannelHandshakeLimits_get_min_funding_satoshis(long this_ptr);
349         /// void ChannelHandshakeLimits_set_min_funding_satoshis(LDKChannelHandshakeLimits *this_ptr, uint64_t val);
350         public static native void ChannelHandshakeLimits_set_min_funding_satoshis(long this_ptr, long val);
351         /// uint64_t ChannelHandshakeLimits_get_max_htlc_minimum_msat(const LDKChannelHandshakeLimits *this_ptr);
352         public static native long ChannelHandshakeLimits_get_max_htlc_minimum_msat(long this_ptr);
353         /// void ChannelHandshakeLimits_set_max_htlc_minimum_msat(LDKChannelHandshakeLimits *this_ptr, uint64_t val);
354         public static native void ChannelHandshakeLimits_set_max_htlc_minimum_msat(long this_ptr, long val);
355         /// uint64_t ChannelHandshakeLimits_get_min_max_htlc_value_in_flight_msat(const LDKChannelHandshakeLimits *this_ptr);
356         public static native long ChannelHandshakeLimits_get_min_max_htlc_value_in_flight_msat(long this_ptr);
357         /// void ChannelHandshakeLimits_set_min_max_htlc_value_in_flight_msat(LDKChannelHandshakeLimits *this_ptr, uint64_t val);
358         public static native void ChannelHandshakeLimits_set_min_max_htlc_value_in_flight_msat(long this_ptr, long val);
359         /// uint64_t ChannelHandshakeLimits_get_max_channel_reserve_satoshis(const LDKChannelHandshakeLimits *this_ptr);
360         public static native long ChannelHandshakeLimits_get_max_channel_reserve_satoshis(long this_ptr);
361         /// void ChannelHandshakeLimits_set_max_channel_reserve_satoshis(LDKChannelHandshakeLimits *this_ptr, uint64_t val);
362         public static native void ChannelHandshakeLimits_set_max_channel_reserve_satoshis(long this_ptr, long val);
363         /// uint16_t ChannelHandshakeLimits_get_min_max_accepted_htlcs(const LDKChannelHandshakeLimits *this_ptr);
364         public static native short ChannelHandshakeLimits_get_min_max_accepted_htlcs(long this_ptr);
365         /// void ChannelHandshakeLimits_set_min_max_accepted_htlcs(LDKChannelHandshakeLimits *this_ptr, uint16_t val);
366         public static native void ChannelHandshakeLimits_set_min_max_accepted_htlcs(long this_ptr, short val);
367         /// uint64_t ChannelHandshakeLimits_get_min_dust_limit_satoshis(const LDKChannelHandshakeLimits *this_ptr);
368         public static native long ChannelHandshakeLimits_get_min_dust_limit_satoshis(long this_ptr);
369         /// void ChannelHandshakeLimits_set_min_dust_limit_satoshis(LDKChannelHandshakeLimits *this_ptr, uint64_t val);
370         public static native void ChannelHandshakeLimits_set_min_dust_limit_satoshis(long this_ptr, long val);
371         /// uint64_t ChannelHandshakeLimits_get_max_dust_limit_satoshis(const LDKChannelHandshakeLimits *this_ptr);
372         public static native long ChannelHandshakeLimits_get_max_dust_limit_satoshis(long this_ptr);
373         /// void ChannelHandshakeLimits_set_max_dust_limit_satoshis(LDKChannelHandshakeLimits *this_ptr, uint64_t val);
374         public static native void ChannelHandshakeLimits_set_max_dust_limit_satoshis(long this_ptr, long val);
375         /// uint32_t ChannelHandshakeLimits_get_max_minimum_depth(const LDKChannelHandshakeLimits *this_ptr);
376         public static native int ChannelHandshakeLimits_get_max_minimum_depth(long this_ptr);
377         /// void ChannelHandshakeLimits_set_max_minimum_depth(LDKChannelHandshakeLimits *this_ptr, uint32_t val);
378         public static native void ChannelHandshakeLimits_set_max_minimum_depth(long this_ptr, int val);
379         /// bool ChannelHandshakeLimits_get_force_announced_channel_preference(const LDKChannelHandshakeLimits *this_ptr);
380         public static native boolean ChannelHandshakeLimits_get_force_announced_channel_preference(long this_ptr);
381         /// void ChannelHandshakeLimits_set_force_announced_channel_preference(LDKChannelHandshakeLimits *this_ptr, bool val);
382         public static native void ChannelHandshakeLimits_set_force_announced_channel_preference(long this_ptr, boolean val);
383         /// uint16_t ChannelHandshakeLimits_get_their_to_self_delay(const LDKChannelHandshakeLimits *this_ptr);
384         public static native short ChannelHandshakeLimits_get_their_to_self_delay(long this_ptr);
385         /// void ChannelHandshakeLimits_set_their_to_self_delay(LDKChannelHandshakeLimits *this_ptr, uint16_t val);
386         public static native void ChannelHandshakeLimits_set_their_to_self_delay(long this_ptr, short val);
387         /// MUST_USE_RES LDKChannelHandshakeLimits ChannelHandshakeLimits_new(uint64_t min_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, uint64_t min_dust_limit_satoshis_arg, uint64_t max_dust_limit_satoshis_arg, uint32_t max_minimum_depth_arg, bool force_announced_channel_preference_arg, uint16_t their_to_self_delay_arg);
388         public static native long ChannelHandshakeLimits_new(long min_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, long min_dust_limit_satoshis_arg, long max_dust_limit_satoshis_arg, int max_minimum_depth_arg, boolean force_announced_channel_preference_arg, short their_to_self_delay_arg);
389         /// MUST_USE_RES LDKChannelHandshakeLimits ChannelHandshakeLimits_default(void);
390         public static native long ChannelHandshakeLimits_default();
391         /// void ChannelConfig_free(LDKChannelConfig this_ptr);
392         public static native void ChannelConfig_free(long this_ptr);
393         /// uint32_t ChannelConfig_get_fee_proportional_millionths(const LDKChannelConfig *this_ptr);
394         public static native int ChannelConfig_get_fee_proportional_millionths(long this_ptr);
395         /// void ChannelConfig_set_fee_proportional_millionths(LDKChannelConfig *this_ptr, uint32_t val);
396         public static native void ChannelConfig_set_fee_proportional_millionths(long this_ptr, int val);
397         /// bool ChannelConfig_get_announced_channel(const LDKChannelConfig *this_ptr);
398         public static native boolean ChannelConfig_get_announced_channel(long this_ptr);
399         /// void ChannelConfig_set_announced_channel(LDKChannelConfig *this_ptr, bool val);
400         public static native void ChannelConfig_set_announced_channel(long this_ptr, boolean val);
401         /// bool ChannelConfig_get_commit_upfront_shutdown_pubkey(const LDKChannelConfig *this_ptr);
402         public static native boolean ChannelConfig_get_commit_upfront_shutdown_pubkey(long this_ptr);
403         /// void ChannelConfig_set_commit_upfront_shutdown_pubkey(LDKChannelConfig *this_ptr, bool val);
404         public static native void ChannelConfig_set_commit_upfront_shutdown_pubkey(long this_ptr, boolean val);
405         /// MUST_USE_RES LDKChannelConfig ChannelConfig_new(uint32_t fee_proportional_millionths_arg, bool announced_channel_arg, bool commit_upfront_shutdown_pubkey_arg);
406         public static native long ChannelConfig_new(int fee_proportional_millionths_arg, boolean announced_channel_arg, boolean commit_upfront_shutdown_pubkey_arg);
407         /// MUST_USE_RES LDKChannelConfig ChannelConfig_default(void);
408         public static native long ChannelConfig_default();
409         /// LDKCVec_u8Z ChannelConfig_write(const LDKChannelConfig *obj);
410         public static native long ChannelConfig_write(long obj);
411         /// LDKChannelConfig ChannelConfig_read(LDKu8slice ser);
412         public static native long ChannelConfig_read(long ser);
413         /// void UserConfig_free(LDKUserConfig this_ptr);
414         public static native void UserConfig_free(long this_ptr);
415         /// LDKChannelHandshakeConfig UserConfig_get_own_channel_config(const LDKUserConfig *this_ptr);
416         public static native long UserConfig_get_own_channel_config(long this_ptr);
417         /// void UserConfig_set_own_channel_config(LDKUserConfig *this_ptr, LDKChannelHandshakeConfig val);
418         public static native void UserConfig_set_own_channel_config(long this_ptr, long val);
419         /// LDKChannelHandshakeLimits UserConfig_get_peer_channel_config_limits(const LDKUserConfig *this_ptr);
420         public static native long UserConfig_get_peer_channel_config_limits(long this_ptr);
421         /// void UserConfig_set_peer_channel_config_limits(LDKUserConfig *this_ptr, LDKChannelHandshakeLimits val);
422         public static native void UserConfig_set_peer_channel_config_limits(long this_ptr, long val);
423         /// LDKChannelConfig UserConfig_get_channel_options(const LDKUserConfig *this_ptr);
424         public static native long UserConfig_get_channel_options(long this_ptr);
425         /// void UserConfig_set_channel_options(LDKUserConfig *this_ptr, LDKChannelConfig val);
426         public static native void UserConfig_set_channel_options(long this_ptr, long val);
427         /// MUST_USE_RES LDKUserConfig UserConfig_new(LDKChannelHandshakeConfig own_channel_config_arg, LDKChannelHandshakeLimits peer_channel_config_limits_arg, LDKChannelConfig channel_options_arg);
428         public static native long UserConfig_new(long own_channel_config_arg, long peer_channel_config_limits_arg, long channel_options_arg);
429         /// MUST_USE_RES LDKUserConfig UserConfig_default(void);
430         public static native long UserConfig_default();
431         /// void ChainWatchInterface_free(LDKChainWatchInterface this_ptr);
432         public static native void ChainWatchInterface_free(long this_ptr);
433         /// void BroadcasterInterface_free(LDKBroadcasterInterface this_ptr);
434         public static native void BroadcasterInterface_free(long this_ptr);
435         /// void ChainListener_free(LDKChainListener this_ptr);
436         public static native void ChainListener_free(long this_ptr);
437         /// void FeeEstimator_free(LDKFeeEstimator this_ptr);
438         public static native void FeeEstimator_free(long this_ptr);
439         /// void ChainWatchedUtil_free(LDKChainWatchedUtil this_ptr);
440         public static native void ChainWatchedUtil_free(long this_ptr);
441         /// MUST_USE_RES LDKChainWatchedUtil ChainWatchedUtil_new(void);
442         public static native long ChainWatchedUtil_new();
443         /// MUST_USE_RES bool ChainWatchedUtil_register_tx(LDKChainWatchedUtil *this_arg, const uint8_t (*txid)[32], LDKu8slice script_pub_key);
444         public static native boolean ChainWatchedUtil_register_tx(long this_arg, byte[] txid, long script_pub_key);
445         /// MUST_USE_RES bool ChainWatchedUtil_register_outpoint(LDKChainWatchedUtil *this_arg, LDKC2Tuple_Txidu32Z outpoint, LDKu8slice _script_pub_key);
446         public static native boolean ChainWatchedUtil_register_outpoint(long this_arg, long outpoint, long _script_pub_key);
447         /// MUST_USE_RES bool ChainWatchedUtil_watch_all(LDKChainWatchedUtil *this_arg);
448         public static native boolean ChainWatchedUtil_watch_all(long this_arg);
449         /// MUST_USE_RES bool ChainWatchedUtil_does_match_tx(const LDKChainWatchedUtil *this_arg, LDKTransaction tx);
450         public static native boolean ChainWatchedUtil_does_match_tx(long this_arg, long tx);
451         /// void BlockNotifier_free(LDKBlockNotifier this_ptr);
452         public static native void BlockNotifier_free(long this_ptr);
453         /// MUST_USE_RES LDKBlockNotifier BlockNotifier_new(LDKChainWatchInterface chain_monitor);
454         public static native long BlockNotifier_new(long chain_monitor);
455         /// void BlockNotifier_register_listener(const LDKBlockNotifier *this_arg, LDKChainListener listener);
456         public static native void BlockNotifier_register_listener(long this_arg, long listener);
457         /// void BlockNotifier_block_connected(const LDKBlockNotifier *this_arg, LDKu8slice block, uint32_t height);
458         public static native void BlockNotifier_block_connected(long this_arg, long block, int height);
459         /// MUST_USE_RES bool BlockNotifier_block_connected_checked(const LDKBlockNotifier *this_arg, const uint8_t (*header)[80], uint32_t height, LDKCVec_TransactionZ txn_matched, LDKusizeslice indexes_of_txn_matched);
460         public static native boolean BlockNotifier_block_connected_checked(long this_arg, byte[] header, int height, long txn_matched, long indexes_of_txn_matched);
461         /// void BlockNotifier_block_disconnected(const LDKBlockNotifier *this_arg, const uint8_t (*header)[80], uint32_t disconnected_height);
462         public static native void BlockNotifier_block_disconnected(long this_arg, byte[] header, int disconnected_height);
463         /// void ChainWatchInterfaceUtil_free(LDKChainWatchInterfaceUtil this_ptr);
464         public static native void ChainWatchInterfaceUtil_free(long this_ptr);
465         /// LDKChainWatchInterface ChainWatchInterfaceUtil_as_ChainWatchInterface(const LDKChainWatchInterfaceUtil *this_arg);
466         public static native long ChainWatchInterfaceUtil_as_ChainWatchInterface(long this_arg);
467         /// MUST_USE_RES LDKChainWatchInterfaceUtil ChainWatchInterfaceUtil_new(LDKNetwork network);
468         public static native long ChainWatchInterfaceUtil_new(LDKNetwork network);
469         /// MUST_USE_RES bool ChainWatchInterfaceUtil_does_match_tx(const LDKChainWatchInterfaceUtil *this_arg, LDKTransaction tx);
470         public static native boolean ChainWatchInterfaceUtil_does_match_tx(long this_arg, long tx);
471         /// void OutPoint_free(LDKOutPoint this_ptr);
472         public static native void OutPoint_free(long this_ptr);
473         /// const uint8_t (*OutPoint_get_txid(const LDKOutPoint *this_ptr))[32];
474         public static native byte[] OutPoint_get_txid(long this_ptr);
475         /// void OutPoint_set_txid(LDKOutPoint *this_ptr, LDKThirtyTwoBytes val);
476         public static native void OutPoint_set_txid(long this_ptr, long val);
477         /// uint16_t OutPoint_get_index(const LDKOutPoint *this_ptr);
478         public static native short OutPoint_get_index(long this_ptr);
479         /// void OutPoint_set_index(LDKOutPoint *this_ptr, uint16_t val);
480         public static native void OutPoint_set_index(long this_ptr, short val);
481         /// MUST_USE_RES LDKOutPoint OutPoint_new(LDKThirtyTwoBytes txid_arg, uint16_t index_arg);
482         public static native long OutPoint_new(long txid_arg, short index_arg);
483         /// MUST_USE_RES LDKThirtyTwoBytes OutPoint_to_channel_id(const LDKOutPoint *this_arg);
484         public static native long OutPoint_to_channel_id(long this_arg);
485         /// LDKCVec_u8Z OutPoint_write(const LDKOutPoint *obj);
486         public static native long OutPoint_write(long obj);
487         /// LDKOutPoint OutPoint_read(LDKu8slice ser);
488         public static native long OutPoint_read(long ser);
489         /// void SpendableOutputDescriptor_free(LDKSpendableOutputDescriptor this_ptr);
490         public static native void SpendableOutputDescriptor_free(long this_ptr);
491         /// void ChannelKeys_free(LDKChannelKeys this_ptr);
492         public static native void ChannelKeys_free(long this_ptr);
493         /// void KeysInterface_free(LDKKeysInterface this_ptr);
494         public static native void KeysInterface_free(long this_ptr);
495         /// void InMemoryChannelKeys_free(LDKInMemoryChannelKeys this_ptr);
496         public static native void InMemoryChannelKeys_free(long this_ptr);
497         /// const uint8_t (*InMemoryChannelKeys_get_funding_key(const LDKInMemoryChannelKeys *this_ptr))[32];
498         public static native byte[] InMemoryChannelKeys_get_funding_key(long this_ptr);
499         /// void InMemoryChannelKeys_set_funding_key(LDKInMemoryChannelKeys *this_ptr, LDKSecretKey val);
500         public static native void InMemoryChannelKeys_set_funding_key(long this_ptr, long val);
501         /// const uint8_t (*InMemoryChannelKeys_get_revocation_base_key(const LDKInMemoryChannelKeys *this_ptr))[32];
502         public static native byte[] InMemoryChannelKeys_get_revocation_base_key(long this_ptr);
503         /// void InMemoryChannelKeys_set_revocation_base_key(LDKInMemoryChannelKeys *this_ptr, LDKSecretKey val);
504         public static native void InMemoryChannelKeys_set_revocation_base_key(long this_ptr, long val);
505         /// const uint8_t (*InMemoryChannelKeys_get_payment_key(const LDKInMemoryChannelKeys *this_ptr))[32];
506         public static native byte[] InMemoryChannelKeys_get_payment_key(long this_ptr);
507         /// void InMemoryChannelKeys_set_payment_key(LDKInMemoryChannelKeys *this_ptr, LDKSecretKey val);
508         public static native void InMemoryChannelKeys_set_payment_key(long this_ptr, long val);
509         /// const uint8_t (*InMemoryChannelKeys_get_delayed_payment_base_key(const LDKInMemoryChannelKeys *this_ptr))[32];
510         public static native byte[] InMemoryChannelKeys_get_delayed_payment_base_key(long this_ptr);
511         /// void InMemoryChannelKeys_set_delayed_payment_base_key(LDKInMemoryChannelKeys *this_ptr, LDKSecretKey val);
512         public static native void InMemoryChannelKeys_set_delayed_payment_base_key(long this_ptr, long val);
513         /// const uint8_t (*InMemoryChannelKeys_get_htlc_base_key(const LDKInMemoryChannelKeys *this_ptr))[32];
514         public static native byte[] InMemoryChannelKeys_get_htlc_base_key(long this_ptr);
515         /// void InMemoryChannelKeys_set_htlc_base_key(LDKInMemoryChannelKeys *this_ptr, LDKSecretKey val);
516         public static native void InMemoryChannelKeys_set_htlc_base_key(long this_ptr, long val);
517         /// const uint8_t (*InMemoryChannelKeys_get_commitment_seed(const LDKInMemoryChannelKeys *this_ptr))[32];
518         public static native byte[] InMemoryChannelKeys_get_commitment_seed(long this_ptr);
519         /// void InMemoryChannelKeys_set_commitment_seed(LDKInMemoryChannelKeys *this_ptr, LDKThirtyTwoBytes val);
520         public static native void InMemoryChannelKeys_set_commitment_seed(long this_ptr, long val);
521         /// MUST_USE_RES LDKInMemoryChannelKeys InMemoryChannelKeys_new(LDKSecretKey funding_key, LDKSecretKey revocation_base_key, LDKSecretKey payment_key, LDKSecretKey delayed_payment_base_key, LDKSecretKey htlc_base_key, LDKThirtyTwoBytes commitment_seed, uint64_t channel_value_satoshis, LDKC2Tuple_u64u64Z key_derivation_params);
522         public static native long InMemoryChannelKeys_new(long funding_key, long revocation_base_key, long payment_key, long delayed_payment_base_key, long htlc_base_key, long commitment_seed, long channel_value_satoshis, long key_derivation_params);
523         /// MUST_USE_RES LDKChannelPublicKeys InMemoryChannelKeys_remote_pubkeys(const LDKInMemoryChannelKeys *this_arg);
524         public static native long InMemoryChannelKeys_remote_pubkeys(long this_arg);
525         /// MUST_USE_RES uint16_t InMemoryChannelKeys_remote_to_self_delay(const LDKInMemoryChannelKeys *this_arg);
526         public static native short InMemoryChannelKeys_remote_to_self_delay(long this_arg);
527         /// MUST_USE_RES uint16_t InMemoryChannelKeys_local_to_self_delay(const LDKInMemoryChannelKeys *this_arg);
528         public static native short InMemoryChannelKeys_local_to_self_delay(long this_arg);
529         /// LDKChannelKeys InMemoryChannelKeys_as_ChannelKeys(const LDKInMemoryChannelKeys *this_arg);
530         public static native long InMemoryChannelKeys_as_ChannelKeys(long this_arg);
531         /// LDKCVec_u8Z InMemoryChannelKeys_write(const LDKInMemoryChannelKeys *obj);
532         public static native long InMemoryChannelKeys_write(long obj);
533         /// LDKInMemoryChannelKeys InMemoryChannelKeys_read(LDKu8slice ser);
534         public static native long InMemoryChannelKeys_read(long ser);
535         /// void KeysManager_free(LDKKeysManager this_ptr);
536         public static native void KeysManager_free(long this_ptr);
537         /// MUST_USE_RES LDKKeysManager KeysManager_new(const uint8_t (*seed)[32], LDKNetwork network, uint64_t starting_time_secs, uint32_t starting_time_nanos);
538         public static native long KeysManager_new(byte[] seed, LDKNetwork network, long starting_time_secs, int starting_time_nanos);
539         /// MUST_USE_RES LDKInMemoryChannelKeys KeysManager_derive_channel_keys(const LDKKeysManager *this_arg, uint64_t channel_value_satoshis, uint64_t params_1, uint64_t params_2);
540         public static native long KeysManager_derive_channel_keys(long this_arg, long channel_value_satoshis, long params_1, long params_2);
541         /// LDKKeysInterface KeysManager_as_KeysInterface(const LDKKeysManager *this_arg);
542         public static native long KeysManager_as_KeysInterface(long this_arg);
543         /// void ChannelManager_free(LDKChannelManager this_ptr);
544         public static native void ChannelManager_free(long this_ptr);
545         /// void ChannelDetails_free(LDKChannelDetails this_ptr);
546         public static native void ChannelDetails_free(long this_ptr);
547         /// const uint8_t (*ChannelDetails_get_channel_id(const LDKChannelDetails *this_ptr))[32];
548         public static native byte[] ChannelDetails_get_channel_id(long this_ptr);
549         /// void ChannelDetails_set_channel_id(LDKChannelDetails *this_ptr, LDKThirtyTwoBytes val);
550         public static native void ChannelDetails_set_channel_id(long this_ptr, long val);
551         /// LDKPublicKey ChannelDetails_get_remote_network_id(const LDKChannelDetails *this_ptr);
552         public static native long ChannelDetails_get_remote_network_id(long this_ptr);
553         /// void ChannelDetails_set_remote_network_id(LDKChannelDetails *this_ptr, LDKPublicKey val);
554         public static native void ChannelDetails_set_remote_network_id(long this_ptr, long val);
555         /// LDKInitFeatures ChannelDetails_get_counterparty_features(const LDKChannelDetails *this_ptr);
556         public static native long ChannelDetails_get_counterparty_features(long this_ptr);
557         /// void ChannelDetails_set_counterparty_features(LDKChannelDetails *this_ptr, LDKInitFeatures val);
558         public static native void ChannelDetails_set_counterparty_features(long this_ptr, long val);
559         /// uint64_t ChannelDetails_get_channel_value_satoshis(const LDKChannelDetails *this_ptr);
560         public static native long ChannelDetails_get_channel_value_satoshis(long this_ptr);
561         /// void ChannelDetails_set_channel_value_satoshis(LDKChannelDetails *this_ptr, uint64_t val);
562         public static native void ChannelDetails_set_channel_value_satoshis(long this_ptr, long val);
563         /// uint64_t ChannelDetails_get_user_id(const LDKChannelDetails *this_ptr);
564         public static native long ChannelDetails_get_user_id(long this_ptr);
565         /// void ChannelDetails_set_user_id(LDKChannelDetails *this_ptr, uint64_t val);
566         public static native void ChannelDetails_set_user_id(long this_ptr, long val);
567         /// uint64_t ChannelDetails_get_outbound_capacity_msat(const LDKChannelDetails *this_ptr);
568         public static native long ChannelDetails_get_outbound_capacity_msat(long this_ptr);
569         /// void ChannelDetails_set_outbound_capacity_msat(LDKChannelDetails *this_ptr, uint64_t val);
570         public static native void ChannelDetails_set_outbound_capacity_msat(long this_ptr, long val);
571         /// uint64_t ChannelDetails_get_inbound_capacity_msat(const LDKChannelDetails *this_ptr);
572         public static native long ChannelDetails_get_inbound_capacity_msat(long this_ptr);
573         /// void ChannelDetails_set_inbound_capacity_msat(LDKChannelDetails *this_ptr, uint64_t val);
574         public static native void ChannelDetails_set_inbound_capacity_msat(long this_ptr, long val);
575         /// bool ChannelDetails_get_is_live(const LDKChannelDetails *this_ptr);
576         public static native boolean ChannelDetails_get_is_live(long this_ptr);
577         /// void ChannelDetails_set_is_live(LDKChannelDetails *this_ptr, bool val);
578         public static native void ChannelDetails_set_is_live(long this_ptr, boolean val);
579         /// void PaymentSendFailure_free(LDKPaymentSendFailure this_ptr);
580         public static native void PaymentSendFailure_free(long this_ptr);
581         /// MUST_USE_RES LDKChannelManager ChannelManager_new(LDKNetwork network, LDKFeeEstimator fee_est, LDKManyChannelMonitor monitor, LDKBroadcasterInterface tx_broadcaster, LDKLogger logger, LDKKeysInterface keys_manager, LDKUserConfig config, uintptr_t current_blockchain_height);
582         public static native long ChannelManager_new(LDKNetwork network, long fee_est, long monitor, long tx_broadcaster, long logger, long keys_manager, long config, long current_blockchain_height);
583         /// MUST_USE_RES LDKCResult_NoneAPIErrorZ ChannelManager_create_channel(const LDKChannelManager *this_arg, LDKPublicKey their_network_key, uint64_t channel_value_satoshis, uint64_t push_msat, uint64_t user_id, LDKUserConfig override_config);
584         public static native long ChannelManager_create_channel(long this_arg, long their_network_key, long channel_value_satoshis, long push_msat, long user_id, long override_config);
585         /// MUST_USE_RES LDKCVec_ChannelDetailsZ ChannelManager_list_channels(const LDKChannelManager *this_arg);
586         public static native long ChannelManager_list_channels(long this_arg);
587         /// MUST_USE_RES LDKCVec_ChannelDetailsZ ChannelManager_list_usable_channels(const LDKChannelManager *this_arg);
588         public static native long ChannelManager_list_usable_channels(long this_arg);
589         /// MUST_USE_RES LDKCResult_NoneAPIErrorZ ChannelManager_close_channel(const LDKChannelManager *this_arg, const uint8_t (*channel_id)[32]);
590         public static native long ChannelManager_close_channel(long this_arg, byte[] channel_id);
591         /// void ChannelManager_force_close_channel(const LDKChannelManager *this_arg, const uint8_t (*channel_id)[32]);
592         public static native void ChannelManager_force_close_channel(long this_arg, byte[] channel_id);
593         /// void ChannelManager_force_close_all_channels(const LDKChannelManager *this_arg);
594         public static native void ChannelManager_force_close_all_channels(long this_arg);
595         /// MUST_USE_RES LDKCResult_NonePaymentSendFailureZ ChannelManager_send_payment(const LDKChannelManager *this_arg, const LDKRoute *route, LDKThirtyTwoBytes payment_hash, LDKThirtyTwoBytes payment_secret);
596         public static native long ChannelManager_send_payment(long this_arg, long route, long payment_hash, long payment_secret);
597         /// void ChannelManager_funding_transaction_generated(const LDKChannelManager *this_arg, const uint8_t (*temporary_channel_id)[32], LDKOutPoint funding_txo);
598         public static native void ChannelManager_funding_transaction_generated(long this_arg, byte[] temporary_channel_id, long funding_txo);
599         /// void ChannelManager_broadcast_node_announcement(const LDKChannelManager *this_arg, LDKThreeBytes rgb, LDKThirtyTwoBytes alias, LDKCVec_NetAddressZ addresses);
600         public static native void ChannelManager_broadcast_node_announcement(long this_arg, long rgb, long alias, long addresses);
601         /// void ChannelManager_process_pending_htlc_forwards(const LDKChannelManager *this_arg);
602         public static native void ChannelManager_process_pending_htlc_forwards(long this_arg);
603         /// void ChannelManager_timer_chan_freshness_every_min(const LDKChannelManager *this_arg);
604         public static native void ChannelManager_timer_chan_freshness_every_min(long this_arg);
605         /// MUST_USE_RES bool ChannelManager_fail_htlc_backwards(const LDKChannelManager *this_arg, const uint8_t (*payment_hash)[32], LDKThirtyTwoBytes payment_secret);
606         public static native boolean ChannelManager_fail_htlc_backwards(long this_arg, byte[] payment_hash, long payment_secret);
607         /// MUST_USE_RES bool ChannelManager_claim_funds(const LDKChannelManager *this_arg, LDKThirtyTwoBytes payment_preimage, LDKThirtyTwoBytes payment_secret, uint64_t expected_amount);
608         public static native boolean ChannelManager_claim_funds(long this_arg, long payment_preimage, long payment_secret, long expected_amount);
609         /// MUST_USE_RES LDKPublicKey ChannelManager_get_our_node_id(const LDKChannelManager *this_arg);
610         public static native long ChannelManager_get_our_node_id(long this_arg);
611         /// void ChannelManager_channel_monitor_updated(const LDKChannelManager *this_arg, const LDKOutPoint *funding_txo, uint64_t highest_applied_update_id);
612         public static native void ChannelManager_channel_monitor_updated(long this_arg, long funding_txo, long highest_applied_update_id);
613         /// LDKMessageSendEventsProvider ChannelManager_as_MessageSendEventsProvider(const LDKChannelManager *this_arg);
614         public static native long ChannelManager_as_MessageSendEventsProvider(long this_arg);
615         /// LDKEventsProvider ChannelManager_as_EventsProvider(const LDKChannelManager *this_arg);
616         public static native long ChannelManager_as_EventsProvider(long this_arg);
617         /// LDKChainListener ChannelManager_as_ChainListener(const LDKChannelManager *this_arg);
618         public static native long ChannelManager_as_ChainListener(long this_arg);
619         /// LDKChannelMessageHandler ChannelManager_as_ChannelMessageHandler(const LDKChannelManager *this_arg);
620         public static native long ChannelManager_as_ChannelMessageHandler(long this_arg);
621         /// void ChannelManagerReadArgs_free(LDKChannelManagerReadArgs this_ptr);
622         public static native void ChannelManagerReadArgs_free(long this_ptr);
623         /// const LDKKeysInterface *ChannelManagerReadArgs_get_keys_manager(const LDKChannelManagerReadArgs *this_ptr);
624         public static native long ChannelManagerReadArgs_get_keys_manager(long this_ptr);
625         /// void ChannelManagerReadArgs_set_keys_manager(LDKChannelManagerReadArgs *this_ptr, LDKKeysInterface val);
626         public static native void ChannelManagerReadArgs_set_keys_manager(long this_ptr, long val);
627         /// const LDKFeeEstimator *ChannelManagerReadArgs_get_fee_estimator(const LDKChannelManagerReadArgs *this_ptr);
628         public static native long ChannelManagerReadArgs_get_fee_estimator(long this_ptr);
629         /// void ChannelManagerReadArgs_set_fee_estimator(LDKChannelManagerReadArgs *this_ptr, LDKFeeEstimator val);
630         public static native void ChannelManagerReadArgs_set_fee_estimator(long this_ptr, long val);
631         /// const LDKManyChannelMonitor *ChannelManagerReadArgs_get_monitor(const LDKChannelManagerReadArgs *this_ptr);
632         public static native long ChannelManagerReadArgs_get_monitor(long this_ptr);
633         /// void ChannelManagerReadArgs_set_monitor(LDKChannelManagerReadArgs *this_ptr, LDKManyChannelMonitor val);
634         public static native void ChannelManagerReadArgs_set_monitor(long this_ptr, long val);
635         /// const LDKBroadcasterInterface *ChannelManagerReadArgs_get_tx_broadcaster(const LDKChannelManagerReadArgs *this_ptr);
636         public static native long ChannelManagerReadArgs_get_tx_broadcaster(long this_ptr);
637         /// void ChannelManagerReadArgs_set_tx_broadcaster(LDKChannelManagerReadArgs *this_ptr, LDKBroadcasterInterface val);
638         public static native void ChannelManagerReadArgs_set_tx_broadcaster(long this_ptr, long val);
639         /// const LDKLogger *ChannelManagerReadArgs_get_logger(const LDKChannelManagerReadArgs *this_ptr);
640         public static native long ChannelManagerReadArgs_get_logger(long this_ptr);
641         /// void ChannelManagerReadArgs_set_logger(LDKChannelManagerReadArgs *this_ptr, LDKLogger val);
642         public static native void ChannelManagerReadArgs_set_logger(long this_ptr, long val);
643         /// LDKUserConfig ChannelManagerReadArgs_get_default_config(const LDKChannelManagerReadArgs *this_ptr);
644         public static native long ChannelManagerReadArgs_get_default_config(long this_ptr);
645         /// void ChannelManagerReadArgs_set_default_config(LDKChannelManagerReadArgs *this_ptr, LDKUserConfig val);
646         public static native void ChannelManagerReadArgs_set_default_config(long this_ptr, long val);
647         /// MUST_USE_RES LDKChannelManagerReadArgs ChannelManagerReadArgs_new(LDKKeysInterface keys_manager, LDKFeeEstimator fee_estimator, LDKManyChannelMonitor monitor, LDKBroadcasterInterface tx_broadcaster, LDKLogger logger, LDKUserConfig default_config, LDKCVec_ChannelMonitorZ channel_monitors);
648         public static native long ChannelManagerReadArgs_new(long keys_manager, long fee_estimator, long monitor, long tx_broadcaster, long logger, long default_config, long channel_monitors);
649         /// void ChannelMonitorUpdate_free(LDKChannelMonitorUpdate this_ptr);
650         public static native void ChannelMonitorUpdate_free(long this_ptr);
651         /// uint64_t ChannelMonitorUpdate_get_update_id(const LDKChannelMonitorUpdate *this_ptr);
652         public static native long ChannelMonitorUpdate_get_update_id(long this_ptr);
653         /// void ChannelMonitorUpdate_set_update_id(LDKChannelMonitorUpdate *this_ptr, uint64_t val);
654         public static native void ChannelMonitorUpdate_set_update_id(long this_ptr, long val);
655         /// LDKCVec_u8Z ChannelMonitorUpdate_write(const LDKChannelMonitorUpdate *obj);
656         public static native long ChannelMonitorUpdate_write(long obj);
657         /// LDKChannelMonitorUpdate ChannelMonitorUpdate_read(LDKu8slice ser);
658         public static native long ChannelMonitorUpdate_read(long ser);
659         /// void MonitorUpdateError_free(LDKMonitorUpdateError this_ptr);
660         public static native void MonitorUpdateError_free(long this_ptr);
661         /// void MonitorEvent_free(LDKMonitorEvent this_ptr);
662         public static native void MonitorEvent_free(long this_ptr);
663         /// void HTLCUpdate_free(LDKHTLCUpdate this_ptr);
664         public static native void HTLCUpdate_free(long this_ptr);
665         /// LDKCVec_u8Z HTLCUpdate_write(const LDKHTLCUpdate *obj);
666         public static native long HTLCUpdate_write(long obj);
667         /// LDKHTLCUpdate HTLCUpdate_read(LDKu8slice ser);
668         public static native long HTLCUpdate_read(long ser);
669         /// void ChannelMonitor_free(LDKChannelMonitor this_ptr);
670         public static native void ChannelMonitor_free(long this_ptr);
671         /// void ManyChannelMonitor_free(LDKManyChannelMonitor this_ptr);
672         public static native void ManyChannelMonitor_free(long this_ptr);
673         /// MUST_USE_RES LDKCResult_NoneMonitorUpdateErrorZ ChannelMonitor_update_monitor(LDKChannelMonitor *this_arg, LDKChannelMonitorUpdate updates, const LDKBroadcasterInterface *broadcaster, const LDKLogger *logger);
674         public static native long ChannelMonitor_update_monitor(long this_arg, long updates, long broadcaster, long logger);
675         /// MUST_USE_RES uint64_t ChannelMonitor_get_latest_update_id(const LDKChannelMonitor *this_arg);
676         public static native long ChannelMonitor_get_latest_update_id(long this_arg);
677         /// MUST_USE_RES LDKC2Tuple_OutPointScriptZ ChannelMonitor_get_funding_txo(const LDKChannelMonitor *this_arg);
678         public static native long ChannelMonitor_get_funding_txo(long this_arg);
679         /// MUST_USE_RES LDKCVec_MonitorEventZ ChannelMonitor_get_and_clear_pending_monitor_events(LDKChannelMonitor *this_arg);
680         public static native long ChannelMonitor_get_and_clear_pending_monitor_events(long this_arg);
681         /// MUST_USE_RES LDKCVec_EventZ ChannelMonitor_get_and_clear_pending_events(LDKChannelMonitor *this_arg);
682         public static native long ChannelMonitor_get_and_clear_pending_events(long this_arg);
683         /// MUST_USE_RES LDKCVec_TransactionZ ChannelMonitor_get_latest_local_commitment_txn(LDKChannelMonitor *this_arg, const LDKLogger *logger);
684         public static native long ChannelMonitor_get_latest_local_commitment_txn(long this_arg, long logger);
685         /// void DecodeError_free(LDKDecodeError this_ptr);
686         public static native void DecodeError_free(long this_ptr);
687         /// void Init_free(LDKInit this_ptr);
688         public static native void Init_free(long this_ptr);
689         /// void ErrorMessage_free(LDKErrorMessage this_ptr);
690         public static native void ErrorMessage_free(long this_ptr);
691         /// const uint8_t (*ErrorMessage_get_channel_id(const LDKErrorMessage *this_ptr))[32];
692         public static native byte[] ErrorMessage_get_channel_id(long this_ptr);
693         /// void ErrorMessage_set_channel_id(LDKErrorMessage *this_ptr, LDKThirtyTwoBytes val);
694         public static native void ErrorMessage_set_channel_id(long this_ptr, long val);
695         /// LDKStr ErrorMessage_get_data(const LDKErrorMessage *this_ptr);
696         public static native long ErrorMessage_get_data(long this_ptr);
697         /// void ErrorMessage_set_data(LDKErrorMessage *this_ptr, LDKCVec_u8Z val);
698         public static native void ErrorMessage_set_data(long this_ptr, long val);
699         /// MUST_USE_RES LDKErrorMessage ErrorMessage_new(LDKThirtyTwoBytes channel_id_arg, LDKCVec_u8Z data_arg);
700         public static native long ErrorMessage_new(long channel_id_arg, long data_arg);
701         /// void Ping_free(LDKPing this_ptr);
702         public static native void Ping_free(long this_ptr);
703         /// uint16_t Ping_get_ponglen(const LDKPing *this_ptr);
704         public static native short Ping_get_ponglen(long this_ptr);
705         /// void Ping_set_ponglen(LDKPing *this_ptr, uint16_t val);
706         public static native void Ping_set_ponglen(long this_ptr, short val);
707         /// uint16_t Ping_get_byteslen(const LDKPing *this_ptr);
708         public static native short Ping_get_byteslen(long this_ptr);
709         /// void Ping_set_byteslen(LDKPing *this_ptr, uint16_t val);
710         public static native void Ping_set_byteslen(long this_ptr, short val);
711         /// MUST_USE_RES LDKPing Ping_new(uint16_t ponglen_arg, uint16_t byteslen_arg);
712         public static native long Ping_new(short ponglen_arg, short byteslen_arg);
713         /// void Pong_free(LDKPong this_ptr);
714         public static native void Pong_free(long this_ptr);
715         /// uint16_t Pong_get_byteslen(const LDKPong *this_ptr);
716         public static native short Pong_get_byteslen(long this_ptr);
717         /// void Pong_set_byteslen(LDKPong *this_ptr, uint16_t val);
718         public static native void Pong_set_byteslen(long this_ptr, short val);
719         /// MUST_USE_RES LDKPong Pong_new(uint16_t byteslen_arg);
720         public static native long Pong_new(short byteslen_arg);
721         /// void OpenChannel_free(LDKOpenChannel this_ptr);
722         public static native void OpenChannel_free(long this_ptr);
723         /// const uint8_t (*OpenChannel_get_chain_hash(const LDKOpenChannel *this_ptr))[32];
724         public static native byte[] OpenChannel_get_chain_hash(long this_ptr);
725         /// void OpenChannel_set_chain_hash(LDKOpenChannel *this_ptr, LDKThirtyTwoBytes val);
726         public static native void OpenChannel_set_chain_hash(long this_ptr, long val);
727         /// const uint8_t (*OpenChannel_get_temporary_channel_id(const LDKOpenChannel *this_ptr))[32];
728         public static native byte[] OpenChannel_get_temporary_channel_id(long this_ptr);
729         /// void OpenChannel_set_temporary_channel_id(LDKOpenChannel *this_ptr, LDKThirtyTwoBytes val);
730         public static native void OpenChannel_set_temporary_channel_id(long this_ptr, long val);
731         /// uint64_t OpenChannel_get_funding_satoshis(const LDKOpenChannel *this_ptr);
732         public static native long OpenChannel_get_funding_satoshis(long this_ptr);
733         /// void OpenChannel_set_funding_satoshis(LDKOpenChannel *this_ptr, uint64_t val);
734         public static native void OpenChannel_set_funding_satoshis(long this_ptr, long val);
735         /// uint64_t OpenChannel_get_push_msat(const LDKOpenChannel *this_ptr);
736         public static native long OpenChannel_get_push_msat(long this_ptr);
737         /// void OpenChannel_set_push_msat(LDKOpenChannel *this_ptr, uint64_t val);
738         public static native void OpenChannel_set_push_msat(long this_ptr, long val);
739         /// uint64_t OpenChannel_get_dust_limit_satoshis(const LDKOpenChannel *this_ptr);
740         public static native long OpenChannel_get_dust_limit_satoshis(long this_ptr);
741         /// void OpenChannel_set_dust_limit_satoshis(LDKOpenChannel *this_ptr, uint64_t val);
742         public static native void OpenChannel_set_dust_limit_satoshis(long this_ptr, long val);
743         /// uint64_t OpenChannel_get_max_htlc_value_in_flight_msat(const LDKOpenChannel *this_ptr);
744         public static native long OpenChannel_get_max_htlc_value_in_flight_msat(long this_ptr);
745         /// void OpenChannel_set_max_htlc_value_in_flight_msat(LDKOpenChannel *this_ptr, uint64_t val);
746         public static native void OpenChannel_set_max_htlc_value_in_flight_msat(long this_ptr, long val);
747         /// uint64_t OpenChannel_get_channel_reserve_satoshis(const LDKOpenChannel *this_ptr);
748         public static native long OpenChannel_get_channel_reserve_satoshis(long this_ptr);
749         /// void OpenChannel_set_channel_reserve_satoshis(LDKOpenChannel *this_ptr, uint64_t val);
750         public static native void OpenChannel_set_channel_reserve_satoshis(long this_ptr, long val);
751         /// uint64_t OpenChannel_get_htlc_minimum_msat(const LDKOpenChannel *this_ptr);
752         public static native long OpenChannel_get_htlc_minimum_msat(long this_ptr);
753         /// void OpenChannel_set_htlc_minimum_msat(LDKOpenChannel *this_ptr, uint64_t val);
754         public static native void OpenChannel_set_htlc_minimum_msat(long this_ptr, long val);
755         /// uint32_t OpenChannel_get_feerate_per_kw(const LDKOpenChannel *this_ptr);
756         public static native int OpenChannel_get_feerate_per_kw(long this_ptr);
757         /// void OpenChannel_set_feerate_per_kw(LDKOpenChannel *this_ptr, uint32_t val);
758         public static native void OpenChannel_set_feerate_per_kw(long this_ptr, int val);
759         /// uint16_t OpenChannel_get_to_self_delay(const LDKOpenChannel *this_ptr);
760         public static native short OpenChannel_get_to_self_delay(long this_ptr);
761         /// void OpenChannel_set_to_self_delay(LDKOpenChannel *this_ptr, uint16_t val);
762         public static native void OpenChannel_set_to_self_delay(long this_ptr, short val);
763         /// uint16_t OpenChannel_get_max_accepted_htlcs(const LDKOpenChannel *this_ptr);
764         public static native short OpenChannel_get_max_accepted_htlcs(long this_ptr);
765         /// void OpenChannel_set_max_accepted_htlcs(LDKOpenChannel *this_ptr, uint16_t val);
766         public static native void OpenChannel_set_max_accepted_htlcs(long this_ptr, short val);
767         /// LDKPublicKey OpenChannel_get_funding_pubkey(const LDKOpenChannel *this_ptr);
768         public static native long OpenChannel_get_funding_pubkey(long this_ptr);
769         /// void OpenChannel_set_funding_pubkey(LDKOpenChannel *this_ptr, LDKPublicKey val);
770         public static native void OpenChannel_set_funding_pubkey(long this_ptr, long val);
771         /// LDKPublicKey OpenChannel_get_revocation_basepoint(const LDKOpenChannel *this_ptr);
772         public static native long OpenChannel_get_revocation_basepoint(long this_ptr);
773         /// void OpenChannel_set_revocation_basepoint(LDKOpenChannel *this_ptr, LDKPublicKey val);
774         public static native void OpenChannel_set_revocation_basepoint(long this_ptr, long val);
775         /// LDKPublicKey OpenChannel_get_payment_point(const LDKOpenChannel *this_ptr);
776         public static native long OpenChannel_get_payment_point(long this_ptr);
777         /// void OpenChannel_set_payment_point(LDKOpenChannel *this_ptr, LDKPublicKey val);
778         public static native void OpenChannel_set_payment_point(long this_ptr, long val);
779         /// LDKPublicKey OpenChannel_get_delayed_payment_basepoint(const LDKOpenChannel *this_ptr);
780         public static native long OpenChannel_get_delayed_payment_basepoint(long this_ptr);
781         /// void OpenChannel_set_delayed_payment_basepoint(LDKOpenChannel *this_ptr, LDKPublicKey val);
782         public static native void OpenChannel_set_delayed_payment_basepoint(long this_ptr, long val);
783         /// LDKPublicKey OpenChannel_get_htlc_basepoint(const LDKOpenChannel *this_ptr);
784         public static native long OpenChannel_get_htlc_basepoint(long this_ptr);
785         /// void OpenChannel_set_htlc_basepoint(LDKOpenChannel *this_ptr, LDKPublicKey val);
786         public static native void OpenChannel_set_htlc_basepoint(long this_ptr, long val);
787         /// LDKPublicKey OpenChannel_get_first_per_commitment_point(const LDKOpenChannel *this_ptr);
788         public static native long OpenChannel_get_first_per_commitment_point(long this_ptr);
789         /// void OpenChannel_set_first_per_commitment_point(LDKOpenChannel *this_ptr, LDKPublicKey val);
790         public static native void OpenChannel_set_first_per_commitment_point(long this_ptr, long val);
791         /// uint8_t OpenChannel_get_channel_flags(const LDKOpenChannel *this_ptr);
792         public static native byte OpenChannel_get_channel_flags(long this_ptr);
793         /// void OpenChannel_set_channel_flags(LDKOpenChannel *this_ptr, uint8_t val);
794         public static native void OpenChannel_set_channel_flags(long this_ptr, byte val);
795         /// void AcceptChannel_free(LDKAcceptChannel this_ptr);
796         public static native void AcceptChannel_free(long this_ptr);
797         /// const uint8_t (*AcceptChannel_get_temporary_channel_id(const LDKAcceptChannel *this_ptr))[32];
798         public static native byte[] AcceptChannel_get_temporary_channel_id(long this_ptr);
799         /// void AcceptChannel_set_temporary_channel_id(LDKAcceptChannel *this_ptr, LDKThirtyTwoBytes val);
800         public static native void AcceptChannel_set_temporary_channel_id(long this_ptr, long val);
801         /// uint64_t AcceptChannel_get_dust_limit_satoshis(const LDKAcceptChannel *this_ptr);
802         public static native long AcceptChannel_get_dust_limit_satoshis(long this_ptr);
803         /// void AcceptChannel_set_dust_limit_satoshis(LDKAcceptChannel *this_ptr, uint64_t val);
804         public static native void AcceptChannel_set_dust_limit_satoshis(long this_ptr, long val);
805         /// uint64_t AcceptChannel_get_max_htlc_value_in_flight_msat(const LDKAcceptChannel *this_ptr);
806         public static native long AcceptChannel_get_max_htlc_value_in_flight_msat(long this_ptr);
807         /// void AcceptChannel_set_max_htlc_value_in_flight_msat(LDKAcceptChannel *this_ptr, uint64_t val);
808         public static native void AcceptChannel_set_max_htlc_value_in_flight_msat(long this_ptr, long val);
809         /// uint64_t AcceptChannel_get_channel_reserve_satoshis(const LDKAcceptChannel *this_ptr);
810         public static native long AcceptChannel_get_channel_reserve_satoshis(long this_ptr);
811         /// void AcceptChannel_set_channel_reserve_satoshis(LDKAcceptChannel *this_ptr, uint64_t val);
812         public static native void AcceptChannel_set_channel_reserve_satoshis(long this_ptr, long val);
813         /// uint64_t AcceptChannel_get_htlc_minimum_msat(const LDKAcceptChannel *this_ptr);
814         public static native long AcceptChannel_get_htlc_minimum_msat(long this_ptr);
815         /// void AcceptChannel_set_htlc_minimum_msat(LDKAcceptChannel *this_ptr, uint64_t val);
816         public static native void AcceptChannel_set_htlc_minimum_msat(long this_ptr, long val);
817         /// uint32_t AcceptChannel_get_minimum_depth(const LDKAcceptChannel *this_ptr);
818         public static native int AcceptChannel_get_minimum_depth(long this_ptr);
819         /// void AcceptChannel_set_minimum_depth(LDKAcceptChannel *this_ptr, uint32_t val);
820         public static native void AcceptChannel_set_minimum_depth(long this_ptr, int val);
821         /// uint16_t AcceptChannel_get_to_self_delay(const LDKAcceptChannel *this_ptr);
822         public static native short AcceptChannel_get_to_self_delay(long this_ptr);
823         /// void AcceptChannel_set_to_self_delay(LDKAcceptChannel *this_ptr, uint16_t val);
824         public static native void AcceptChannel_set_to_self_delay(long this_ptr, short val);
825         /// uint16_t AcceptChannel_get_max_accepted_htlcs(const LDKAcceptChannel *this_ptr);
826         public static native short AcceptChannel_get_max_accepted_htlcs(long this_ptr);
827         /// void AcceptChannel_set_max_accepted_htlcs(LDKAcceptChannel *this_ptr, uint16_t val);
828         public static native void AcceptChannel_set_max_accepted_htlcs(long this_ptr, short val);
829         /// LDKPublicKey AcceptChannel_get_funding_pubkey(const LDKAcceptChannel *this_ptr);
830         public static native long AcceptChannel_get_funding_pubkey(long this_ptr);
831         /// void AcceptChannel_set_funding_pubkey(LDKAcceptChannel *this_ptr, LDKPublicKey val);
832         public static native void AcceptChannel_set_funding_pubkey(long this_ptr, long val);
833         /// LDKPublicKey AcceptChannel_get_revocation_basepoint(const LDKAcceptChannel *this_ptr);
834         public static native long AcceptChannel_get_revocation_basepoint(long this_ptr);
835         /// void AcceptChannel_set_revocation_basepoint(LDKAcceptChannel *this_ptr, LDKPublicKey val);
836         public static native void AcceptChannel_set_revocation_basepoint(long this_ptr, long val);
837         /// LDKPublicKey AcceptChannel_get_payment_point(const LDKAcceptChannel *this_ptr);
838         public static native long AcceptChannel_get_payment_point(long this_ptr);
839         /// void AcceptChannel_set_payment_point(LDKAcceptChannel *this_ptr, LDKPublicKey val);
840         public static native void AcceptChannel_set_payment_point(long this_ptr, long val);
841         /// LDKPublicKey AcceptChannel_get_delayed_payment_basepoint(const LDKAcceptChannel *this_ptr);
842         public static native long AcceptChannel_get_delayed_payment_basepoint(long this_ptr);
843         /// void AcceptChannel_set_delayed_payment_basepoint(LDKAcceptChannel *this_ptr, LDKPublicKey val);
844         public static native void AcceptChannel_set_delayed_payment_basepoint(long this_ptr, long val);
845         /// LDKPublicKey AcceptChannel_get_htlc_basepoint(const LDKAcceptChannel *this_ptr);
846         public static native long AcceptChannel_get_htlc_basepoint(long this_ptr);
847         /// void AcceptChannel_set_htlc_basepoint(LDKAcceptChannel *this_ptr, LDKPublicKey val);
848         public static native void AcceptChannel_set_htlc_basepoint(long this_ptr, long val);
849         /// LDKPublicKey AcceptChannel_get_first_per_commitment_point(const LDKAcceptChannel *this_ptr);
850         public static native long AcceptChannel_get_first_per_commitment_point(long this_ptr);
851         /// void AcceptChannel_set_first_per_commitment_point(LDKAcceptChannel *this_ptr, LDKPublicKey val);
852         public static native void AcceptChannel_set_first_per_commitment_point(long this_ptr, long val);
853         /// void FundingCreated_free(LDKFundingCreated this_ptr);
854         public static native void FundingCreated_free(long this_ptr);
855         /// const uint8_t (*FundingCreated_get_temporary_channel_id(const LDKFundingCreated *this_ptr))[32];
856         public static native byte[] FundingCreated_get_temporary_channel_id(long this_ptr);
857         /// void FundingCreated_set_temporary_channel_id(LDKFundingCreated *this_ptr, LDKThirtyTwoBytes val);
858         public static native void FundingCreated_set_temporary_channel_id(long this_ptr, long val);
859         /// const uint8_t (*FundingCreated_get_funding_txid(const LDKFundingCreated *this_ptr))[32];
860         public static native byte[] FundingCreated_get_funding_txid(long this_ptr);
861         /// void FundingCreated_set_funding_txid(LDKFundingCreated *this_ptr, LDKThirtyTwoBytes val);
862         public static native void FundingCreated_set_funding_txid(long this_ptr, long val);
863         /// uint16_t FundingCreated_get_funding_output_index(const LDKFundingCreated *this_ptr);
864         public static native short FundingCreated_get_funding_output_index(long this_ptr);
865         /// void FundingCreated_set_funding_output_index(LDKFundingCreated *this_ptr, uint16_t val);
866         public static native void FundingCreated_set_funding_output_index(long this_ptr, short val);
867         /// LDKSignature FundingCreated_get_signature(const LDKFundingCreated *this_ptr);
868         public static native long FundingCreated_get_signature(long this_ptr);
869         /// void FundingCreated_set_signature(LDKFundingCreated *this_ptr, LDKSignature val);
870         public static native void FundingCreated_set_signature(long this_ptr, long val);
871         /// MUST_USE_RES LDKFundingCreated FundingCreated_new(LDKThirtyTwoBytes temporary_channel_id_arg, LDKThirtyTwoBytes funding_txid_arg, uint16_t funding_output_index_arg, LDKSignature signature_arg);
872         public static native long FundingCreated_new(long temporary_channel_id_arg, long funding_txid_arg, short funding_output_index_arg, long signature_arg);
873         /// void FundingSigned_free(LDKFundingSigned this_ptr);
874         public static native void FundingSigned_free(long this_ptr);
875         /// const uint8_t (*FundingSigned_get_channel_id(const LDKFundingSigned *this_ptr))[32];
876         public static native byte[] FundingSigned_get_channel_id(long this_ptr);
877         /// void FundingSigned_set_channel_id(LDKFundingSigned *this_ptr, LDKThirtyTwoBytes val);
878         public static native void FundingSigned_set_channel_id(long this_ptr, long val);
879         /// LDKSignature FundingSigned_get_signature(const LDKFundingSigned *this_ptr);
880         public static native long FundingSigned_get_signature(long this_ptr);
881         /// void FundingSigned_set_signature(LDKFundingSigned *this_ptr, LDKSignature val);
882         public static native void FundingSigned_set_signature(long this_ptr, long val);
883         /// MUST_USE_RES LDKFundingSigned FundingSigned_new(LDKThirtyTwoBytes channel_id_arg, LDKSignature signature_arg);
884         public static native long FundingSigned_new(long channel_id_arg, long signature_arg);
885         /// void FundingLocked_free(LDKFundingLocked this_ptr);
886         public static native void FundingLocked_free(long this_ptr);
887         /// const uint8_t (*FundingLocked_get_channel_id(const LDKFundingLocked *this_ptr))[32];
888         public static native byte[] FundingLocked_get_channel_id(long this_ptr);
889         /// void FundingLocked_set_channel_id(LDKFundingLocked *this_ptr, LDKThirtyTwoBytes val);
890         public static native void FundingLocked_set_channel_id(long this_ptr, long val);
891         /// LDKPublicKey FundingLocked_get_next_per_commitment_point(const LDKFundingLocked *this_ptr);
892         public static native long FundingLocked_get_next_per_commitment_point(long this_ptr);
893         /// void FundingLocked_set_next_per_commitment_point(LDKFundingLocked *this_ptr, LDKPublicKey val);
894         public static native void FundingLocked_set_next_per_commitment_point(long this_ptr, long val);
895         /// MUST_USE_RES LDKFundingLocked FundingLocked_new(LDKThirtyTwoBytes channel_id_arg, LDKPublicKey next_per_commitment_point_arg);
896         public static native long FundingLocked_new(long channel_id_arg, long next_per_commitment_point_arg);
897         /// void Shutdown_free(LDKShutdown this_ptr);
898         public static native void Shutdown_free(long this_ptr);
899         /// const uint8_t (*Shutdown_get_channel_id(const LDKShutdown *this_ptr))[32];
900         public static native byte[] Shutdown_get_channel_id(long this_ptr);
901         /// void Shutdown_set_channel_id(LDKShutdown *this_ptr, LDKThirtyTwoBytes val);
902         public static native void Shutdown_set_channel_id(long this_ptr, long val);
903         /// LDKu8slice Shutdown_get_scriptpubkey(const LDKShutdown *this_ptr);
904         public static native long Shutdown_get_scriptpubkey(long this_ptr);
905         /// void Shutdown_set_scriptpubkey(LDKShutdown *this_ptr, LDKCVec_u8Z val);
906         public static native void Shutdown_set_scriptpubkey(long this_ptr, long val);
907         /// MUST_USE_RES LDKShutdown Shutdown_new(LDKThirtyTwoBytes channel_id_arg, LDKCVec_u8Z scriptpubkey_arg);
908         public static native long Shutdown_new(long channel_id_arg, long scriptpubkey_arg);
909         /// void ClosingSigned_free(LDKClosingSigned this_ptr);
910         public static native void ClosingSigned_free(long this_ptr);
911         /// const uint8_t (*ClosingSigned_get_channel_id(const LDKClosingSigned *this_ptr))[32];
912         public static native byte[] ClosingSigned_get_channel_id(long this_ptr);
913         /// void ClosingSigned_set_channel_id(LDKClosingSigned *this_ptr, LDKThirtyTwoBytes val);
914         public static native void ClosingSigned_set_channel_id(long this_ptr, long val);
915         /// uint64_t ClosingSigned_get_fee_satoshis(const LDKClosingSigned *this_ptr);
916         public static native long ClosingSigned_get_fee_satoshis(long this_ptr);
917         /// void ClosingSigned_set_fee_satoshis(LDKClosingSigned *this_ptr, uint64_t val);
918         public static native void ClosingSigned_set_fee_satoshis(long this_ptr, long val);
919         /// LDKSignature ClosingSigned_get_signature(const LDKClosingSigned *this_ptr);
920         public static native long ClosingSigned_get_signature(long this_ptr);
921         /// void ClosingSigned_set_signature(LDKClosingSigned *this_ptr, LDKSignature val);
922         public static native void ClosingSigned_set_signature(long this_ptr, long val);
923         /// MUST_USE_RES LDKClosingSigned ClosingSigned_new(LDKThirtyTwoBytes channel_id_arg, uint64_t fee_satoshis_arg, LDKSignature signature_arg);
924         public static native long ClosingSigned_new(long channel_id_arg, long fee_satoshis_arg, long signature_arg);
925         /// void UpdateAddHTLC_free(LDKUpdateAddHTLC this_ptr);
926         public static native void UpdateAddHTLC_free(long this_ptr);
927         /// const uint8_t (*UpdateAddHTLC_get_channel_id(const LDKUpdateAddHTLC *this_ptr))[32];
928         public static native byte[] UpdateAddHTLC_get_channel_id(long this_ptr);
929         /// void UpdateAddHTLC_set_channel_id(LDKUpdateAddHTLC *this_ptr, LDKThirtyTwoBytes val);
930         public static native void UpdateAddHTLC_set_channel_id(long this_ptr, long val);
931         /// uint64_t UpdateAddHTLC_get_htlc_id(const LDKUpdateAddHTLC *this_ptr);
932         public static native long UpdateAddHTLC_get_htlc_id(long this_ptr);
933         /// void UpdateAddHTLC_set_htlc_id(LDKUpdateAddHTLC *this_ptr, uint64_t val);
934         public static native void UpdateAddHTLC_set_htlc_id(long this_ptr, long val);
935         /// uint64_t UpdateAddHTLC_get_amount_msat(const LDKUpdateAddHTLC *this_ptr);
936         public static native long UpdateAddHTLC_get_amount_msat(long this_ptr);
937         /// void UpdateAddHTLC_set_amount_msat(LDKUpdateAddHTLC *this_ptr, uint64_t val);
938         public static native void UpdateAddHTLC_set_amount_msat(long this_ptr, long val);
939         /// const uint8_t (*UpdateAddHTLC_get_payment_hash(const LDKUpdateAddHTLC *this_ptr))[32];
940         public static native byte[] UpdateAddHTLC_get_payment_hash(long this_ptr);
941         /// void UpdateAddHTLC_set_payment_hash(LDKUpdateAddHTLC *this_ptr, LDKThirtyTwoBytes val);
942         public static native void UpdateAddHTLC_set_payment_hash(long this_ptr, long val);
943         /// uint32_t UpdateAddHTLC_get_cltv_expiry(const LDKUpdateAddHTLC *this_ptr);
944         public static native int UpdateAddHTLC_get_cltv_expiry(long this_ptr);
945         /// void UpdateAddHTLC_set_cltv_expiry(LDKUpdateAddHTLC *this_ptr, uint32_t val);
946         public static native void UpdateAddHTLC_set_cltv_expiry(long this_ptr, int val);
947         /// void UpdateFulfillHTLC_free(LDKUpdateFulfillHTLC this_ptr);
948         public static native void UpdateFulfillHTLC_free(long this_ptr);
949         /// const uint8_t (*UpdateFulfillHTLC_get_channel_id(const LDKUpdateFulfillHTLC *this_ptr))[32];
950         public static native byte[] UpdateFulfillHTLC_get_channel_id(long this_ptr);
951         /// void UpdateFulfillHTLC_set_channel_id(LDKUpdateFulfillHTLC *this_ptr, LDKThirtyTwoBytes val);
952         public static native void UpdateFulfillHTLC_set_channel_id(long this_ptr, long val);
953         /// uint64_t UpdateFulfillHTLC_get_htlc_id(const LDKUpdateFulfillHTLC *this_ptr);
954         public static native long UpdateFulfillHTLC_get_htlc_id(long this_ptr);
955         /// void UpdateFulfillHTLC_set_htlc_id(LDKUpdateFulfillHTLC *this_ptr, uint64_t val);
956         public static native void UpdateFulfillHTLC_set_htlc_id(long this_ptr, long val);
957         /// const uint8_t (*UpdateFulfillHTLC_get_payment_preimage(const LDKUpdateFulfillHTLC *this_ptr))[32];
958         public static native byte[] UpdateFulfillHTLC_get_payment_preimage(long this_ptr);
959         /// void UpdateFulfillHTLC_set_payment_preimage(LDKUpdateFulfillHTLC *this_ptr, LDKThirtyTwoBytes val);
960         public static native void UpdateFulfillHTLC_set_payment_preimage(long this_ptr, long val);
961         /// MUST_USE_RES LDKUpdateFulfillHTLC UpdateFulfillHTLC_new(LDKThirtyTwoBytes channel_id_arg, uint64_t htlc_id_arg, LDKThirtyTwoBytes payment_preimage_arg);
962         public static native long UpdateFulfillHTLC_new(long channel_id_arg, long htlc_id_arg, long payment_preimage_arg);
963         /// void UpdateFailHTLC_free(LDKUpdateFailHTLC this_ptr);
964         public static native void UpdateFailHTLC_free(long this_ptr);
965         /// const uint8_t (*UpdateFailHTLC_get_channel_id(const LDKUpdateFailHTLC *this_ptr))[32];
966         public static native byte[] UpdateFailHTLC_get_channel_id(long this_ptr);
967         /// void UpdateFailHTLC_set_channel_id(LDKUpdateFailHTLC *this_ptr, LDKThirtyTwoBytes val);
968         public static native void UpdateFailHTLC_set_channel_id(long this_ptr, long val);
969         /// uint64_t UpdateFailHTLC_get_htlc_id(const LDKUpdateFailHTLC *this_ptr);
970         public static native long UpdateFailHTLC_get_htlc_id(long this_ptr);
971         /// void UpdateFailHTLC_set_htlc_id(LDKUpdateFailHTLC *this_ptr, uint64_t val);
972         public static native void UpdateFailHTLC_set_htlc_id(long this_ptr, long val);
973         /// void UpdateFailMalformedHTLC_free(LDKUpdateFailMalformedHTLC this_ptr);
974         public static native void UpdateFailMalformedHTLC_free(long this_ptr);
975         /// const uint8_t (*UpdateFailMalformedHTLC_get_channel_id(const LDKUpdateFailMalformedHTLC *this_ptr))[32];
976         public static native byte[] UpdateFailMalformedHTLC_get_channel_id(long this_ptr);
977         /// void UpdateFailMalformedHTLC_set_channel_id(LDKUpdateFailMalformedHTLC *this_ptr, LDKThirtyTwoBytes val);
978         public static native void UpdateFailMalformedHTLC_set_channel_id(long this_ptr, long val);
979         /// uint64_t UpdateFailMalformedHTLC_get_htlc_id(const LDKUpdateFailMalformedHTLC *this_ptr);
980         public static native long UpdateFailMalformedHTLC_get_htlc_id(long this_ptr);
981         /// void UpdateFailMalformedHTLC_set_htlc_id(LDKUpdateFailMalformedHTLC *this_ptr, uint64_t val);
982         public static native void UpdateFailMalformedHTLC_set_htlc_id(long this_ptr, long val);
983         /// uint16_t UpdateFailMalformedHTLC_get_failure_code(const LDKUpdateFailMalformedHTLC *this_ptr);
984         public static native short UpdateFailMalformedHTLC_get_failure_code(long this_ptr);
985         /// void UpdateFailMalformedHTLC_set_failure_code(LDKUpdateFailMalformedHTLC *this_ptr, uint16_t val);
986         public static native void UpdateFailMalformedHTLC_set_failure_code(long this_ptr, short val);
987         /// void CommitmentSigned_free(LDKCommitmentSigned this_ptr);
988         public static native void CommitmentSigned_free(long this_ptr);
989         /// const uint8_t (*CommitmentSigned_get_channel_id(const LDKCommitmentSigned *this_ptr))[32];
990         public static native byte[] CommitmentSigned_get_channel_id(long this_ptr);
991         /// void CommitmentSigned_set_channel_id(LDKCommitmentSigned *this_ptr, LDKThirtyTwoBytes val);
992         public static native void CommitmentSigned_set_channel_id(long this_ptr, long val);
993         /// LDKSignature CommitmentSigned_get_signature(const LDKCommitmentSigned *this_ptr);
994         public static native long CommitmentSigned_get_signature(long this_ptr);
995         /// void CommitmentSigned_set_signature(LDKCommitmentSigned *this_ptr, LDKSignature val);
996         public static native void CommitmentSigned_set_signature(long this_ptr, long val);
997         /// void CommitmentSigned_set_htlc_signatures(LDKCommitmentSigned *this_ptr, LDKCVec_SignatureZ val);
998         public static native void CommitmentSigned_set_htlc_signatures(long this_ptr, long val);
999         /// MUST_USE_RES LDKCommitmentSigned CommitmentSigned_new(LDKThirtyTwoBytes channel_id_arg, LDKSignature signature_arg, LDKCVec_SignatureZ htlc_signatures_arg);
1000         public static native long CommitmentSigned_new(long channel_id_arg, long signature_arg, long htlc_signatures_arg);
1001         /// void RevokeAndACK_free(LDKRevokeAndACK this_ptr);
1002         public static native void RevokeAndACK_free(long this_ptr);
1003         /// const uint8_t (*RevokeAndACK_get_channel_id(const LDKRevokeAndACK *this_ptr))[32];
1004         public static native byte[] RevokeAndACK_get_channel_id(long this_ptr);
1005         /// void RevokeAndACK_set_channel_id(LDKRevokeAndACK *this_ptr, LDKThirtyTwoBytes val);
1006         public static native void RevokeAndACK_set_channel_id(long this_ptr, long val);
1007         /// const uint8_t (*RevokeAndACK_get_per_commitment_secret(const LDKRevokeAndACK *this_ptr))[32];
1008         public static native byte[] RevokeAndACK_get_per_commitment_secret(long this_ptr);
1009         /// void RevokeAndACK_set_per_commitment_secret(LDKRevokeAndACK *this_ptr, LDKThirtyTwoBytes val);
1010         public static native void RevokeAndACK_set_per_commitment_secret(long this_ptr, long val);
1011         /// LDKPublicKey RevokeAndACK_get_next_per_commitment_point(const LDKRevokeAndACK *this_ptr);
1012         public static native long RevokeAndACK_get_next_per_commitment_point(long this_ptr);
1013         /// void RevokeAndACK_set_next_per_commitment_point(LDKRevokeAndACK *this_ptr, LDKPublicKey val);
1014         public static native void RevokeAndACK_set_next_per_commitment_point(long this_ptr, long val);
1015         /// MUST_USE_RES LDKRevokeAndACK RevokeAndACK_new(LDKThirtyTwoBytes channel_id_arg, LDKThirtyTwoBytes per_commitment_secret_arg, LDKPublicKey next_per_commitment_point_arg);
1016         public static native long RevokeAndACK_new(long channel_id_arg, long per_commitment_secret_arg, long next_per_commitment_point_arg);
1017         /// void UpdateFee_free(LDKUpdateFee this_ptr);
1018         public static native void UpdateFee_free(long this_ptr);
1019         /// const uint8_t (*UpdateFee_get_channel_id(const LDKUpdateFee *this_ptr))[32];
1020         public static native byte[] UpdateFee_get_channel_id(long this_ptr);
1021         /// void UpdateFee_set_channel_id(LDKUpdateFee *this_ptr, LDKThirtyTwoBytes val);
1022         public static native void UpdateFee_set_channel_id(long this_ptr, long val);
1023         /// uint32_t UpdateFee_get_feerate_per_kw(const LDKUpdateFee *this_ptr);
1024         public static native int UpdateFee_get_feerate_per_kw(long this_ptr);
1025         /// void UpdateFee_set_feerate_per_kw(LDKUpdateFee *this_ptr, uint32_t val);
1026         public static native void UpdateFee_set_feerate_per_kw(long this_ptr, int val);
1027         /// MUST_USE_RES LDKUpdateFee UpdateFee_new(LDKThirtyTwoBytes channel_id_arg, uint32_t feerate_per_kw_arg);
1028         public static native long UpdateFee_new(long channel_id_arg, int feerate_per_kw_arg);
1029         /// void DataLossProtect_free(LDKDataLossProtect this_ptr);
1030         public static native void DataLossProtect_free(long this_ptr);
1031         /// const uint8_t (*DataLossProtect_get_your_last_per_commitment_secret(const LDKDataLossProtect *this_ptr))[32];
1032         public static native byte[] DataLossProtect_get_your_last_per_commitment_secret(long this_ptr);
1033         /// void DataLossProtect_set_your_last_per_commitment_secret(LDKDataLossProtect *this_ptr, LDKThirtyTwoBytes val);
1034         public static native void DataLossProtect_set_your_last_per_commitment_secret(long this_ptr, long val);
1035         /// LDKPublicKey DataLossProtect_get_my_current_per_commitment_point(const LDKDataLossProtect *this_ptr);
1036         public static native long DataLossProtect_get_my_current_per_commitment_point(long this_ptr);
1037         /// void DataLossProtect_set_my_current_per_commitment_point(LDKDataLossProtect *this_ptr, LDKPublicKey val);
1038         public static native void DataLossProtect_set_my_current_per_commitment_point(long this_ptr, long val);
1039         /// MUST_USE_RES LDKDataLossProtect DataLossProtect_new(LDKThirtyTwoBytes your_last_per_commitment_secret_arg, LDKPublicKey my_current_per_commitment_point_arg);
1040         public static native long DataLossProtect_new(long your_last_per_commitment_secret_arg, long my_current_per_commitment_point_arg);
1041         /// void ChannelReestablish_free(LDKChannelReestablish this_ptr);
1042         public static native void ChannelReestablish_free(long this_ptr);
1043         /// const uint8_t (*ChannelReestablish_get_channel_id(const LDKChannelReestablish *this_ptr))[32];
1044         public static native byte[] ChannelReestablish_get_channel_id(long this_ptr);
1045         /// void ChannelReestablish_set_channel_id(LDKChannelReestablish *this_ptr, LDKThirtyTwoBytes val);
1046         public static native void ChannelReestablish_set_channel_id(long this_ptr, long val);
1047         /// uint64_t ChannelReestablish_get_next_local_commitment_number(const LDKChannelReestablish *this_ptr);
1048         public static native long ChannelReestablish_get_next_local_commitment_number(long this_ptr);
1049         /// void ChannelReestablish_set_next_local_commitment_number(LDKChannelReestablish *this_ptr, uint64_t val);
1050         public static native void ChannelReestablish_set_next_local_commitment_number(long this_ptr, long val);
1051         /// uint64_t ChannelReestablish_get_next_remote_commitment_number(const LDKChannelReestablish *this_ptr);
1052         public static native long ChannelReestablish_get_next_remote_commitment_number(long this_ptr);
1053         /// void ChannelReestablish_set_next_remote_commitment_number(LDKChannelReestablish *this_ptr, uint64_t val);
1054         public static native void ChannelReestablish_set_next_remote_commitment_number(long this_ptr, long val);
1055         /// void AnnouncementSignatures_free(LDKAnnouncementSignatures this_ptr);
1056         public static native void AnnouncementSignatures_free(long this_ptr);
1057         /// const uint8_t (*AnnouncementSignatures_get_channel_id(const LDKAnnouncementSignatures *this_ptr))[32];
1058         public static native byte[] AnnouncementSignatures_get_channel_id(long this_ptr);
1059         /// void AnnouncementSignatures_set_channel_id(LDKAnnouncementSignatures *this_ptr, LDKThirtyTwoBytes val);
1060         public static native void AnnouncementSignatures_set_channel_id(long this_ptr, long val);
1061         /// uint64_t AnnouncementSignatures_get_short_channel_id(const LDKAnnouncementSignatures *this_ptr);
1062         public static native long AnnouncementSignatures_get_short_channel_id(long this_ptr);
1063         /// void AnnouncementSignatures_set_short_channel_id(LDKAnnouncementSignatures *this_ptr, uint64_t val);
1064         public static native void AnnouncementSignatures_set_short_channel_id(long this_ptr, long val);
1065         /// LDKSignature AnnouncementSignatures_get_node_signature(const LDKAnnouncementSignatures *this_ptr);
1066         public static native long AnnouncementSignatures_get_node_signature(long this_ptr);
1067         /// void AnnouncementSignatures_set_node_signature(LDKAnnouncementSignatures *this_ptr, LDKSignature val);
1068         public static native void AnnouncementSignatures_set_node_signature(long this_ptr, long val);
1069         /// LDKSignature AnnouncementSignatures_get_bitcoin_signature(const LDKAnnouncementSignatures *this_ptr);
1070         public static native long AnnouncementSignatures_get_bitcoin_signature(long this_ptr);
1071         /// void AnnouncementSignatures_set_bitcoin_signature(LDKAnnouncementSignatures *this_ptr, LDKSignature val);
1072         public static native void AnnouncementSignatures_set_bitcoin_signature(long this_ptr, long val);
1073         /// MUST_USE_RES LDKAnnouncementSignatures AnnouncementSignatures_new(LDKThirtyTwoBytes channel_id_arg, uint64_t short_channel_id_arg, LDKSignature node_signature_arg, LDKSignature bitcoin_signature_arg);
1074         public static native long AnnouncementSignatures_new(long channel_id_arg, long short_channel_id_arg, long node_signature_arg, long bitcoin_signature_arg);
1075         /// void NetAddress_free(LDKNetAddress this_ptr);
1076         public static native void NetAddress_free(long this_ptr);
1077         /// void UnsignedNodeAnnouncement_free(LDKUnsignedNodeAnnouncement this_ptr);
1078         public static native void UnsignedNodeAnnouncement_free(long this_ptr);
1079         /// uint32_t UnsignedNodeAnnouncement_get_timestamp(const LDKUnsignedNodeAnnouncement *this_ptr);
1080         public static native int UnsignedNodeAnnouncement_get_timestamp(long this_ptr);
1081         /// void UnsignedNodeAnnouncement_set_timestamp(LDKUnsignedNodeAnnouncement *this_ptr, uint32_t val);
1082         public static native void UnsignedNodeAnnouncement_set_timestamp(long this_ptr, int val);
1083         /// LDKPublicKey UnsignedNodeAnnouncement_get_node_id(const LDKUnsignedNodeAnnouncement *this_ptr);
1084         public static native long UnsignedNodeAnnouncement_get_node_id(long this_ptr);
1085         /// void UnsignedNodeAnnouncement_set_node_id(LDKUnsignedNodeAnnouncement *this_ptr, LDKPublicKey val);
1086         public static native void UnsignedNodeAnnouncement_set_node_id(long this_ptr, long val);
1087         /// const uint8_t (*UnsignedNodeAnnouncement_get_rgb(const LDKUnsignedNodeAnnouncement *this_ptr))[3];
1088         public static native byte[] UnsignedNodeAnnouncement_get_rgb(long this_ptr);
1089         /// void UnsignedNodeAnnouncement_set_rgb(LDKUnsignedNodeAnnouncement *this_ptr, LDKThreeBytes val);
1090         public static native void UnsignedNodeAnnouncement_set_rgb(long this_ptr, long val);
1091         /// const uint8_t (*UnsignedNodeAnnouncement_get_alias(const LDKUnsignedNodeAnnouncement *this_ptr))[32];
1092         public static native byte[] UnsignedNodeAnnouncement_get_alias(long this_ptr);
1093         /// void UnsignedNodeAnnouncement_set_alias(LDKUnsignedNodeAnnouncement *this_ptr, LDKThirtyTwoBytes val);
1094         public static native void UnsignedNodeAnnouncement_set_alias(long this_ptr, long val);
1095         /// void UnsignedNodeAnnouncement_set_addresses(LDKUnsignedNodeAnnouncement *this_ptr, LDKCVec_NetAddressZ val);
1096         public static native void UnsignedNodeAnnouncement_set_addresses(long this_ptr, long val);
1097         /// void NodeAnnouncement_free(LDKNodeAnnouncement this_ptr);
1098         public static native void NodeAnnouncement_free(long this_ptr);
1099         /// LDKSignature NodeAnnouncement_get_signature(const LDKNodeAnnouncement *this_ptr);
1100         public static native long NodeAnnouncement_get_signature(long this_ptr);
1101         /// void NodeAnnouncement_set_signature(LDKNodeAnnouncement *this_ptr, LDKSignature val);
1102         public static native void NodeAnnouncement_set_signature(long this_ptr, long val);
1103         /// LDKUnsignedNodeAnnouncement NodeAnnouncement_get_contents(const LDKNodeAnnouncement *this_ptr);
1104         public static native long NodeAnnouncement_get_contents(long this_ptr);
1105         /// void NodeAnnouncement_set_contents(LDKNodeAnnouncement *this_ptr, LDKUnsignedNodeAnnouncement val);
1106         public static native void NodeAnnouncement_set_contents(long this_ptr, long val);
1107         /// MUST_USE_RES LDKNodeAnnouncement NodeAnnouncement_new(LDKSignature signature_arg, LDKUnsignedNodeAnnouncement contents_arg);
1108         public static native long NodeAnnouncement_new(long signature_arg, long contents_arg);
1109         /// void UnsignedChannelAnnouncement_free(LDKUnsignedChannelAnnouncement this_ptr);
1110         public static native void UnsignedChannelAnnouncement_free(long this_ptr);
1111         /// const uint8_t (*UnsignedChannelAnnouncement_get_chain_hash(const LDKUnsignedChannelAnnouncement *this_ptr))[32];
1112         public static native byte[] UnsignedChannelAnnouncement_get_chain_hash(long this_ptr);
1113         /// void UnsignedChannelAnnouncement_set_chain_hash(LDKUnsignedChannelAnnouncement *this_ptr, LDKThirtyTwoBytes val);
1114         public static native void UnsignedChannelAnnouncement_set_chain_hash(long this_ptr, long val);
1115         /// uint64_t UnsignedChannelAnnouncement_get_short_channel_id(const LDKUnsignedChannelAnnouncement *this_ptr);
1116         public static native long UnsignedChannelAnnouncement_get_short_channel_id(long this_ptr);
1117         /// void UnsignedChannelAnnouncement_set_short_channel_id(LDKUnsignedChannelAnnouncement *this_ptr, uint64_t val);
1118         public static native void UnsignedChannelAnnouncement_set_short_channel_id(long this_ptr, long val);
1119         /// LDKPublicKey UnsignedChannelAnnouncement_get_node_id_1(const LDKUnsignedChannelAnnouncement *this_ptr);
1120         public static native long UnsignedChannelAnnouncement_get_node_id_1(long this_ptr);
1121         /// void UnsignedChannelAnnouncement_set_node_id_1(LDKUnsignedChannelAnnouncement *this_ptr, LDKPublicKey val);
1122         public static native void UnsignedChannelAnnouncement_set_node_id_1(long this_ptr, long val);
1123         /// LDKPublicKey UnsignedChannelAnnouncement_get_node_id_2(const LDKUnsignedChannelAnnouncement *this_ptr);
1124         public static native long UnsignedChannelAnnouncement_get_node_id_2(long this_ptr);
1125         /// void UnsignedChannelAnnouncement_set_node_id_2(LDKUnsignedChannelAnnouncement *this_ptr, LDKPublicKey val);
1126         public static native void UnsignedChannelAnnouncement_set_node_id_2(long this_ptr, long val);
1127         /// LDKPublicKey UnsignedChannelAnnouncement_get_bitcoin_key_1(const LDKUnsignedChannelAnnouncement *this_ptr);
1128         public static native long UnsignedChannelAnnouncement_get_bitcoin_key_1(long this_ptr);
1129         /// void UnsignedChannelAnnouncement_set_bitcoin_key_1(LDKUnsignedChannelAnnouncement *this_ptr, LDKPublicKey val);
1130         public static native void UnsignedChannelAnnouncement_set_bitcoin_key_1(long this_ptr, long val);
1131         /// LDKPublicKey UnsignedChannelAnnouncement_get_bitcoin_key_2(const LDKUnsignedChannelAnnouncement *this_ptr);
1132         public static native long UnsignedChannelAnnouncement_get_bitcoin_key_2(long this_ptr);
1133         /// void UnsignedChannelAnnouncement_set_bitcoin_key_2(LDKUnsignedChannelAnnouncement *this_ptr, LDKPublicKey val);
1134         public static native void UnsignedChannelAnnouncement_set_bitcoin_key_2(long this_ptr, long val);
1135         /// void ChannelAnnouncement_free(LDKChannelAnnouncement this_ptr);
1136         public static native void ChannelAnnouncement_free(long this_ptr);
1137         /// LDKSignature ChannelAnnouncement_get_node_signature_1(const LDKChannelAnnouncement *this_ptr);
1138         public static native long ChannelAnnouncement_get_node_signature_1(long this_ptr);
1139         /// void ChannelAnnouncement_set_node_signature_1(LDKChannelAnnouncement *this_ptr, LDKSignature val);
1140         public static native void ChannelAnnouncement_set_node_signature_1(long this_ptr, long val);
1141         /// LDKSignature ChannelAnnouncement_get_node_signature_2(const LDKChannelAnnouncement *this_ptr);
1142         public static native long ChannelAnnouncement_get_node_signature_2(long this_ptr);
1143         /// void ChannelAnnouncement_set_node_signature_2(LDKChannelAnnouncement *this_ptr, LDKSignature val);
1144         public static native void ChannelAnnouncement_set_node_signature_2(long this_ptr, long val);
1145         /// LDKSignature ChannelAnnouncement_get_bitcoin_signature_1(const LDKChannelAnnouncement *this_ptr);
1146         public static native long ChannelAnnouncement_get_bitcoin_signature_1(long this_ptr);
1147         /// void ChannelAnnouncement_set_bitcoin_signature_1(LDKChannelAnnouncement *this_ptr, LDKSignature val);
1148         public static native void ChannelAnnouncement_set_bitcoin_signature_1(long this_ptr, long val);
1149         /// LDKSignature ChannelAnnouncement_get_bitcoin_signature_2(const LDKChannelAnnouncement *this_ptr);
1150         public static native long ChannelAnnouncement_get_bitcoin_signature_2(long this_ptr);
1151         /// void ChannelAnnouncement_set_bitcoin_signature_2(LDKChannelAnnouncement *this_ptr, LDKSignature val);
1152         public static native void ChannelAnnouncement_set_bitcoin_signature_2(long this_ptr, long val);
1153         /// LDKUnsignedChannelAnnouncement ChannelAnnouncement_get_contents(const LDKChannelAnnouncement *this_ptr);
1154         public static native long ChannelAnnouncement_get_contents(long this_ptr);
1155         /// void ChannelAnnouncement_set_contents(LDKChannelAnnouncement *this_ptr, LDKUnsignedChannelAnnouncement val);
1156         public static native void ChannelAnnouncement_set_contents(long this_ptr, long val);
1157         /// MUST_USE_RES LDKChannelAnnouncement ChannelAnnouncement_new(LDKSignature node_signature_1_arg, LDKSignature node_signature_2_arg, LDKSignature bitcoin_signature_1_arg, LDKSignature bitcoin_signature_2_arg, LDKUnsignedChannelAnnouncement contents_arg);
1158         public static native long ChannelAnnouncement_new(long node_signature_1_arg, long node_signature_2_arg, long bitcoin_signature_1_arg, long bitcoin_signature_2_arg, long contents_arg);
1159         /// void UnsignedChannelUpdate_free(LDKUnsignedChannelUpdate this_ptr);
1160         public static native void UnsignedChannelUpdate_free(long this_ptr);
1161         /// const uint8_t (*UnsignedChannelUpdate_get_chain_hash(const LDKUnsignedChannelUpdate *this_ptr))[32];
1162         public static native byte[] UnsignedChannelUpdate_get_chain_hash(long this_ptr);
1163         /// void UnsignedChannelUpdate_set_chain_hash(LDKUnsignedChannelUpdate *this_ptr, LDKThirtyTwoBytes val);
1164         public static native void UnsignedChannelUpdate_set_chain_hash(long this_ptr, long val);
1165         /// uint64_t UnsignedChannelUpdate_get_short_channel_id(const LDKUnsignedChannelUpdate *this_ptr);
1166         public static native long UnsignedChannelUpdate_get_short_channel_id(long this_ptr);
1167         /// void UnsignedChannelUpdate_set_short_channel_id(LDKUnsignedChannelUpdate *this_ptr, uint64_t val);
1168         public static native void UnsignedChannelUpdate_set_short_channel_id(long this_ptr, long val);
1169         /// uint32_t UnsignedChannelUpdate_get_timestamp(const LDKUnsignedChannelUpdate *this_ptr);
1170         public static native int UnsignedChannelUpdate_get_timestamp(long this_ptr);
1171         /// void UnsignedChannelUpdate_set_timestamp(LDKUnsignedChannelUpdate *this_ptr, uint32_t val);
1172         public static native void UnsignedChannelUpdate_set_timestamp(long this_ptr, int val);
1173         /// uint8_t UnsignedChannelUpdate_get_flags(const LDKUnsignedChannelUpdate *this_ptr);
1174         public static native byte UnsignedChannelUpdate_get_flags(long this_ptr);
1175         /// void UnsignedChannelUpdate_set_flags(LDKUnsignedChannelUpdate *this_ptr, uint8_t val);
1176         public static native void UnsignedChannelUpdate_set_flags(long this_ptr, byte val);
1177         /// uint16_t UnsignedChannelUpdate_get_cltv_expiry_delta(const LDKUnsignedChannelUpdate *this_ptr);
1178         public static native short UnsignedChannelUpdate_get_cltv_expiry_delta(long this_ptr);
1179         /// void UnsignedChannelUpdate_set_cltv_expiry_delta(LDKUnsignedChannelUpdate *this_ptr, uint16_t val);
1180         public static native void UnsignedChannelUpdate_set_cltv_expiry_delta(long this_ptr, short val);
1181         /// uint64_t UnsignedChannelUpdate_get_htlc_minimum_msat(const LDKUnsignedChannelUpdate *this_ptr);
1182         public static native long UnsignedChannelUpdate_get_htlc_minimum_msat(long this_ptr);
1183         /// void UnsignedChannelUpdate_set_htlc_minimum_msat(LDKUnsignedChannelUpdate *this_ptr, uint64_t val);
1184         public static native void UnsignedChannelUpdate_set_htlc_minimum_msat(long this_ptr, long val);
1185         /// uint32_t UnsignedChannelUpdate_get_fee_base_msat(const LDKUnsignedChannelUpdate *this_ptr);
1186         public static native int UnsignedChannelUpdate_get_fee_base_msat(long this_ptr);
1187         /// void UnsignedChannelUpdate_set_fee_base_msat(LDKUnsignedChannelUpdate *this_ptr, uint32_t val);
1188         public static native void UnsignedChannelUpdate_set_fee_base_msat(long this_ptr, int val);
1189         /// uint32_t UnsignedChannelUpdate_get_fee_proportional_millionths(const LDKUnsignedChannelUpdate *this_ptr);
1190         public static native int UnsignedChannelUpdate_get_fee_proportional_millionths(long this_ptr);
1191         /// void UnsignedChannelUpdate_set_fee_proportional_millionths(LDKUnsignedChannelUpdate *this_ptr, uint32_t val);
1192         public static native void UnsignedChannelUpdate_set_fee_proportional_millionths(long this_ptr, int val);
1193         /// void ChannelUpdate_free(LDKChannelUpdate this_ptr);
1194         public static native void ChannelUpdate_free(long this_ptr);
1195         /// LDKSignature ChannelUpdate_get_signature(const LDKChannelUpdate *this_ptr);
1196         public static native long ChannelUpdate_get_signature(long this_ptr);
1197         /// void ChannelUpdate_set_signature(LDKChannelUpdate *this_ptr, LDKSignature val);
1198         public static native void ChannelUpdate_set_signature(long this_ptr, long val);
1199         /// LDKUnsignedChannelUpdate ChannelUpdate_get_contents(const LDKChannelUpdate *this_ptr);
1200         public static native long ChannelUpdate_get_contents(long this_ptr);
1201         /// void ChannelUpdate_set_contents(LDKChannelUpdate *this_ptr, LDKUnsignedChannelUpdate val);
1202         public static native void ChannelUpdate_set_contents(long this_ptr, long val);
1203         /// MUST_USE_RES LDKChannelUpdate ChannelUpdate_new(LDKSignature signature_arg, LDKUnsignedChannelUpdate contents_arg);
1204         public static native long ChannelUpdate_new(long signature_arg, long contents_arg);
1205         /// void ErrorAction_free(LDKErrorAction this_ptr);
1206         public static native void ErrorAction_free(long this_ptr);
1207         /// void LightningError_free(LDKLightningError this_ptr);
1208         public static native void LightningError_free(long this_ptr);
1209         /// LDKStr LightningError_get_err(const LDKLightningError *this_ptr);
1210         public static native long LightningError_get_err(long this_ptr);
1211         /// void LightningError_set_err(LDKLightningError *this_ptr, LDKCVec_u8Z val);
1212         public static native void LightningError_set_err(long this_ptr, long val);
1213         /// LDKErrorAction LightningError_get_action(const LDKLightningError *this_ptr);
1214         public static native long LightningError_get_action(long this_ptr);
1215         /// void LightningError_set_action(LDKLightningError *this_ptr, LDKErrorAction val);
1216         public static native void LightningError_set_action(long this_ptr, long val);
1217         /// MUST_USE_RES LDKLightningError LightningError_new(LDKCVec_u8Z err_arg, LDKErrorAction action_arg);
1218         public static native long LightningError_new(long err_arg, long action_arg);
1219         /// void CommitmentUpdate_free(LDKCommitmentUpdate this_ptr);
1220         public static native void CommitmentUpdate_free(long this_ptr);
1221         /// void CommitmentUpdate_set_update_add_htlcs(LDKCommitmentUpdate *this_ptr, LDKCVec_UpdateAddHTLCZ val);
1222         public static native void CommitmentUpdate_set_update_add_htlcs(long this_ptr, long val);
1223         /// void CommitmentUpdate_set_update_fulfill_htlcs(LDKCommitmentUpdate *this_ptr, LDKCVec_UpdateFulfillHTLCZ val);
1224         public static native void CommitmentUpdate_set_update_fulfill_htlcs(long this_ptr, long val);
1225         /// void CommitmentUpdate_set_update_fail_htlcs(LDKCommitmentUpdate *this_ptr, LDKCVec_UpdateFailHTLCZ val);
1226         public static native void CommitmentUpdate_set_update_fail_htlcs(long this_ptr, long val);
1227         /// void CommitmentUpdate_set_update_fail_malformed_htlcs(LDKCommitmentUpdate *this_ptr, LDKCVec_UpdateFailMalformedHTLCZ val);
1228         public static native void CommitmentUpdate_set_update_fail_malformed_htlcs(long this_ptr, long val);
1229         /// LDKUpdateFee CommitmentUpdate_get_update_fee(const LDKCommitmentUpdate *this_ptr);
1230         public static native long CommitmentUpdate_get_update_fee(long this_ptr);
1231         /// void CommitmentUpdate_set_update_fee(LDKCommitmentUpdate *this_ptr, LDKUpdateFee val);
1232         public static native void CommitmentUpdate_set_update_fee(long this_ptr, long val);
1233         /// LDKCommitmentSigned CommitmentUpdate_get_commitment_signed(const LDKCommitmentUpdate *this_ptr);
1234         public static native long CommitmentUpdate_get_commitment_signed(long this_ptr);
1235         /// void CommitmentUpdate_set_commitment_signed(LDKCommitmentUpdate *this_ptr, LDKCommitmentSigned val);
1236         public static native void CommitmentUpdate_set_commitment_signed(long this_ptr, long val);
1237         /// MUST_USE_RES LDKCommitmentUpdate CommitmentUpdate_new(LDKCVec_UpdateAddHTLCZ update_add_htlcs_arg, LDKCVec_UpdateFulfillHTLCZ update_fulfill_htlcs_arg, LDKCVec_UpdateFailHTLCZ update_fail_htlcs_arg, LDKCVec_UpdateFailMalformedHTLCZ update_fail_malformed_htlcs_arg, LDKUpdateFee update_fee_arg, LDKCommitmentSigned commitment_signed_arg);
1238         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);
1239         /// void HTLCFailChannelUpdate_free(LDKHTLCFailChannelUpdate this_ptr);
1240         public static native void HTLCFailChannelUpdate_free(long this_ptr);
1241         /// void ChannelMessageHandler_free(LDKChannelMessageHandler this_ptr);
1242         public static native void ChannelMessageHandler_free(long this_ptr);
1243         /// void RoutingMessageHandler_free(LDKRoutingMessageHandler this_ptr);
1244         public static native void RoutingMessageHandler_free(long this_ptr);
1245         /// LDKCVec_u8Z AcceptChannel_write(const LDKAcceptChannel *obj);
1246         public static native long AcceptChannel_write(long obj);
1247         /// LDKAcceptChannel AcceptChannel_read(LDKu8slice ser);
1248         public static native long AcceptChannel_read(long ser);
1249         /// LDKCVec_u8Z AnnouncementSignatures_write(const LDKAnnouncementSignatures *obj);
1250         public static native long AnnouncementSignatures_write(long obj);
1251         /// LDKAnnouncementSignatures AnnouncementSignatures_read(LDKu8slice ser);
1252         public static native long AnnouncementSignatures_read(long ser);
1253         /// LDKCVec_u8Z ChannelReestablish_write(const LDKChannelReestablish *obj);
1254         public static native long ChannelReestablish_write(long obj);
1255         /// LDKChannelReestablish ChannelReestablish_read(LDKu8slice ser);
1256         public static native long ChannelReestablish_read(long ser);
1257         /// LDKCVec_u8Z ClosingSigned_write(const LDKClosingSigned *obj);
1258         public static native long ClosingSigned_write(long obj);
1259         /// LDKClosingSigned ClosingSigned_read(LDKu8slice ser);
1260         public static native long ClosingSigned_read(long ser);
1261         /// LDKCVec_u8Z CommitmentSigned_write(const LDKCommitmentSigned *obj);
1262         public static native long CommitmentSigned_write(long obj);
1263         /// LDKCommitmentSigned CommitmentSigned_read(LDKu8slice ser);
1264         public static native long CommitmentSigned_read(long ser);
1265         /// LDKCVec_u8Z FundingCreated_write(const LDKFundingCreated *obj);
1266         public static native long FundingCreated_write(long obj);
1267         /// LDKFundingCreated FundingCreated_read(LDKu8slice ser);
1268         public static native long FundingCreated_read(long ser);
1269         /// LDKCVec_u8Z FundingSigned_write(const LDKFundingSigned *obj);
1270         public static native long FundingSigned_write(long obj);
1271         /// LDKFundingSigned FundingSigned_read(LDKu8slice ser);
1272         public static native long FundingSigned_read(long ser);
1273         /// LDKCVec_u8Z FundingLocked_write(const LDKFundingLocked *obj);
1274         public static native long FundingLocked_write(long obj);
1275         /// LDKFundingLocked FundingLocked_read(LDKu8slice ser);
1276         public static native long FundingLocked_read(long ser);
1277         /// LDKCVec_u8Z Init_write(const LDKInit *obj);
1278         public static native long Init_write(long obj);
1279         /// LDKInit Init_read(LDKu8slice ser);
1280         public static native long Init_read(long ser);
1281         /// LDKCVec_u8Z OpenChannel_write(const LDKOpenChannel *obj);
1282         public static native long OpenChannel_write(long obj);
1283         /// LDKOpenChannel OpenChannel_read(LDKu8slice ser);
1284         public static native long OpenChannel_read(long ser);
1285         /// LDKCVec_u8Z RevokeAndACK_write(const LDKRevokeAndACK *obj);
1286         public static native long RevokeAndACK_write(long obj);
1287         /// LDKRevokeAndACK RevokeAndACK_read(LDKu8slice ser);
1288         public static native long RevokeAndACK_read(long ser);
1289         /// LDKCVec_u8Z Shutdown_write(const LDKShutdown *obj);
1290         public static native long Shutdown_write(long obj);
1291         /// LDKShutdown Shutdown_read(LDKu8slice ser);
1292         public static native long Shutdown_read(long ser);
1293         /// LDKCVec_u8Z UpdateFailHTLC_write(const LDKUpdateFailHTLC *obj);
1294         public static native long UpdateFailHTLC_write(long obj);
1295         /// LDKUpdateFailHTLC UpdateFailHTLC_read(LDKu8slice ser);
1296         public static native long UpdateFailHTLC_read(long ser);
1297         /// LDKCVec_u8Z UpdateFailMalformedHTLC_write(const LDKUpdateFailMalformedHTLC *obj);
1298         public static native long UpdateFailMalformedHTLC_write(long obj);
1299         /// LDKUpdateFailMalformedHTLC UpdateFailMalformedHTLC_read(LDKu8slice ser);
1300         public static native long UpdateFailMalformedHTLC_read(long ser);
1301         /// LDKCVec_u8Z UpdateFee_write(const LDKUpdateFee *obj);
1302         public static native long UpdateFee_write(long obj);
1303         /// LDKUpdateFee UpdateFee_read(LDKu8slice ser);
1304         public static native long UpdateFee_read(long ser);
1305         /// LDKCVec_u8Z UpdateFulfillHTLC_write(const LDKUpdateFulfillHTLC *obj);
1306         public static native long UpdateFulfillHTLC_write(long obj);
1307         /// LDKUpdateFulfillHTLC UpdateFulfillHTLC_read(LDKu8slice ser);
1308         public static native long UpdateFulfillHTLC_read(long ser);
1309         /// LDKCVec_u8Z UpdateAddHTLC_write(const LDKUpdateAddHTLC *obj);
1310         public static native long UpdateAddHTLC_write(long obj);
1311         /// LDKUpdateAddHTLC UpdateAddHTLC_read(LDKu8slice ser);
1312         public static native long UpdateAddHTLC_read(long ser);
1313         /// LDKCVec_u8Z Ping_write(const LDKPing *obj);
1314         public static native long Ping_write(long obj);
1315         /// LDKPing Ping_read(LDKu8slice ser);
1316         public static native long Ping_read(long ser);
1317         /// LDKCVec_u8Z Pong_write(const LDKPong *obj);
1318         public static native long Pong_write(long obj);
1319         /// LDKPong Pong_read(LDKu8slice ser);
1320         public static native long Pong_read(long ser);
1321         /// LDKCVec_u8Z UnsignedChannelAnnouncement_write(const LDKUnsignedChannelAnnouncement *obj);
1322         public static native long UnsignedChannelAnnouncement_write(long obj);
1323         /// LDKUnsignedChannelAnnouncement UnsignedChannelAnnouncement_read(LDKu8slice ser);
1324         public static native long UnsignedChannelAnnouncement_read(long ser);
1325         /// LDKCVec_u8Z ChannelAnnouncement_write(const LDKChannelAnnouncement *obj);
1326         public static native long ChannelAnnouncement_write(long obj);
1327         /// LDKChannelAnnouncement ChannelAnnouncement_read(LDKu8slice ser);
1328         public static native long ChannelAnnouncement_read(long ser);
1329         /// LDKCVec_u8Z UnsignedChannelUpdate_write(const LDKUnsignedChannelUpdate *obj);
1330         public static native long UnsignedChannelUpdate_write(long obj);
1331         /// LDKUnsignedChannelUpdate UnsignedChannelUpdate_read(LDKu8slice ser);
1332         public static native long UnsignedChannelUpdate_read(long ser);
1333         /// LDKCVec_u8Z ChannelUpdate_write(const LDKChannelUpdate *obj);
1334         public static native long ChannelUpdate_write(long obj);
1335         /// LDKChannelUpdate ChannelUpdate_read(LDKu8slice ser);
1336         public static native long ChannelUpdate_read(long ser);
1337         /// LDKCVec_u8Z ErrorMessage_write(const LDKErrorMessage *obj);
1338         public static native long ErrorMessage_write(long obj);
1339         /// LDKErrorMessage ErrorMessage_read(LDKu8slice ser);
1340         public static native long ErrorMessage_read(long ser);
1341         /// LDKCVec_u8Z UnsignedNodeAnnouncement_write(const LDKUnsignedNodeAnnouncement *obj);
1342         public static native long UnsignedNodeAnnouncement_write(long obj);
1343         /// LDKUnsignedNodeAnnouncement UnsignedNodeAnnouncement_read(LDKu8slice ser);
1344         public static native long UnsignedNodeAnnouncement_read(long ser);
1345         /// LDKCVec_u8Z NodeAnnouncement_write(const LDKNodeAnnouncement *obj);
1346         public static native long NodeAnnouncement_write(long obj);
1347         /// LDKNodeAnnouncement NodeAnnouncement_read(LDKu8slice ser);
1348         public static native long NodeAnnouncement_read(long ser);
1349         /// void MessageHandler_free(LDKMessageHandler this_ptr);
1350         public static native void MessageHandler_free(long this_ptr);
1351         /// const LDKChannelMessageHandler *MessageHandler_get_chan_handler(const LDKMessageHandler *this_ptr);
1352         public static native long MessageHandler_get_chan_handler(long this_ptr);
1353         /// void MessageHandler_set_chan_handler(LDKMessageHandler *this_ptr, LDKChannelMessageHandler val);
1354         public static native void MessageHandler_set_chan_handler(long this_ptr, long val);
1355         /// const LDKRoutingMessageHandler *MessageHandler_get_route_handler(const LDKMessageHandler *this_ptr);
1356         public static native long MessageHandler_get_route_handler(long this_ptr);
1357         /// void MessageHandler_set_route_handler(LDKMessageHandler *this_ptr, LDKRoutingMessageHandler val);
1358         public static native void MessageHandler_set_route_handler(long this_ptr, long val);
1359         /// MUST_USE_RES LDKMessageHandler MessageHandler_new(LDKChannelMessageHandler chan_handler_arg, LDKRoutingMessageHandler route_handler_arg);
1360         public static native long MessageHandler_new(long chan_handler_arg, long route_handler_arg);
1361         /// void SocketDescriptor_free(LDKSocketDescriptor this_ptr);
1362         public static native void SocketDescriptor_free(long this_ptr);
1363         /// void PeerHandleError_free(LDKPeerHandleError this_ptr);
1364         public static native void PeerHandleError_free(long this_ptr);
1365         /// bool PeerHandleError_get_no_connection_possible(const LDKPeerHandleError *this_ptr);
1366         public static native boolean PeerHandleError_get_no_connection_possible(long this_ptr);
1367         /// void PeerHandleError_set_no_connection_possible(LDKPeerHandleError *this_ptr, bool val);
1368         public static native void PeerHandleError_set_no_connection_possible(long this_ptr, boolean val);
1369         /// MUST_USE_RES LDKPeerHandleError PeerHandleError_new(bool no_connection_possible_arg);
1370         public static native long PeerHandleError_new(boolean no_connection_possible_arg);
1371         /// void PeerManager_free(LDKPeerManager this_ptr);
1372         public static native void PeerManager_free(long this_ptr);
1373         /// MUST_USE_RES LDKPeerManager PeerManager_new(LDKMessageHandler message_handler, LDKSecretKey our_node_secret, const uint8_t (*ephemeral_random_data)[32], LDKLogger logger);
1374         public static native long PeerManager_new(long message_handler, long our_node_secret, byte[] ephemeral_random_data, long logger);
1375         /// MUST_USE_RES LDKCVec_PublicKeyZ PeerManager_get_peer_node_ids(const LDKPeerManager *this_arg);
1376         public static native long PeerManager_get_peer_node_ids(long this_arg);
1377         /// MUST_USE_RES LDKCResult_CVec_u8ZPeerHandleErrorZ PeerManager_new_outbound_connection(const LDKPeerManager *this_arg, LDKPublicKey their_node_id, LDKSocketDescriptor descriptor);
1378         public static native long PeerManager_new_outbound_connection(long this_arg, long their_node_id, long descriptor);
1379         /// MUST_USE_RES LDKCResult_NonePeerHandleErrorZ PeerManager_new_inbound_connection(const LDKPeerManager *this_arg, LDKSocketDescriptor descriptor);
1380         public static native long PeerManager_new_inbound_connection(long this_arg, long descriptor);
1381         /// MUST_USE_RES LDKCResult_NonePeerHandleErrorZ PeerManager_write_buffer_space_avail(const LDKPeerManager *this_arg, LDKSocketDescriptor *descriptor);
1382         public static native long PeerManager_write_buffer_space_avail(long this_arg, long descriptor);
1383         /// MUST_USE_RES LDKCResult_boolPeerHandleErrorZ PeerManager_read_event(const LDKPeerManager *this_arg, LDKSocketDescriptor *peer_descriptor, LDKu8slice data);
1384         public static native long PeerManager_read_event(long this_arg, long peer_descriptor, long data);
1385         /// void PeerManager_process_events(const LDKPeerManager *this_arg);
1386         public static native void PeerManager_process_events(long this_arg);
1387         /// void PeerManager_socket_disconnected(const LDKPeerManager *this_arg, const LDKSocketDescriptor *descriptor);
1388         public static native void PeerManager_socket_disconnected(long this_arg, long descriptor);
1389         /// void PeerManager_timer_tick_occured(const LDKPeerManager *this_arg);
1390         public static native void PeerManager_timer_tick_occured(long this_arg);
1391         /// LDKThirtyTwoBytes build_commitment_secret(const uint8_t (*commitment_seed)[32], uint64_t idx);
1392         public static native long build_commitment_secret(byte[] commitment_seed, long idx);
1393         /// void TxCreationKeys_free(LDKTxCreationKeys this_ptr);
1394         public static native void TxCreationKeys_free(long this_ptr);
1395         /// LDKPublicKey TxCreationKeys_get_per_commitment_point(const LDKTxCreationKeys *this_ptr);
1396         public static native long TxCreationKeys_get_per_commitment_point(long this_ptr);
1397         /// void TxCreationKeys_set_per_commitment_point(LDKTxCreationKeys *this_ptr, LDKPublicKey val);
1398         public static native void TxCreationKeys_set_per_commitment_point(long this_ptr, long val);
1399         /// LDKPublicKey TxCreationKeys_get_revocation_key(const LDKTxCreationKeys *this_ptr);
1400         public static native long TxCreationKeys_get_revocation_key(long this_ptr);
1401         /// void TxCreationKeys_set_revocation_key(LDKTxCreationKeys *this_ptr, LDKPublicKey val);
1402         public static native void TxCreationKeys_set_revocation_key(long this_ptr, long val);
1403         /// LDKPublicKey TxCreationKeys_get_a_htlc_key(const LDKTxCreationKeys *this_ptr);
1404         public static native long TxCreationKeys_get_a_htlc_key(long this_ptr);
1405         /// void TxCreationKeys_set_a_htlc_key(LDKTxCreationKeys *this_ptr, LDKPublicKey val);
1406         public static native void TxCreationKeys_set_a_htlc_key(long this_ptr, long val);
1407         /// LDKPublicKey TxCreationKeys_get_b_htlc_key(const LDKTxCreationKeys *this_ptr);
1408         public static native long TxCreationKeys_get_b_htlc_key(long this_ptr);
1409         /// void TxCreationKeys_set_b_htlc_key(LDKTxCreationKeys *this_ptr, LDKPublicKey val);
1410         public static native void TxCreationKeys_set_b_htlc_key(long this_ptr, long val);
1411         /// LDKPublicKey TxCreationKeys_get_a_delayed_payment_key(const LDKTxCreationKeys *this_ptr);
1412         public static native long TxCreationKeys_get_a_delayed_payment_key(long this_ptr);
1413         /// void TxCreationKeys_set_a_delayed_payment_key(LDKTxCreationKeys *this_ptr, LDKPublicKey val);
1414         public static native void TxCreationKeys_set_a_delayed_payment_key(long this_ptr, long val);
1415         /// MUST_USE_RES LDKTxCreationKeys TxCreationKeys_new(LDKPublicKey per_commitment_point_arg, LDKPublicKey revocation_key_arg, LDKPublicKey a_htlc_key_arg, LDKPublicKey b_htlc_key_arg, LDKPublicKey a_delayed_payment_key_arg);
1416         public static native long TxCreationKeys_new(long per_commitment_point_arg, long revocation_key_arg, long a_htlc_key_arg, long b_htlc_key_arg, long a_delayed_payment_key_arg);
1417         /// LDKCVec_u8Z TxCreationKeys_write(const LDKTxCreationKeys *obj);
1418         public static native long TxCreationKeys_write(long obj);
1419         /// LDKTxCreationKeys TxCreationKeys_read(LDKu8slice ser);
1420         public static native long TxCreationKeys_read(long ser);
1421         /// void PreCalculatedTxCreationKeys_free(LDKPreCalculatedTxCreationKeys this_ptr);
1422         public static native void PreCalculatedTxCreationKeys_free(long this_ptr);
1423         /// MUST_USE_RES LDKPreCalculatedTxCreationKeys PreCalculatedTxCreationKeys_new(LDKTxCreationKeys keys);
1424         public static native long PreCalculatedTxCreationKeys_new(long keys);
1425         /// MUST_USE_RES LDKTxCreationKeys PreCalculatedTxCreationKeys_trust_key_derivation(const LDKPreCalculatedTxCreationKeys *this_arg);
1426         public static native long PreCalculatedTxCreationKeys_trust_key_derivation(long this_arg);
1427         /// MUST_USE_RES LDKPublicKey PreCalculatedTxCreationKeys_per_commitment_point(const LDKPreCalculatedTxCreationKeys *this_arg);
1428         public static native long PreCalculatedTxCreationKeys_per_commitment_point(long this_arg);
1429         /// void ChannelPublicKeys_free(LDKChannelPublicKeys this_ptr);
1430         public static native void ChannelPublicKeys_free(long this_ptr);
1431         /// LDKPublicKey ChannelPublicKeys_get_funding_pubkey(const LDKChannelPublicKeys *this_ptr);
1432         public static native long ChannelPublicKeys_get_funding_pubkey(long this_ptr);
1433         /// void ChannelPublicKeys_set_funding_pubkey(LDKChannelPublicKeys *this_ptr, LDKPublicKey val);
1434         public static native void ChannelPublicKeys_set_funding_pubkey(long this_ptr, long val);
1435         /// LDKPublicKey ChannelPublicKeys_get_revocation_basepoint(const LDKChannelPublicKeys *this_ptr);
1436         public static native long ChannelPublicKeys_get_revocation_basepoint(long this_ptr);
1437         /// void ChannelPublicKeys_set_revocation_basepoint(LDKChannelPublicKeys *this_ptr, LDKPublicKey val);
1438         public static native void ChannelPublicKeys_set_revocation_basepoint(long this_ptr, long val);
1439         /// LDKPublicKey ChannelPublicKeys_get_payment_point(const LDKChannelPublicKeys *this_ptr);
1440         public static native long ChannelPublicKeys_get_payment_point(long this_ptr);
1441         /// void ChannelPublicKeys_set_payment_point(LDKChannelPublicKeys *this_ptr, LDKPublicKey val);
1442         public static native void ChannelPublicKeys_set_payment_point(long this_ptr, long val);
1443         /// LDKPublicKey ChannelPublicKeys_get_delayed_payment_basepoint(const LDKChannelPublicKeys *this_ptr);
1444         public static native long ChannelPublicKeys_get_delayed_payment_basepoint(long this_ptr);
1445         /// void ChannelPublicKeys_set_delayed_payment_basepoint(LDKChannelPublicKeys *this_ptr, LDKPublicKey val);
1446         public static native void ChannelPublicKeys_set_delayed_payment_basepoint(long this_ptr, long val);
1447         /// LDKPublicKey ChannelPublicKeys_get_htlc_basepoint(const LDKChannelPublicKeys *this_ptr);
1448         public static native long ChannelPublicKeys_get_htlc_basepoint(long this_ptr);
1449         /// void ChannelPublicKeys_set_htlc_basepoint(LDKChannelPublicKeys *this_ptr, LDKPublicKey val);
1450         public static native void ChannelPublicKeys_set_htlc_basepoint(long this_ptr, long val);
1451         /// MUST_USE_RES LDKChannelPublicKeys ChannelPublicKeys_new(LDKPublicKey funding_pubkey_arg, LDKPublicKey revocation_basepoint_arg, LDKPublicKey payment_point_arg, LDKPublicKey delayed_payment_basepoint_arg, LDKPublicKey htlc_basepoint_arg);
1452         public static native long ChannelPublicKeys_new(long funding_pubkey_arg, long revocation_basepoint_arg, long payment_point_arg, long delayed_payment_basepoint_arg, long htlc_basepoint_arg);
1453         /// LDKCVec_u8Z ChannelPublicKeys_write(const LDKChannelPublicKeys *obj);
1454         public static native long ChannelPublicKeys_write(long obj);
1455         /// LDKChannelPublicKeys ChannelPublicKeys_read(LDKu8slice ser);
1456         public static native long ChannelPublicKeys_read(long ser);
1457         /// MUST_USE_RES LDKCResult_TxCreationKeysSecpErrorZ TxCreationKeys_derive_new(LDKPublicKey per_commitment_point, LDKPublicKey a_delayed_payment_base, LDKPublicKey a_htlc_base, LDKPublicKey b_revocation_base, LDKPublicKey b_htlc_base);
1458         public static native long TxCreationKeys_derive_new(long per_commitment_point, long a_delayed_payment_base, long a_htlc_base, long b_revocation_base, long b_htlc_base);
1459         /// LDKCVec_u8Z get_revokeable_redeemscript(LDKPublicKey revocation_key, uint16_t to_self_delay, LDKPublicKey delayed_payment_key);
1460         public static native long get_revokeable_redeemscript(long revocation_key, short to_self_delay, long delayed_payment_key);
1461         /// void HTLCOutputInCommitment_free(LDKHTLCOutputInCommitment this_ptr);
1462         public static native void HTLCOutputInCommitment_free(long this_ptr);
1463         /// bool HTLCOutputInCommitment_get_offered(const LDKHTLCOutputInCommitment *this_ptr);
1464         public static native boolean HTLCOutputInCommitment_get_offered(long this_ptr);
1465         /// void HTLCOutputInCommitment_set_offered(LDKHTLCOutputInCommitment *this_ptr, bool val);
1466         public static native void HTLCOutputInCommitment_set_offered(long this_ptr, boolean val);
1467         /// uint64_t HTLCOutputInCommitment_get_amount_msat(const LDKHTLCOutputInCommitment *this_ptr);
1468         public static native long HTLCOutputInCommitment_get_amount_msat(long this_ptr);
1469         /// void HTLCOutputInCommitment_set_amount_msat(LDKHTLCOutputInCommitment *this_ptr, uint64_t val);
1470         public static native void HTLCOutputInCommitment_set_amount_msat(long this_ptr, long val);
1471         /// uint32_t HTLCOutputInCommitment_get_cltv_expiry(const LDKHTLCOutputInCommitment *this_ptr);
1472         public static native int HTLCOutputInCommitment_get_cltv_expiry(long this_ptr);
1473         /// void HTLCOutputInCommitment_set_cltv_expiry(LDKHTLCOutputInCommitment *this_ptr, uint32_t val);
1474         public static native void HTLCOutputInCommitment_set_cltv_expiry(long this_ptr, int val);
1475         /// const uint8_t (*HTLCOutputInCommitment_get_payment_hash(const LDKHTLCOutputInCommitment *this_ptr))[32];
1476         public static native byte[] HTLCOutputInCommitment_get_payment_hash(long this_ptr);
1477         /// void HTLCOutputInCommitment_set_payment_hash(LDKHTLCOutputInCommitment *this_ptr, LDKThirtyTwoBytes val);
1478         public static native void HTLCOutputInCommitment_set_payment_hash(long this_ptr, long val);
1479         /// LDKCVec_u8Z HTLCOutputInCommitment_write(const LDKHTLCOutputInCommitment *obj);
1480         public static native long HTLCOutputInCommitment_write(long obj);
1481         /// LDKHTLCOutputInCommitment HTLCOutputInCommitment_read(LDKu8slice ser);
1482         public static native long HTLCOutputInCommitment_read(long ser);
1483         /// LDKCVec_u8Z get_htlc_redeemscript(const LDKHTLCOutputInCommitment *htlc, const LDKTxCreationKeys *keys);
1484         public static native long get_htlc_redeemscript(long htlc, long keys);
1485         /// LDKCVec_u8Z make_funding_redeemscript(LDKPublicKey a, LDKPublicKey b);
1486         public static native long make_funding_redeemscript(long a, long b);
1487         /// LDKCVec_u8Z build_htlc_transaction(const uint8_t (*prev_hash)[32], uint32_t feerate_per_kw, uint16_t to_self_delay, const LDKHTLCOutputInCommitment *htlc, LDKPublicKey a_delayed_payment_key, LDKPublicKey revocation_key);
1488         public static native long build_htlc_transaction(byte[] prev_hash, int feerate_per_kw, short to_self_delay, long htlc, long a_delayed_payment_key, long revocation_key);
1489         /// void LocalCommitmentTransaction_free(LDKLocalCommitmentTransaction this_ptr);
1490         public static native void LocalCommitmentTransaction_free(long this_ptr);
1491         /// LDKCVec_u8Z LocalCommitmentTransaction_get_unsigned_tx(const LDKLocalCommitmentTransaction *this_ptr);
1492         public static native long LocalCommitmentTransaction_get_unsigned_tx(long this_ptr);
1493         /// void LocalCommitmentTransaction_set_unsigned_tx(LDKLocalCommitmentTransaction *this_ptr, LDKCVec_u8Z val);
1494         public static native void LocalCommitmentTransaction_set_unsigned_tx(long this_ptr, long val);
1495         /// LDKSignature LocalCommitmentTransaction_get_their_sig(const LDKLocalCommitmentTransaction *this_ptr);
1496         public static native long LocalCommitmentTransaction_get_their_sig(long this_ptr);
1497         /// void LocalCommitmentTransaction_set_their_sig(LDKLocalCommitmentTransaction *this_ptr, LDKSignature val);
1498         public static native void LocalCommitmentTransaction_set_their_sig(long this_ptr, long val);
1499         /// uint32_t LocalCommitmentTransaction_get_feerate_per_kw(const LDKLocalCommitmentTransaction *this_ptr);
1500         public static native int LocalCommitmentTransaction_get_feerate_per_kw(long this_ptr);
1501         /// void LocalCommitmentTransaction_set_feerate_per_kw(LDKLocalCommitmentTransaction *this_ptr, uint32_t val);
1502         public static native void LocalCommitmentTransaction_set_feerate_per_kw(long this_ptr, int val);
1503         /// void LocalCommitmentTransaction_set_per_htlc(LDKLocalCommitmentTransaction *this_ptr, LDKCVec_C2Tuple_HTLCOutputInCommitmentSignatureZZ val);
1504         public static native void LocalCommitmentTransaction_set_per_htlc(long this_ptr, long val);
1505         /// MUST_USE_RES LDKLocalCommitmentTransaction LocalCommitmentTransaction_new_missing_local_sig(LDKCVec_u8Z unsigned_tx, LDKSignature their_sig, LDKPublicKey our_funding_key, LDKPublicKey their_funding_key, LDKTxCreationKeys local_keys, uint32_t feerate_per_kw, LDKCVec_C2Tuple_HTLCOutputInCommitmentSignatureZZ htlc_data);
1506         public static native long LocalCommitmentTransaction_new_missing_local_sig(long unsigned_tx, long their_sig, long our_funding_key, long their_funding_key, long local_keys, int feerate_per_kw, long htlc_data);
1507         /// MUST_USE_RES LDKTxCreationKeys LocalCommitmentTransaction_trust_key_derivation(const LDKLocalCommitmentTransaction *this_arg);
1508         public static native long LocalCommitmentTransaction_trust_key_derivation(long this_arg);
1509         /// MUST_USE_RES LDKThirtyTwoBytes LocalCommitmentTransaction_txid(const LDKLocalCommitmentTransaction *this_arg);
1510         public static native long LocalCommitmentTransaction_txid(long this_arg);
1511         /// MUST_USE_RES LDKSignature LocalCommitmentTransaction_get_local_sig(const LDKLocalCommitmentTransaction *this_arg, const uint8_t (*funding_key)[32], LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
1512         public static native long LocalCommitmentTransaction_get_local_sig(long this_arg, byte[] funding_key, long funding_redeemscript, long channel_value_satoshis);
1513         /// MUST_USE_RES LDKCResult_CVec_SignatureZNoneZ LocalCommitmentTransaction_get_htlc_sigs(const LDKLocalCommitmentTransaction *this_arg, const uint8_t (*htlc_base_key)[32], uint16_t local_csv);
1514         public static native long LocalCommitmentTransaction_get_htlc_sigs(long this_arg, byte[] htlc_base_key, short local_csv);
1515         /// LDKCVec_u8Z LocalCommitmentTransaction_write(const LDKLocalCommitmentTransaction *obj);
1516         public static native long LocalCommitmentTransaction_write(long obj);
1517         /// LDKLocalCommitmentTransaction LocalCommitmentTransaction_read(LDKu8slice ser);
1518         public static native long LocalCommitmentTransaction_read(long ser);
1519         /// void InitFeatures_free(LDKInitFeatures this_ptr);
1520         public static native void InitFeatures_free(long this_ptr);
1521         /// void NodeFeatures_free(LDKNodeFeatures this_ptr);
1522         public static native void NodeFeatures_free(long this_ptr);
1523         /// void ChannelFeatures_free(LDKChannelFeatures this_ptr);
1524         public static native void ChannelFeatures_free(long this_ptr);
1525         /// void RouteHop_free(LDKRouteHop this_ptr);
1526         public static native void RouteHop_free(long this_ptr);
1527         /// LDKPublicKey RouteHop_get_pubkey(const LDKRouteHop *this_ptr);
1528         public static native long RouteHop_get_pubkey(long this_ptr);
1529         /// void RouteHop_set_pubkey(LDKRouteHop *this_ptr, LDKPublicKey val);
1530         public static native void RouteHop_set_pubkey(long this_ptr, long val);
1531         /// uint64_t RouteHop_get_short_channel_id(const LDKRouteHop *this_ptr);
1532         public static native long RouteHop_get_short_channel_id(long this_ptr);
1533         /// void RouteHop_set_short_channel_id(LDKRouteHop *this_ptr, uint64_t val);
1534         public static native void RouteHop_set_short_channel_id(long this_ptr, long val);
1535         /// uint64_t RouteHop_get_fee_msat(const LDKRouteHop *this_ptr);
1536         public static native long RouteHop_get_fee_msat(long this_ptr);
1537         /// void RouteHop_set_fee_msat(LDKRouteHop *this_ptr, uint64_t val);
1538         public static native void RouteHop_set_fee_msat(long this_ptr, long val);
1539         /// uint32_t RouteHop_get_cltv_expiry_delta(const LDKRouteHop *this_ptr);
1540         public static native int RouteHop_get_cltv_expiry_delta(long this_ptr);
1541         /// void RouteHop_set_cltv_expiry_delta(LDKRouteHop *this_ptr, uint32_t val);
1542         public static native void RouteHop_set_cltv_expiry_delta(long this_ptr, int val);
1543         /// void Route_free(LDKRoute this_ptr);
1544         public static native void Route_free(long this_ptr);
1545         /// void Route_set_paths(LDKRoute *this_ptr, LDKCVec_CVec_RouteHopZZ val);
1546         public static native void Route_set_paths(long this_ptr, long val);
1547         /// MUST_USE_RES LDKRoute Route_new(LDKCVec_CVec_RouteHopZZ paths_arg);
1548         public static native long Route_new(long paths_arg);
1549         /// LDKCVec_u8Z Route_write(const LDKRoute *obj);
1550         public static native long Route_write(long obj);
1551         /// LDKRoute Route_read(LDKu8slice ser);
1552         public static native long Route_read(long ser);
1553         /// void RouteHint_free(LDKRouteHint this_ptr);
1554         public static native void RouteHint_free(long this_ptr);
1555         /// LDKPublicKey RouteHint_get_src_node_id(const LDKRouteHint *this_ptr);
1556         public static native long RouteHint_get_src_node_id(long this_ptr);
1557         /// void RouteHint_set_src_node_id(LDKRouteHint *this_ptr, LDKPublicKey val);
1558         public static native void RouteHint_set_src_node_id(long this_ptr, long val);
1559         /// uint64_t RouteHint_get_short_channel_id(const LDKRouteHint *this_ptr);
1560         public static native long RouteHint_get_short_channel_id(long this_ptr);
1561         /// void RouteHint_set_short_channel_id(LDKRouteHint *this_ptr, uint64_t val);
1562         public static native void RouteHint_set_short_channel_id(long this_ptr, long val);
1563         /// LDKRoutingFees RouteHint_get_fees(const LDKRouteHint *this_ptr);
1564         public static native long RouteHint_get_fees(long this_ptr);
1565         /// void RouteHint_set_fees(LDKRouteHint *this_ptr, LDKRoutingFees val);
1566         public static native void RouteHint_set_fees(long this_ptr, long val);
1567         /// uint16_t RouteHint_get_cltv_expiry_delta(const LDKRouteHint *this_ptr);
1568         public static native short RouteHint_get_cltv_expiry_delta(long this_ptr);
1569         /// void RouteHint_set_cltv_expiry_delta(LDKRouteHint *this_ptr, uint16_t val);
1570         public static native void RouteHint_set_cltv_expiry_delta(long this_ptr, short val);
1571         /// uint64_t RouteHint_get_htlc_minimum_msat(const LDKRouteHint *this_ptr);
1572         public static native long RouteHint_get_htlc_minimum_msat(long this_ptr);
1573         /// void RouteHint_set_htlc_minimum_msat(LDKRouteHint *this_ptr, uint64_t val);
1574         public static native void RouteHint_set_htlc_minimum_msat(long this_ptr, long val);
1575         /// MUST_USE_RES LDKRouteHint RouteHint_new(LDKPublicKey src_node_id_arg, uint64_t short_channel_id_arg, LDKRoutingFees fees_arg, uint16_t cltv_expiry_delta_arg, uint64_t htlc_minimum_msat_arg);
1576         public static native long RouteHint_new(long src_node_id_arg, long short_channel_id_arg, long fees_arg, short cltv_expiry_delta_arg, long htlc_minimum_msat_arg);
1577         /// LDKCResult_RouteLightningErrorZ get_route(LDKPublicKey our_node_id, const LDKNetworkGraph *network, LDKPublicKey target, LDKCVec_ChannelDetailsZ *first_hops, LDKCVec_RouteHintZ last_hops, uint64_t final_value_msat, uint32_t final_cltv, LDKLogger logger);
1578         public static native long get_route(long our_node_id, long network, long target, long first_hops, long last_hops, long final_value_msat, int final_cltv, long logger);
1579         /// void NetworkGraph_free(LDKNetworkGraph this_ptr);
1580         public static native void NetworkGraph_free(long this_ptr);
1581         /// void LockedNetworkGraph_free(LDKLockedNetworkGraph this_ptr);
1582         public static native void LockedNetworkGraph_free(long this_ptr);
1583         /// void NetGraphMsgHandler_free(LDKNetGraphMsgHandler this_ptr);
1584         public static native void NetGraphMsgHandler_free(long this_ptr);
1585         /// MUST_USE_RES LDKNetGraphMsgHandler NetGraphMsgHandler_new(LDKChainWatchInterface chain_monitor, LDKLogger logger);
1586         public static native long NetGraphMsgHandler_new(long chain_monitor, long logger);
1587         /// MUST_USE_RES LDKNetGraphMsgHandler NetGraphMsgHandler_from_net_graph(LDKChainWatchInterface chain_monitor, LDKLogger logger, LDKNetworkGraph network_graph);
1588         public static native long NetGraphMsgHandler_from_net_graph(long chain_monitor, long logger, long network_graph);
1589         /// MUST_USE_RES LDKLockedNetworkGraph NetGraphMsgHandler_read_locked_graph(const LDKNetGraphMsgHandler *this_arg);
1590         public static native long NetGraphMsgHandler_read_locked_graph(long this_arg);
1591         /// MUST_USE_RES LDKNetworkGraph LockedNetworkGraph_graph(const LDKLockedNetworkGraph *this_arg);
1592         public static native long LockedNetworkGraph_graph(long this_arg);
1593         /// LDKRoutingMessageHandler NetGraphMsgHandler_as_RoutingMessageHandler(const LDKNetGraphMsgHandler *this_arg);
1594         public static native long NetGraphMsgHandler_as_RoutingMessageHandler(long this_arg);
1595         /// void DirectionalChannelInfo_free(LDKDirectionalChannelInfo this_ptr);
1596         public static native void DirectionalChannelInfo_free(long this_ptr);
1597         /// uint32_t DirectionalChannelInfo_get_last_update(const LDKDirectionalChannelInfo *this_ptr);
1598         public static native int DirectionalChannelInfo_get_last_update(long this_ptr);
1599         /// void DirectionalChannelInfo_set_last_update(LDKDirectionalChannelInfo *this_ptr, uint32_t val);
1600         public static native void DirectionalChannelInfo_set_last_update(long this_ptr, int val);
1601         /// bool DirectionalChannelInfo_get_enabled(const LDKDirectionalChannelInfo *this_ptr);
1602         public static native boolean DirectionalChannelInfo_get_enabled(long this_ptr);
1603         /// void DirectionalChannelInfo_set_enabled(LDKDirectionalChannelInfo *this_ptr, bool val);
1604         public static native void DirectionalChannelInfo_set_enabled(long this_ptr, boolean val);
1605         /// uint16_t DirectionalChannelInfo_get_cltv_expiry_delta(const LDKDirectionalChannelInfo *this_ptr);
1606         public static native short DirectionalChannelInfo_get_cltv_expiry_delta(long this_ptr);
1607         /// void DirectionalChannelInfo_set_cltv_expiry_delta(LDKDirectionalChannelInfo *this_ptr, uint16_t val);
1608         public static native void DirectionalChannelInfo_set_cltv_expiry_delta(long this_ptr, short val);
1609         /// uint64_t DirectionalChannelInfo_get_htlc_minimum_msat(const LDKDirectionalChannelInfo *this_ptr);
1610         public static native long DirectionalChannelInfo_get_htlc_minimum_msat(long this_ptr);
1611         /// void DirectionalChannelInfo_set_htlc_minimum_msat(LDKDirectionalChannelInfo *this_ptr, uint64_t val);
1612         public static native void DirectionalChannelInfo_set_htlc_minimum_msat(long this_ptr, long val);
1613         /// LDKCVec_u8Z DirectionalChannelInfo_write(const LDKDirectionalChannelInfo *obj);
1614         public static native long DirectionalChannelInfo_write(long obj);
1615         /// LDKDirectionalChannelInfo DirectionalChannelInfo_read(LDKu8slice ser);
1616         public static native long DirectionalChannelInfo_read(long ser);
1617         /// void ChannelInfo_free(LDKChannelInfo this_ptr);
1618         public static native void ChannelInfo_free(long this_ptr);
1619         /// LDKPublicKey ChannelInfo_get_node_one(const LDKChannelInfo *this_ptr);
1620         public static native long ChannelInfo_get_node_one(long this_ptr);
1621         /// void ChannelInfo_set_node_one(LDKChannelInfo *this_ptr, LDKPublicKey val);
1622         public static native void ChannelInfo_set_node_one(long this_ptr, long val);
1623         /// LDKDirectionalChannelInfo ChannelInfo_get_one_to_two(const LDKChannelInfo *this_ptr);
1624         public static native long ChannelInfo_get_one_to_two(long this_ptr);
1625         /// void ChannelInfo_set_one_to_two(LDKChannelInfo *this_ptr, LDKDirectionalChannelInfo val);
1626         public static native void ChannelInfo_set_one_to_two(long this_ptr, long val);
1627         /// LDKPublicKey ChannelInfo_get_node_two(const LDKChannelInfo *this_ptr);
1628         public static native long ChannelInfo_get_node_two(long this_ptr);
1629         /// void ChannelInfo_set_node_two(LDKChannelInfo *this_ptr, LDKPublicKey val);
1630         public static native void ChannelInfo_set_node_two(long this_ptr, long val);
1631         /// LDKDirectionalChannelInfo ChannelInfo_get_two_to_one(const LDKChannelInfo *this_ptr);
1632         public static native long ChannelInfo_get_two_to_one(long this_ptr);
1633         /// void ChannelInfo_set_two_to_one(LDKChannelInfo *this_ptr, LDKDirectionalChannelInfo val);
1634         public static native void ChannelInfo_set_two_to_one(long this_ptr, long val);
1635         /// LDKCVec_u8Z ChannelInfo_write(const LDKChannelInfo *obj);
1636         public static native long ChannelInfo_write(long obj);
1637         /// LDKChannelInfo ChannelInfo_read(LDKu8slice ser);
1638         public static native long ChannelInfo_read(long ser);
1639         /// void RoutingFees_free(LDKRoutingFees this_ptr);
1640         public static native void RoutingFees_free(long this_ptr);
1641         /// uint32_t RoutingFees_get_base_msat(const LDKRoutingFees *this_ptr);
1642         public static native int RoutingFees_get_base_msat(long this_ptr);
1643         /// void RoutingFees_set_base_msat(LDKRoutingFees *this_ptr, uint32_t val);
1644         public static native void RoutingFees_set_base_msat(long this_ptr, int val);
1645         /// uint32_t RoutingFees_get_proportional_millionths(const LDKRoutingFees *this_ptr);
1646         public static native int RoutingFees_get_proportional_millionths(long this_ptr);
1647         /// void RoutingFees_set_proportional_millionths(LDKRoutingFees *this_ptr, uint32_t val);
1648         public static native void RoutingFees_set_proportional_millionths(long this_ptr, int val);
1649         /// MUST_USE_RES LDKRoutingFees RoutingFees_new(uint32_t base_msat_arg, uint32_t proportional_millionths_arg);
1650         public static native long RoutingFees_new(int base_msat_arg, int proportional_millionths_arg);
1651         /// LDKRoutingFees RoutingFees_read(LDKu8slice ser);
1652         public static native long RoutingFees_read(long ser);
1653         /// LDKCVec_u8Z RoutingFees_write(const LDKRoutingFees *obj);
1654         public static native long RoutingFees_write(long obj);
1655         /// void NodeAnnouncementInfo_free(LDKNodeAnnouncementInfo this_ptr);
1656         public static native void NodeAnnouncementInfo_free(long this_ptr);
1657         /// uint32_t NodeAnnouncementInfo_get_last_update(const LDKNodeAnnouncementInfo *this_ptr);
1658         public static native int NodeAnnouncementInfo_get_last_update(long this_ptr);
1659         /// void NodeAnnouncementInfo_set_last_update(LDKNodeAnnouncementInfo *this_ptr, uint32_t val);
1660         public static native void NodeAnnouncementInfo_set_last_update(long this_ptr, int val);
1661         /// const uint8_t (*NodeAnnouncementInfo_get_rgb(const LDKNodeAnnouncementInfo *this_ptr))[3];
1662         public static native byte[] NodeAnnouncementInfo_get_rgb(long this_ptr);
1663         /// void NodeAnnouncementInfo_set_rgb(LDKNodeAnnouncementInfo *this_ptr, LDKThreeBytes val);
1664         public static native void NodeAnnouncementInfo_set_rgb(long this_ptr, long val);
1665         /// const uint8_t (*NodeAnnouncementInfo_get_alias(const LDKNodeAnnouncementInfo *this_ptr))[32];
1666         public static native byte[] NodeAnnouncementInfo_get_alias(long this_ptr);
1667         /// void NodeAnnouncementInfo_set_alias(LDKNodeAnnouncementInfo *this_ptr, LDKThirtyTwoBytes val);
1668         public static native void NodeAnnouncementInfo_set_alias(long this_ptr, long val);
1669         /// void NodeAnnouncementInfo_set_addresses(LDKNodeAnnouncementInfo *this_ptr, LDKCVec_NetAddressZ val);
1670         public static native void NodeAnnouncementInfo_set_addresses(long this_ptr, long val);
1671         /// LDKCVec_u8Z NodeAnnouncementInfo_write(const LDKNodeAnnouncementInfo *obj);
1672         public static native long NodeAnnouncementInfo_write(long obj);
1673         /// LDKNodeAnnouncementInfo NodeAnnouncementInfo_read(LDKu8slice ser);
1674         public static native long NodeAnnouncementInfo_read(long ser);
1675         /// void NodeInfo_free(LDKNodeInfo this_ptr);
1676         public static native void NodeInfo_free(long this_ptr);
1677         /// void NodeInfo_set_channels(LDKNodeInfo *this_ptr, LDKCVec_u64Z val);
1678         public static native void NodeInfo_set_channels(long this_ptr, long val);
1679         /// LDKRoutingFees NodeInfo_get_lowest_inbound_channel_fees(const LDKNodeInfo *this_ptr);
1680         public static native long NodeInfo_get_lowest_inbound_channel_fees(long this_ptr);
1681         /// void NodeInfo_set_lowest_inbound_channel_fees(LDKNodeInfo *this_ptr, LDKRoutingFees val);
1682         public static native void NodeInfo_set_lowest_inbound_channel_fees(long this_ptr, long val);
1683         /// LDKNodeAnnouncementInfo NodeInfo_get_announcement_info(const LDKNodeInfo *this_ptr);
1684         public static native long NodeInfo_get_announcement_info(long this_ptr);
1685         /// void NodeInfo_set_announcement_info(LDKNodeInfo *this_ptr, LDKNodeAnnouncementInfo val);
1686         public static native void NodeInfo_set_announcement_info(long this_ptr, long val);
1687         /// MUST_USE_RES LDKNodeInfo NodeInfo_new(LDKCVec_u64Z channels_arg, LDKRoutingFees lowest_inbound_channel_fees_arg, LDKNodeAnnouncementInfo announcement_info_arg);
1688         public static native long NodeInfo_new(long channels_arg, long lowest_inbound_channel_fees_arg, long announcement_info_arg);
1689         /// LDKCVec_u8Z NodeInfo_write(const LDKNodeInfo *obj);
1690         public static native long NodeInfo_write(long obj);
1691         /// LDKNodeInfo NodeInfo_read(LDKu8slice ser);
1692         public static native long NodeInfo_read(long ser);
1693         /// LDKCVec_u8Z NetworkGraph_write(const LDKNetworkGraph *obj);
1694         public static native long NetworkGraph_write(long obj);
1695         /// LDKNetworkGraph NetworkGraph_read(LDKu8slice ser);
1696         public static native long NetworkGraph_read(long ser);
1697         /// MUST_USE_RES LDKNetworkGraph NetworkGraph_new(void);
1698         public static native long NetworkGraph_new();
1699         /// void NetworkGraph_close_channel_from_update(LDKNetworkGraph *this_arg, uint64_t short_channel_id, bool is_permanent);
1700         public static native void NetworkGraph_close_channel_from_update(long this_arg, long short_channel_id, boolean is_permanent);
1701 }