- bindings updates
[rust-lightning] / lightning-c-bindings / include / lightning.h
1 /* Text to put at the beginning of the generated file. Probably a license. */
2
3 /* Generated with cbindgen:0.16.0 */
4
5 /* Warning, this file is autogenerated by cbindgen. Don't modify this manually. */
6
7 #include <stdarg.h>
8 #include <stdbool.h>
9 #include <stdint.h>
10 #include <stdlib.h>
11
12 /**
13  * An error when accessing the chain via [`Access`].
14  *
15  * [`Access`]: trait.Access.html
16  */
17 typedef enum LDKAccessError {
18    /**
19     * The requested chain is unknown.
20     */
21    LDKAccessError_UnknownChain,
22    /**
23     * The requested transaction doesn't exist or hasn't confirmed.
24     */
25    LDKAccessError_UnknownTx,
26    /**
27     * Must be last for serialization purposes
28     */
29    LDKAccessError_Sentinel,
30 } LDKAccessError;
31
32 /**
33  * An error enum representing a failure to persist a channel monitor update.
34  */
35 typedef enum LDKChannelMonitorUpdateErr {
36    /**
37     * Used to indicate a temporary failure (eg connection to a watchtower or remote backup of
38     * our state failed, but is expected to succeed at some point in the future).
39     *
40     * Such a failure will \"freeze\" a channel, preventing us from revoking old states or
41     * submitting new commitment transactions to the counterparty. Once the update(s) which failed
42     * have been successfully applied, ChannelManager::channel_monitor_updated can be used to
43     * restore the channel to an operational state.
44     *
45     * Note that a given ChannelManager will *never* re-generate a given ChannelMonitorUpdate. If
46     * you return a TemporaryFailure you must ensure that it is written to disk safely before
47     * writing out the latest ChannelManager state.
48     *
49     * Even when a channel has been \"frozen\" updates to the ChannelMonitor can continue to occur
50     * (eg if an inbound HTLC which we forwarded was claimed upstream resulting in us attempting
51     * to claim it on this channel) and those updates must be applied wherever they can be. At
52     * least one such updated ChannelMonitor must be persisted otherwise PermanentFailure should
53     * be returned to get things on-chain ASAP using only the in-memory copy. Obviously updates to
54     * the channel which would invalidate previous ChannelMonitors are not made when a channel has
55     * been \"frozen\".
56     *
57     * Note that even if updates made after TemporaryFailure succeed you must still call
58     * channel_monitor_updated to ensure you have the latest monitor and re-enable normal channel
59     * operation.
60     *
61     * Note that the update being processed here will not be replayed for you when you call
62     * ChannelManager::channel_monitor_updated, so you must store the update itself along
63     * with the persisted ChannelMonitor on your own local disk prior to returning a
64     * TemporaryFailure. You may, of course, employ a journaling approach, storing only the
65     * ChannelMonitorUpdate on disk without updating the monitor itself, replaying the journal at
66     * reload-time.
67     *
68     * For deployments where a copy of ChannelMonitors and other local state are backed up in a
69     * remote location (with local copies persisted immediately), it is anticipated that all
70     * updates will return TemporaryFailure until the remote copies could be updated.
71     */
72    LDKChannelMonitorUpdateErr_TemporaryFailure,
73    /**
74     * Used to indicate no further channel monitor updates will be allowed (eg we've moved on to a
75     * different watchtower and cannot update with all watchtowers that were previously informed
76     * of this channel).
77     *
78     * At reception of this error, ChannelManager will force-close the channel and return at
79     * least a final ChannelMonitorUpdate::ChannelForceClosed which must be delivered to at
80     * least one ChannelMonitor copy. Revocation secret MUST NOT be released and offchain channel
81     * update must be rejected.
82     *
83     * This failure may also signal a failure to update the local persisted copy of one of
84     * the channel monitor instance.
85     *
86     * Note that even when you fail a holder commitment transaction update, you must store the
87     * update to ensure you can claim from it in case of a duplicate copy of this ChannelMonitor
88     * broadcasts it (e.g distributed channel-monitor deployment)
89     *
90     * In case of distributed watchtowers deployment, the new version must be written to disk, as
91     * state may have been stored but rejected due to a block forcing a commitment broadcast. This
92     * storage is used to claim outputs of rejected state confirmed onchain by another watchtower,
93     * lagging behind on block processing.
94     */
95    LDKChannelMonitorUpdateErr_PermanentFailure,
96    /**
97     * Must be last for serialization purposes
98     */
99    LDKChannelMonitorUpdateErr_Sentinel,
100 } LDKChannelMonitorUpdateErr;
101
102 /**
103  * An enum that represents the speed at which we want a transaction to confirm used for feerate
104  * estimation.
105  */
106 typedef enum LDKConfirmationTarget {
107    /**
108     * We are happy with this transaction confirming slowly when feerate drops some.
109     */
110    LDKConfirmationTarget_Background,
111    /**
112     * We'd like this transaction to confirm without major delay, but 12-18 blocks is fine.
113     */
114    LDKConfirmationTarget_Normal,
115    /**
116     * We'd like this transaction to confirm in the next few blocks.
117     */
118    LDKConfirmationTarget_HighPriority,
119    /**
120     * Must be last for serialization purposes
121     */
122    LDKConfirmationTarget_Sentinel,
123 } LDKConfirmationTarget;
124
125 /**
126  * An enum representing the available verbosity levels of the logger.
127  */
128 typedef enum LDKLevel {
129    /**
130     *Designates logger being silent
131     */
132    LDKLevel_Off,
133    /**
134     * Designates very serious errors
135     */
136    LDKLevel_Error,
137    /**
138     * Designates hazardous situations
139     */
140    LDKLevel_Warn,
141    /**
142     * Designates useful information
143     */
144    LDKLevel_Info,
145    /**
146     * Designates lower priority information
147     */
148    LDKLevel_Debug,
149    /**
150     * Designates very low priority, often extremely verbose, information
151     */
152    LDKLevel_Trace,
153    /**
154     * Must be last for serialization purposes
155     */
156    LDKLevel_Sentinel,
157 } LDKLevel;
158
159 typedef enum LDKNetwork {
160    LDKNetwork_Bitcoin,
161    LDKNetwork_Testnet,
162    LDKNetwork_Regtest,
163    /**
164     * Must be last for serialization purposes
165     */
166    LDKNetwork_Sentinel,
167 } LDKNetwork;
168
169 typedef enum LDKSecp256k1Error {
170    LDKSecp256k1Error_IncorrectSignature,
171    LDKSecp256k1Error_InvalidMessage,
172    LDKSecp256k1Error_InvalidPublicKey,
173    LDKSecp256k1Error_InvalidSignature,
174    LDKSecp256k1Error_InvalidSecretKey,
175    LDKSecp256k1Error_InvalidRecoveryId,
176    LDKSecp256k1Error_InvalidTweak,
177    LDKSecp256k1Error_NotEnoughMemory,
178    LDKSecp256k1Error_CallbackPanicked,
179    /**
180     * Must be last for serialization purposes
181     */
182    LDKSecp256k1Error_Sentinel,
183 } LDKSecp256k1Error;
184
185 /**
186  * A serialized transaction, in (pointer, length) form.
187  *
188  * This type optionally owns its own memory, and thus the semantics around access change based on
189  * the `data_is_owned` flag. If `data_is_owned` is set, you must call `Transaction_free` to free
190  * the underlying buffer before the object goes out of scope. If `data_is_owned` is not set, any
191  * access to the buffer after the scope in which the object was provided to you is invalid. eg,
192  * access after you return from the call in which a `!data_is_owned` `Transaction` is provided to
193  * you would be invalid.
194  *
195  * Note that, while it may change in the future, because transactions on the Rust side are stored
196  * in a deserialized form, all `Transaction`s generated on the Rust side will have `data_is_owned`
197  * set. Similarly, while it may change in the future, all `Transaction`s you pass to Rust may have
198  * `data_is_owned` either set or unset at your discretion.
199  */
200 typedef struct LDKTransaction {
201    /**
202     * This is non-const for your convenience, an object passed to Rust is never written to.
203     */
204    uint8_t *data;
205    uintptr_t datalen;
206    bool data_is_owned;
207 } LDKTransaction;
208
209 typedef struct LDKCVecTempl_u8 {
210    uint8_t *data;
211    uintptr_t datalen;
212 } LDKCVecTempl_u8;
213
214 typedef struct LDKCVecTempl_u8 LDKCVec_u8Z;
215
216 /**
217  * A transaction output including a scriptPubKey and value.
218  * This type *does* own its own memory, so must be free'd appropriately.
219  */
220 typedef struct LDKTxOut {
221    LDKCVec_u8Z script_pubkey;
222    uint64_t value;
223 } LDKTxOut;
224
225 typedef struct LDKC2TupleTempl_usize__Transaction {
226    uintptr_t a;
227    struct LDKTransaction b;
228 } LDKC2TupleTempl_usize__Transaction;
229
230 typedef struct LDKC2TupleTempl_usize__Transaction LDKC2Tuple_usizeTransactionZ;
231
232 typedef union LDKCResultPtr_u8__ChannelMonitorUpdateErr {
233    uint8_t *result;
234    enum LDKChannelMonitorUpdateErr *err;
235 } LDKCResultPtr_u8__ChannelMonitorUpdateErr;
236
237 typedef struct LDKCResultTempl_u8__ChannelMonitorUpdateErr {
238    union LDKCResultPtr_u8__ChannelMonitorUpdateErr contents;
239    bool result_ok;
240 } LDKCResultTempl_u8__ChannelMonitorUpdateErr;
241
242 typedef struct LDKCResultTempl_u8__ChannelMonitorUpdateErr LDKCResult_NoneChannelMonitorUpdateErrZ;
243
244
245
246 /**
247  * General Err type for ChannelMonitor actions. Generally, this implies that the data provided is
248  * inconsistent with the ChannelMonitor being called. eg for ChannelMonitor::update_monitor this
249  * means you tried to update a monitor for a different channel or the ChannelMonitorUpdate was
250  * corrupted.
251  * Contains a developer-readable error message.
252  */
253 typedef struct MUST_USE_STRUCT LDKMonitorUpdateError {
254    /**
255     * Nearly everywhere, inner must be non-null, however in places where
256     * the Rust equivalent takes an Option, it may be set to null to indicate None.
257     */
258    LDKnativeMonitorUpdateError *inner;
259    bool is_owned;
260 } LDKMonitorUpdateError;
261
262 typedef union LDKCResultPtr_u8__MonitorUpdateError {
263    uint8_t *result;
264    struct LDKMonitorUpdateError *err;
265 } LDKCResultPtr_u8__MonitorUpdateError;
266
267 typedef struct LDKCResultTempl_u8__MonitorUpdateError {
268    union LDKCResultPtr_u8__MonitorUpdateError contents;
269    bool result_ok;
270 } LDKCResultTempl_u8__MonitorUpdateError;
271
272 typedef struct LDKCResultTempl_u8__MonitorUpdateError LDKCResult_NoneMonitorUpdateErrorZ;
273
274
275
276 /**
277  * A reference to a transaction output.
278  *
279  * Differs from bitcoin::blockdata::transaction::OutPoint as the index is a u16 instead of u32
280  * due to LN's restrictions on index values. Should reduce (possibly) unsafe conversions this way.
281  */
282 typedef struct MUST_USE_STRUCT LDKOutPoint {
283    /**
284     * Nearly everywhere, inner must be non-null, however in places where
285     * the Rust equivalent takes an Option, it may be set to null to indicate None.
286     */
287    LDKnativeOutPoint *inner;
288    bool is_owned;
289 } LDKOutPoint;
290
291 typedef struct LDKC2TupleTempl_OutPoint__CVec_u8Z {
292    struct LDKOutPoint a;
293    LDKCVec_u8Z b;
294 } LDKC2TupleTempl_OutPoint__CVec_u8Z;
295
296 typedef struct LDKC2TupleTempl_OutPoint__CVec_u8Z LDKC2Tuple_OutPointScriptZ;
297
298 typedef struct LDKC2TupleTempl_u32__TxOut {
299    uint32_t a;
300    struct LDKTxOut b;
301 } LDKC2TupleTempl_u32__TxOut;
302
303 typedef struct LDKC2TupleTempl_u32__TxOut LDKC2Tuple_u32TxOutZ;
304
305 /**
306  * Arbitrary 32 bytes, which could represent one of a few different things. You probably want to
307  * look up the corresponding function in rust-lightning's docs.
308  */
309 typedef struct LDKThirtyTwoBytes {
310    uint8_t data[32];
311 } LDKThirtyTwoBytes;
312
313 typedef struct LDKCVecTempl_C2TupleTempl_u32__TxOut {
314    struct LDKC2TupleTempl_u32__TxOut *data;
315    uintptr_t datalen;
316 } LDKCVecTempl_C2TupleTempl_u32__TxOut;
317
318 typedef struct LDKC2TupleTempl_ThirtyTwoBytes__CVecTempl_C2TupleTempl_u32__TxOut {
319    struct LDKThirtyTwoBytes a;
320    struct LDKCVecTempl_C2TupleTempl_u32__TxOut b;
321 } LDKC2TupleTempl_ThirtyTwoBytes__CVecTempl_C2TupleTempl_u32__TxOut;
322
323 typedef struct LDKC2TupleTempl_ThirtyTwoBytes__CVecTempl_C2TupleTempl_u32__TxOut LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ;
324
325 typedef struct LDKCVecTempl_C2TupleTempl_u32__TxOut LDKCVec_C2Tuple_u32TxOutZZ;
326
327 typedef struct LDKC2TupleTempl_u64__u64 {
328    uint64_t a;
329    uint64_t b;
330 } LDKC2TupleTempl_u64__u64;
331
332 typedef struct LDKC2TupleTempl_u64__u64 LDKC2Tuple_u64u64Z;
333
334 typedef struct LDKSignature {
335    uint8_t compact_form[64];
336 } LDKSignature;
337
338 typedef struct LDKCVecTempl_Signature {
339    struct LDKSignature *data;
340    uintptr_t datalen;
341 } LDKCVecTempl_Signature;
342
343 typedef struct LDKC2TupleTempl_Signature__CVecTempl_Signature {
344    struct LDKSignature a;
345    struct LDKCVecTempl_Signature b;
346 } LDKC2TupleTempl_Signature__CVecTempl_Signature;
347
348 typedef struct LDKC2TupleTempl_Signature__CVecTempl_Signature LDKC2Tuple_SignatureCVec_SignatureZZ;
349
350 typedef struct LDKCVecTempl_Signature LDKCVec_SignatureZ;
351
352 typedef union LDKCResultPtr_C2TupleTempl_Signature__CVecTempl_Signature________u8 {
353    struct LDKC2TupleTempl_Signature__CVecTempl_Signature *result;
354    uint8_t *err;
355 } LDKCResultPtr_C2TupleTempl_Signature__CVecTempl_Signature________u8;
356
357 typedef struct LDKCResultTempl_C2TupleTempl_Signature__CVecTempl_Signature________u8 {
358    union LDKCResultPtr_C2TupleTempl_Signature__CVecTempl_Signature________u8 contents;
359    bool result_ok;
360 } LDKCResultTempl_C2TupleTempl_Signature__CVecTempl_Signature________u8;
361
362 typedef struct LDKCResultTempl_C2TupleTempl_Signature__CVecTempl_Signature________u8 LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ;
363
364 typedef union LDKCResultPtr_Signature__u8 {
365    struct LDKSignature *result;
366    uint8_t *err;
367 } LDKCResultPtr_Signature__u8;
368
369 typedef struct LDKCResultTempl_Signature__u8 {
370    union LDKCResultPtr_Signature__u8 contents;
371    bool result_ok;
372 } LDKCResultTempl_Signature__u8;
373
374 typedef struct LDKCResultTempl_Signature__u8 LDKCResult_SignatureNoneZ;
375
376 typedef union LDKCResultPtr_CVecTempl_Signature_____u8 {
377    struct LDKCVecTempl_Signature *result;
378    uint8_t *err;
379 } LDKCResultPtr_CVecTempl_Signature_____u8;
380
381 typedef struct LDKCResultTempl_CVecTempl_Signature_____u8 {
382    union LDKCResultPtr_CVecTempl_Signature_____u8 contents;
383    bool result_ok;
384 } LDKCResultTempl_CVecTempl_Signature_____u8;
385
386 typedef struct LDKCResultTempl_CVecTempl_Signature_____u8 LDKCResult_CVec_SignatureZNoneZ;
387
388 /**
389  * A Rust str object, ie a reference to a UTF8-valid string.
390  * This is *not* null-terminated so cannot be used directly as a C string!
391  */
392 typedef struct LDKStr {
393    const uint8_t *chars;
394    uintptr_t len;
395 } LDKStr;
396
397 /**
398  * Indicates an error on the client's part (usually some variant of attempting to use too-low or
399  * too-high values)
400  */
401 typedef enum LDKAPIError_Tag {
402    /**
403     * Indicates the API was wholly misused (see err for more). Cases where these can be returned
404     * are documented, but generally indicates some precondition of a function was violated.
405     */
406    LDKAPIError_APIMisuseError,
407    /**
408     * Due to a high feerate, we were unable to complete the request.
409     * For example, this may be returned if the feerate implies we cannot open a channel at the
410     * requested value, but opening a larger channel would succeed.
411     */
412    LDKAPIError_FeeRateTooHigh,
413    /**
414     * A malformed Route was provided (eg overflowed value, node id mismatch, overly-looped route,
415     * too-many-hops, etc).
416     */
417    LDKAPIError_RouteError,
418    /**
419     * We were unable to complete the request as the Channel required to do so is unable to
420     * complete the request (or was not found). This can take many forms, including disconnected
421     * peer, channel at capacity, channel shutting down, etc.
422     */
423    LDKAPIError_ChannelUnavailable,
424    /**
425     * An attempt to call watch/update_channel returned an Err (ie you did this!), causing the
426     * attempted action to fail.
427     */
428    LDKAPIError_MonitorUpdateFailed,
429    /**
430     * Must be last for serialization purposes
431     */
432    LDKAPIError_Sentinel,
433 } LDKAPIError_Tag;
434
435 typedef struct LDKAPIError_LDKAPIMisuseError_Body {
436    LDKCVec_u8Z err;
437 } LDKAPIError_LDKAPIMisuseError_Body;
438
439 typedef struct LDKAPIError_LDKFeeRateTooHigh_Body {
440    LDKCVec_u8Z err;
441    uint32_t feerate;
442 } LDKAPIError_LDKFeeRateTooHigh_Body;
443
444 typedef struct LDKAPIError_LDKRouteError_Body {
445    struct LDKStr err;
446 } LDKAPIError_LDKRouteError_Body;
447
448 typedef struct LDKAPIError_LDKChannelUnavailable_Body {
449    LDKCVec_u8Z err;
450 } LDKAPIError_LDKChannelUnavailable_Body;
451
452 typedef struct MUST_USE_STRUCT LDKAPIError {
453    LDKAPIError_Tag tag;
454    union {
455       LDKAPIError_LDKAPIMisuseError_Body api_misuse_error;
456       LDKAPIError_LDKFeeRateTooHigh_Body fee_rate_too_high;
457       LDKAPIError_LDKRouteError_Body route_error;
458       LDKAPIError_LDKChannelUnavailable_Body channel_unavailable;
459    };
460 } LDKAPIError;
461
462 typedef union LDKCResultPtr_u8__APIError {
463    uint8_t *result;
464    struct LDKAPIError *err;
465 } LDKCResultPtr_u8__APIError;
466
467 typedef struct LDKCResultTempl_u8__APIError {
468    union LDKCResultPtr_u8__APIError contents;
469    bool result_ok;
470 } LDKCResultTempl_u8__APIError;
471
472 typedef struct LDKCResultTempl_u8__APIError LDKCResult_NoneAPIErrorZ;
473
474
475
476 /**
477  * If a payment fails to send, it can be in one of several states. This enum is returned as the
478  * Err() type describing which state the payment is in, see the description of individual enum
479  * states for more.
480  */
481 typedef struct MUST_USE_STRUCT LDKPaymentSendFailure {
482    /**
483     * Nearly everywhere, inner must be non-null, however in places where
484     * the Rust equivalent takes an Option, it may be set to null to indicate None.
485     */
486    LDKnativePaymentSendFailure *inner;
487    bool is_owned;
488 } LDKPaymentSendFailure;
489
490 typedef union LDKCResultPtr_u8__PaymentSendFailure {
491    uint8_t *result;
492    struct LDKPaymentSendFailure *err;
493 } LDKCResultPtr_u8__PaymentSendFailure;
494
495 typedef struct LDKCResultTempl_u8__PaymentSendFailure {
496    union LDKCResultPtr_u8__PaymentSendFailure contents;
497    bool result_ok;
498 } LDKCResultTempl_u8__PaymentSendFailure;
499
500 typedef struct LDKCResultTempl_u8__PaymentSendFailure LDKCResult_NonePaymentSendFailureZ;
501
502
503
504 /**
505  * A channel_announcement message to be sent or received from a peer
506  */
507 typedef struct MUST_USE_STRUCT LDKChannelAnnouncement {
508    /**
509     * Nearly everywhere, inner must be non-null, however in places where
510     * the Rust equivalent takes an Option, it may be set to null to indicate None.
511     */
512    LDKnativeChannelAnnouncement *inner;
513    bool is_owned;
514 } LDKChannelAnnouncement;
515
516
517
518 /**
519  * A channel_update message to be sent or received from a peer
520  */
521 typedef struct MUST_USE_STRUCT LDKChannelUpdate {
522    /**
523     * Nearly everywhere, inner must be non-null, however in places where
524     * the Rust equivalent takes an Option, it may be set to null to indicate None.
525     */
526    LDKnativeChannelUpdate *inner;
527    bool is_owned;
528 } LDKChannelUpdate;
529
530 typedef struct LDKC3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate {
531    struct LDKChannelAnnouncement a;
532    struct LDKChannelUpdate b;
533    struct LDKChannelUpdate c;
534 } LDKC3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate;
535
536 typedef struct LDKC3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ;
537
538
539
540 /**
541  * An Err type for failure to process messages.
542  */
543 typedef struct MUST_USE_STRUCT LDKLightningError {
544    /**
545     * Nearly everywhere, inner must be non-null, however in places where
546     * the Rust equivalent takes an Option, it may be set to null to indicate None.
547     */
548    LDKnativeLightningError *inner;
549    bool is_owned;
550 } LDKLightningError;
551
552 typedef union LDKCResultPtr_u8__LightningError {
553    uint8_t *result;
554    struct LDKLightningError *err;
555 } LDKCResultPtr_u8__LightningError;
556
557 typedef struct LDKCResultTempl_u8__LightningError {
558    union LDKCResultPtr_u8__LightningError contents;
559    bool result_ok;
560 } LDKCResultTempl_u8__LightningError;
561
562 typedef struct LDKCResultTempl_u8__LightningError LDKCResult_NoneLightningErrorZ;
563
564
565
566 /**
567  * Error for PeerManager errors. If you get one of these, you must disconnect the socket and
568  * generate no further read_event/write_buffer_space_avail calls for the descriptor, only
569  * triggering a single socket_disconnected call (unless it was provided in response to a
570  * new_*_connection event, in which case no such socket_disconnected() must be called and the
571  * socket silently disconencted).
572  */
573 typedef struct MUST_USE_STRUCT LDKPeerHandleError {
574    /**
575     * Nearly everywhere, inner must be non-null, however in places where
576     * the Rust equivalent takes an Option, it may be set to null to indicate None.
577     */
578    LDKnativePeerHandleError *inner;
579    bool is_owned;
580 } LDKPeerHandleError;
581
582 typedef union LDKCResultPtr_u8__PeerHandleError {
583    uint8_t *result;
584    struct LDKPeerHandleError *err;
585 } LDKCResultPtr_u8__PeerHandleError;
586
587 typedef struct LDKCResultTempl_u8__PeerHandleError {
588    union LDKCResultPtr_u8__PeerHandleError contents;
589    bool result_ok;
590 } LDKCResultTempl_u8__PeerHandleError;
591
592 typedef struct LDKCResultTempl_u8__PeerHandleError LDKCResult_NonePeerHandleErrorZ;
593
594
595
596 /**
597  * A wrapper on CommitmentTransaction indicating that the derived fields (the built bitcoin
598  * transaction and the transaction creation keys) are trusted.
599  *
600  * See trust() and verify() functions on CommitmentTransaction.
601  *
602  * This structure implements Deref.
603  */
604 typedef struct MUST_USE_STRUCT LDKTrustedCommitmentTransaction {
605    /**
606     * Nearly everywhere, inner must be non-null, however in places where
607     * the Rust equivalent takes an Option, it may be set to null to indicate None.
608     */
609    LDKnativeTrustedCommitmentTransaction *inner;
610    bool is_owned;
611 } LDKTrustedCommitmentTransaction;
612
613 typedef union LDKCResultPtr_TrustedCommitmentTransaction__u8 {
614    struct LDKTrustedCommitmentTransaction *result;
615    uint8_t *err;
616 } LDKCResultPtr_TrustedCommitmentTransaction__u8;
617
618 typedef struct LDKCResultTempl_TrustedCommitmentTransaction__u8 {
619    union LDKCResultPtr_TrustedCommitmentTransaction__u8 contents;
620    bool result_ok;
621 } LDKCResultTempl_TrustedCommitmentTransaction__u8;
622
623 typedef struct LDKCResultTempl_TrustedCommitmentTransaction__u8 LDKCResult_TrustedCommitmentTransactionNoneZ;
624
625 typedef struct LDKPublicKey {
626    uint8_t compressed_form[33];
627 } LDKPublicKey;
628
629 /**
630  * When on-chain outputs are created by rust-lightning (which our counterparty is not able to
631  * claim at any point in the future) an event is generated which you must track and be able to
632  * spend on-chain. The information needed to do this is provided in this enum, including the
633  * outpoint describing which txid and output index is available, the full output which exists at
634  * that txid/index, and any keys or other information required to sign.
635  */
636 typedef enum LDKSpendableOutputDescriptor_Tag {
637    /**
638     * An output to a script which was provided via KeysInterface, thus you should already know
639     * how to spend it. No keys are provided as rust-lightning was never given any keys - only the
640     * script_pubkey as it appears in the output.
641     * These may include outputs from a transaction punishing our counterparty or claiming an HTLC
642     * on-chain using the payment preimage or after it has timed out.
643     */
644    LDKSpendableOutputDescriptor_StaticOutput,
645    /**
646     * An output to a P2WSH script which can be spent with a single signature after a CSV delay.
647     *
648     * The witness in the spending input should be:
649     * <BIP 143 signature> <empty vector> (MINIMALIF standard rule) <provided witnessScript>
650     *
651     * Note that the nSequence field in the spending input must be set to to_self_delay
652     * (which means the transaction is not broadcastable until at least to_self_delay
653     * blocks after the outpoint confirms).
654     *
655     * These are generally the result of a \"revocable\" output to us, spendable only by us unless
656     * it is an output from an old state which we broadcast (which should never happen).
657     *
658     * To derive the delayed_payment key which is used to sign for this input, you must pass the
659     * holder delayed_payment_base_key (ie the private key which corresponds to the pubkey in
660     * ChannelKeys::pubkeys().delayed_payment_basepoint) and the provided per_commitment_point to
661     * chan_utils::derive_private_key. The public key can be generated without the secret key
662     * using chan_utils::derive_public_key and only the delayed_payment_basepoint which appears in
663     * ChannelKeys::pubkeys().
664     *
665     * To derive the revocation_pubkey provided here (which is used in the witness
666     * script generation), you must pass the counterparty revocation_basepoint (which appears in the
667     * call to ChannelKeys::ready_channel) and the provided per_commitment point
668     * to chan_utils::derive_public_revocation_key.
669     *
670     * The witness script which is hashed and included in the output script_pubkey may be
671     * regenerated by passing the revocation_pubkey (derived as above), our delayed_payment pubkey
672     * (derived as above), and the to_self_delay contained here to
673     * chan_utils::get_revokeable_redeemscript.
674     */
675    LDKSpendableOutputDescriptor_DynamicOutputP2WSH,
676    /**
677     * An output to a P2WPKH, spendable exclusively by our payment key (ie the private key which
678     * corresponds to the public key in ChannelKeys::pubkeys().payment_point).
679     * The witness in the spending input, is, thus, simply:
680     * <BIP 143 signature> <payment key>
681     *
682     * These are generally the result of our counterparty having broadcast the current state,
683     * allowing us to claim the non-HTLC-encumbered outputs immediately.
684     */
685    LDKSpendableOutputDescriptor_StaticOutputCounterpartyPayment,
686    /**
687     * Must be last for serialization purposes
688     */
689    LDKSpendableOutputDescriptor_Sentinel,
690 } LDKSpendableOutputDescriptor_Tag;
691
692 typedef struct LDKSpendableOutputDescriptor_LDKStaticOutput_Body {
693    struct LDKOutPoint outpoint;
694    struct LDKTxOut output;
695 } LDKSpendableOutputDescriptor_LDKStaticOutput_Body;
696
697 typedef struct LDKSpendableOutputDescriptor_LDKDynamicOutputP2WSH_Body {
698    struct LDKOutPoint outpoint;
699    struct LDKPublicKey per_commitment_point;
700    uint16_t to_self_delay;
701    struct LDKTxOut output;
702    LDKC2Tuple_u64u64Z key_derivation_params;
703    struct LDKPublicKey revocation_pubkey;
704 } LDKSpendableOutputDescriptor_LDKDynamicOutputP2WSH_Body;
705
706 typedef struct LDKSpendableOutputDescriptor_LDKStaticOutputCounterpartyPayment_Body {
707    struct LDKOutPoint outpoint;
708    struct LDKTxOut output;
709    LDKC2Tuple_u64u64Z key_derivation_params;
710 } LDKSpendableOutputDescriptor_LDKStaticOutputCounterpartyPayment_Body;
711
712 typedef struct MUST_USE_STRUCT LDKSpendableOutputDescriptor {
713    LDKSpendableOutputDescriptor_Tag tag;
714    union {
715       LDKSpendableOutputDescriptor_LDKStaticOutput_Body static_output;
716       LDKSpendableOutputDescriptor_LDKDynamicOutputP2WSH_Body dynamic_output_p2wsh;
717       LDKSpendableOutputDescriptor_LDKStaticOutputCounterpartyPayment_Body static_output_counterparty_payment;
718    };
719 } LDKSpendableOutputDescriptor;
720
721 typedef struct LDKCVecTempl_SpendableOutputDescriptor {
722    struct LDKSpendableOutputDescriptor *data;
723    uintptr_t datalen;
724 } LDKCVecTempl_SpendableOutputDescriptor;
725
726 typedef struct LDKCVecTempl_SpendableOutputDescriptor LDKCVec_SpendableOutputDescriptorZ;
727
728 /**
729  * An Event which you should probably take some action in response to.
730  *
731  * Note that while Writeable and Readable are implemented for Event, you probably shouldn't use
732  * them directly as they don't round-trip exactly (for example FundingGenerationReady is never
733  * written as it makes no sense to respond to it after reconnecting to peers).
734  */
735 typedef enum LDKEvent_Tag {
736    /**
737     * Used to indicate that the client should generate a funding transaction with the given
738     * parameters and then call ChannelManager::funding_transaction_generated.
739     * Generated in ChannelManager message handling.
740     * Note that *all inputs* in the funding transaction must spend SegWit outputs or your
741     * counterparty can steal your funds!
742     */
743    LDKEvent_FundingGenerationReady,
744    /**
745     * Used to indicate that the client may now broadcast the funding transaction it created for a
746     * channel. Broadcasting such a transaction prior to this event may lead to our counterparty
747     * trivially stealing all funds in the funding transaction!
748     */
749    LDKEvent_FundingBroadcastSafe,
750    /**
751     * Indicates we've received money! Just gotta dig out that payment preimage and feed it to
752     * ChannelManager::claim_funds to get it....
753     * Note that if the preimage is not known or the amount paid is incorrect, you should call
754     * ChannelManager::fail_htlc_backwards to free up resources for this HTLC and avoid
755     * network congestion.
756     * The amount paid should be considered 'incorrect' when it is less than or more than twice
757     * the amount expected.
758     * If you fail to call either ChannelManager::claim_funds or
759     * ChannelManager::fail_htlc_backwards within the HTLC's timeout, the HTLC will be
760     * automatically failed.
761     */
762    LDKEvent_PaymentReceived,
763    /**
764     * Indicates an outbound payment we made succeeded (ie it made it all the way to its target
765     * and we got back the payment preimage for it).
766     * Note that duplicative PaymentSent Events may be generated - it is your responsibility to
767     * deduplicate them by payment_preimage (which MUST be unique)!
768     */
769    LDKEvent_PaymentSent,
770    /**
771     * Indicates an outbound payment we made failed. Probably some intermediary node dropped
772     * something. You may wish to retry with a different route.
773     * Note that duplicative PaymentFailed Events may be generated - it is your responsibility to
774     * deduplicate them by payment_hash (which MUST be unique)!
775     */
776    LDKEvent_PaymentFailed,
777    /**
778     * Used to indicate that ChannelManager::process_pending_htlc_forwards should be called at a
779     * time in the future.
780     */
781    LDKEvent_PendingHTLCsForwardable,
782    /**
783     * Used to indicate that an output was generated on-chain which you should know how to spend.
784     * Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
785     * counterparty spending them due to some kind of timeout. Thus, you need to store them
786     * somewhere and spend them when you create on-chain transactions.
787     */
788    LDKEvent_SpendableOutputs,
789    /**
790     * Must be last for serialization purposes
791     */
792    LDKEvent_Sentinel,
793 } LDKEvent_Tag;
794
795 typedef struct LDKEvent_LDKFundingGenerationReady_Body {
796    struct LDKThirtyTwoBytes temporary_channel_id;
797    uint64_t channel_value_satoshis;
798    LDKCVec_u8Z output_script;
799    uint64_t user_channel_id;
800 } LDKEvent_LDKFundingGenerationReady_Body;
801
802 typedef struct LDKEvent_LDKFundingBroadcastSafe_Body {
803    struct LDKOutPoint funding_txo;
804    uint64_t user_channel_id;
805 } LDKEvent_LDKFundingBroadcastSafe_Body;
806
807 typedef struct LDKEvent_LDKPaymentReceived_Body {
808    struct LDKThirtyTwoBytes payment_hash;
809    struct LDKThirtyTwoBytes payment_secret;
810    uint64_t amt;
811 } LDKEvent_LDKPaymentReceived_Body;
812
813 typedef struct LDKEvent_LDKPaymentSent_Body {
814    struct LDKThirtyTwoBytes payment_preimage;
815 } LDKEvent_LDKPaymentSent_Body;
816
817 typedef struct LDKEvent_LDKPaymentFailed_Body {
818    struct LDKThirtyTwoBytes payment_hash;
819    bool rejected_by_dest;
820 } LDKEvent_LDKPaymentFailed_Body;
821
822 typedef struct LDKEvent_LDKPendingHTLCsForwardable_Body {
823    uint64_t time_forwardable;
824 } LDKEvent_LDKPendingHTLCsForwardable_Body;
825
826 typedef struct LDKEvent_LDKSpendableOutputs_Body {
827    LDKCVec_SpendableOutputDescriptorZ outputs;
828 } LDKEvent_LDKSpendableOutputs_Body;
829
830 typedef struct MUST_USE_STRUCT LDKEvent {
831    LDKEvent_Tag tag;
832    union {
833       LDKEvent_LDKFundingGenerationReady_Body funding_generation_ready;
834       LDKEvent_LDKFundingBroadcastSafe_Body funding_broadcast_safe;
835       LDKEvent_LDKPaymentReceived_Body payment_received;
836       LDKEvent_LDKPaymentSent_Body payment_sent;
837       LDKEvent_LDKPaymentFailed_Body payment_failed;
838       LDKEvent_LDKPendingHTLCsForwardable_Body pending_htl_cs_forwardable;
839       LDKEvent_LDKSpendableOutputs_Body spendable_outputs;
840    };
841 } LDKEvent;
842
843
844
845 /**
846  * An accept_channel message to be sent or received from a peer
847  */
848 typedef struct MUST_USE_STRUCT LDKAcceptChannel {
849    /**
850     * Nearly everywhere, inner must be non-null, however in places where
851     * the Rust equivalent takes an Option, it may be set to null to indicate None.
852     */
853    LDKnativeAcceptChannel *inner;
854    bool is_owned;
855 } LDKAcceptChannel;
856
857
858
859 /**
860  * An open_channel message to be sent or received from a peer
861  */
862 typedef struct MUST_USE_STRUCT LDKOpenChannel {
863    /**
864     * Nearly everywhere, inner must be non-null, however in places where
865     * the Rust equivalent takes an Option, it may be set to null to indicate None.
866     */
867    LDKnativeOpenChannel *inner;
868    bool is_owned;
869 } LDKOpenChannel;
870
871
872
873 /**
874  * A funding_created message to be sent or received from a peer
875  */
876 typedef struct MUST_USE_STRUCT LDKFundingCreated {
877    /**
878     * Nearly everywhere, inner must be non-null, however in places where
879     * the Rust equivalent takes an Option, it may be set to null to indicate None.
880     */
881    LDKnativeFundingCreated *inner;
882    bool is_owned;
883 } LDKFundingCreated;
884
885
886
887 /**
888  * A funding_signed message to be sent or received from a peer
889  */
890 typedef struct MUST_USE_STRUCT LDKFundingSigned {
891    /**
892     * Nearly everywhere, inner must be non-null, however in places where
893     * the Rust equivalent takes an Option, it may be set to null to indicate None.
894     */
895    LDKnativeFundingSigned *inner;
896    bool is_owned;
897 } LDKFundingSigned;
898
899
900
901 /**
902  * A funding_locked message to be sent or received from a peer
903  */
904 typedef struct MUST_USE_STRUCT LDKFundingLocked {
905    /**
906     * Nearly everywhere, inner must be non-null, however in places where
907     * the Rust equivalent takes an Option, it may be set to null to indicate None.
908     */
909    LDKnativeFundingLocked *inner;
910    bool is_owned;
911 } LDKFundingLocked;
912
913
914
915 /**
916  * An announcement_signatures message to be sent or received from a peer
917  */
918 typedef struct MUST_USE_STRUCT LDKAnnouncementSignatures {
919    /**
920     * Nearly everywhere, inner must be non-null, however in places where
921     * the Rust equivalent takes an Option, it may be set to null to indicate None.
922     */
923    LDKnativeAnnouncementSignatures *inner;
924    bool is_owned;
925 } LDKAnnouncementSignatures;
926
927
928
929 /**
930  * Struct used to return values from revoke_and_ack messages, containing a bunch of commitment
931  * transaction updates if they were pending.
932  */
933 typedef struct MUST_USE_STRUCT LDKCommitmentUpdate {
934    /**
935     * Nearly everywhere, inner must be non-null, however in places where
936     * the Rust equivalent takes an Option, it may be set to null to indicate None.
937     */
938    LDKnativeCommitmentUpdate *inner;
939    bool is_owned;
940 } LDKCommitmentUpdate;
941
942
943
944 /**
945  * A revoke_and_ack message to be sent or received from a peer
946  */
947 typedef struct MUST_USE_STRUCT LDKRevokeAndACK {
948    /**
949     * Nearly everywhere, inner must be non-null, however in places where
950     * the Rust equivalent takes an Option, it may be set to null to indicate None.
951     */
952    LDKnativeRevokeAndACK *inner;
953    bool is_owned;
954 } LDKRevokeAndACK;
955
956
957
958 /**
959  * A closing_signed message to be sent or received from a peer
960  */
961 typedef struct MUST_USE_STRUCT LDKClosingSigned {
962    /**
963     * Nearly everywhere, inner must be non-null, however in places where
964     * the Rust equivalent takes an Option, it may be set to null to indicate None.
965     */
966    LDKnativeClosingSigned *inner;
967    bool is_owned;
968 } LDKClosingSigned;
969
970
971
972 /**
973  * A shutdown message to be sent or received from a peer
974  */
975 typedef struct MUST_USE_STRUCT LDKShutdown {
976    /**
977     * Nearly everywhere, inner must be non-null, however in places where
978     * the Rust equivalent takes an Option, it may be set to null to indicate None.
979     */
980    LDKnativeShutdown *inner;
981    bool is_owned;
982 } LDKShutdown;
983
984
985
986 /**
987  * A channel_reestablish message to be sent or received from a peer
988  */
989 typedef struct MUST_USE_STRUCT LDKChannelReestablish {
990    /**
991     * Nearly everywhere, inner must be non-null, however in places where
992     * the Rust equivalent takes an Option, it may be set to null to indicate None.
993     */
994    LDKnativeChannelReestablish *inner;
995    bool is_owned;
996 } LDKChannelReestablish;
997
998
999
1000 /**
1001  * A node_announcement message to be sent or received from a peer
1002  */
1003 typedef struct MUST_USE_STRUCT LDKNodeAnnouncement {
1004    /**
1005     * Nearly everywhere, inner must be non-null, however in places where
1006     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1007     */
1008    LDKnativeNodeAnnouncement *inner;
1009    bool is_owned;
1010 } LDKNodeAnnouncement;
1011
1012
1013
1014 /**
1015  * An error message to be sent or received from a peer
1016  */
1017 typedef struct MUST_USE_STRUCT LDKErrorMessage {
1018    /**
1019     * Nearly everywhere, inner must be non-null, however in places where
1020     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1021     */
1022    LDKnativeErrorMessage *inner;
1023    bool is_owned;
1024 } LDKErrorMessage;
1025
1026 /**
1027  * Used to put an error message in a LightningError
1028  */
1029 typedef enum LDKErrorAction_Tag {
1030    /**
1031     * The peer took some action which made us think they were useless. Disconnect them.
1032     */
1033    LDKErrorAction_DisconnectPeer,
1034    /**
1035     * The peer did something harmless that we weren't able to process, just log and ignore
1036     */
1037    LDKErrorAction_IgnoreError,
1038    /**
1039     * The peer did something incorrect. Tell them.
1040     */
1041    LDKErrorAction_SendErrorMessage,
1042    /**
1043     * Must be last for serialization purposes
1044     */
1045    LDKErrorAction_Sentinel,
1046 } LDKErrorAction_Tag;
1047
1048 typedef struct LDKErrorAction_LDKDisconnectPeer_Body {
1049    struct LDKErrorMessage msg;
1050 } LDKErrorAction_LDKDisconnectPeer_Body;
1051
1052 typedef struct LDKErrorAction_LDKSendErrorMessage_Body {
1053    struct LDKErrorMessage msg;
1054 } LDKErrorAction_LDKSendErrorMessage_Body;
1055
1056 typedef struct MUST_USE_STRUCT LDKErrorAction {
1057    LDKErrorAction_Tag tag;
1058    union {
1059       LDKErrorAction_LDKDisconnectPeer_Body disconnect_peer;
1060       LDKErrorAction_LDKSendErrorMessage_Body send_error_message;
1061    };
1062 } LDKErrorAction;
1063
1064 /**
1065  * The information we received from a peer along the route of a payment we originated. This is
1066  * returned by ChannelMessageHandler::handle_update_fail_htlc to be passed into
1067  * RoutingMessageHandler::handle_htlc_fail_channel_update to update our network map.
1068  */
1069 typedef enum LDKHTLCFailChannelUpdate_Tag {
1070    /**
1071     * We received an error which included a full ChannelUpdate message.
1072     */
1073    LDKHTLCFailChannelUpdate_ChannelUpdateMessage,
1074    /**
1075     * We received an error which indicated only that a channel has been closed
1076     */
1077    LDKHTLCFailChannelUpdate_ChannelClosed,
1078    /**
1079     * We received an error which indicated only that a node has failed
1080     */
1081    LDKHTLCFailChannelUpdate_NodeFailure,
1082    /**
1083     * Must be last for serialization purposes
1084     */
1085    LDKHTLCFailChannelUpdate_Sentinel,
1086 } LDKHTLCFailChannelUpdate_Tag;
1087
1088 typedef struct LDKHTLCFailChannelUpdate_LDKChannelUpdateMessage_Body {
1089    struct LDKChannelUpdate msg;
1090 } LDKHTLCFailChannelUpdate_LDKChannelUpdateMessage_Body;
1091
1092 typedef struct LDKHTLCFailChannelUpdate_LDKChannelClosed_Body {
1093    uint64_t short_channel_id;
1094    bool is_permanent;
1095 } LDKHTLCFailChannelUpdate_LDKChannelClosed_Body;
1096
1097 typedef struct LDKHTLCFailChannelUpdate_LDKNodeFailure_Body {
1098    struct LDKPublicKey node_id;
1099    bool is_permanent;
1100 } LDKHTLCFailChannelUpdate_LDKNodeFailure_Body;
1101
1102 typedef struct MUST_USE_STRUCT LDKHTLCFailChannelUpdate {
1103    LDKHTLCFailChannelUpdate_Tag tag;
1104    union {
1105       LDKHTLCFailChannelUpdate_LDKChannelUpdateMessage_Body channel_update_message;
1106       LDKHTLCFailChannelUpdate_LDKChannelClosed_Body channel_closed;
1107       LDKHTLCFailChannelUpdate_LDKNodeFailure_Body node_failure;
1108    };
1109 } LDKHTLCFailChannelUpdate;
1110
1111
1112
1113 /**
1114  * A query_channel_range message is used to query a peer for channel
1115  * UTXOs in a range of blocks. The recipient of a query makes a best
1116  * effort to reply to the query using one or more reply_channel_range
1117  * messages.
1118  */
1119 typedef struct MUST_USE_STRUCT LDKQueryChannelRange {
1120    /**
1121     * Nearly everywhere, inner must be non-null, however in places where
1122     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1123     */
1124    LDKnativeQueryChannelRange *inner;
1125    bool is_owned;
1126 } LDKQueryChannelRange;
1127
1128
1129
1130 /**
1131  * A query_short_channel_ids message is used to query a peer for
1132  * routing gossip messages related to one or more short_channel_ids.
1133  * The query recipient will reply with the latest, if available,
1134  * channel_announcement, channel_update and node_announcement messages
1135  * it maintains for the requested short_channel_ids followed by a
1136  * reply_short_channel_ids_end message. The short_channel_ids sent in
1137  * this query are encoded. We only support encoding_type=0 uncompressed
1138  * serialization and do not support encoding_type=1 zlib serialization.
1139  */
1140 typedef struct MUST_USE_STRUCT LDKQueryShortChannelIds {
1141    /**
1142     * Nearly everywhere, inner must be non-null, however in places where
1143     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1144     */
1145    LDKnativeQueryShortChannelIds *inner;
1146    bool is_owned;
1147 } LDKQueryShortChannelIds;
1148
1149 /**
1150  * An event generated by ChannelManager which indicates a message should be sent to a peer (or
1151  * broadcast to most peers).
1152  * These events are handled by PeerManager::process_events if you are using a PeerManager.
1153  */
1154 typedef enum LDKMessageSendEvent_Tag {
1155    /**
1156     * Used to indicate that we've accepted a channel open and should send the accept_channel
1157     * message provided to the given peer.
1158     */
1159    LDKMessageSendEvent_SendAcceptChannel,
1160    /**
1161     * Used to indicate that we've initiated a channel open and should send the open_channel
1162     * message provided to the given peer.
1163     */
1164    LDKMessageSendEvent_SendOpenChannel,
1165    /**
1166     * Used to indicate that a funding_created message should be sent to the peer with the given node_id.
1167     */
1168    LDKMessageSendEvent_SendFundingCreated,
1169    /**
1170     * Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
1171     */
1172    LDKMessageSendEvent_SendFundingSigned,
1173    /**
1174     * Used to indicate that a funding_locked message should be sent to the peer with the given node_id.
1175     */
1176    LDKMessageSendEvent_SendFundingLocked,
1177    /**
1178     * Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
1179     */
1180    LDKMessageSendEvent_SendAnnouncementSignatures,
1181    /**
1182     * Used to indicate that a series of HTLC update messages, as well as a commitment_signed
1183     * message should be sent to the peer with the given node_id.
1184     */
1185    LDKMessageSendEvent_UpdateHTLCs,
1186    /**
1187     * Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
1188     */
1189    LDKMessageSendEvent_SendRevokeAndACK,
1190    /**
1191     * Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
1192     */
1193    LDKMessageSendEvent_SendClosingSigned,
1194    /**
1195     * Used to indicate that a shutdown message should be sent to the peer with the given node_id.
1196     */
1197    LDKMessageSendEvent_SendShutdown,
1198    /**
1199     * Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
1200     */
1201    LDKMessageSendEvent_SendChannelReestablish,
1202    /**
1203     * Used to indicate that a channel_announcement and channel_update should be broadcast to all
1204     * peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
1205     *
1206     * Note that after doing so, you very likely (unless you did so very recently) want to call
1207     * ChannelManager::broadcast_node_announcement to trigger a BroadcastNodeAnnouncement event.
1208     * This ensures that any nodes which see our channel_announcement also have a relevant
1209     * node_announcement, including relevant feature flags which may be important for routing
1210     * through or to us.
1211     */
1212    LDKMessageSendEvent_BroadcastChannelAnnouncement,
1213    /**
1214     * Used to indicate that a node_announcement should be broadcast to all peers.
1215     */
1216    LDKMessageSendEvent_BroadcastNodeAnnouncement,
1217    /**
1218     * Used to indicate that a channel_update should be broadcast to all peers.
1219     */
1220    LDKMessageSendEvent_BroadcastChannelUpdate,
1221    /**
1222     * Broadcast an error downstream to be handled
1223     */
1224    LDKMessageSendEvent_HandleError,
1225    /**
1226     * When a payment fails we may receive updates back from the hop where it failed. In such
1227     * cases this event is generated so that we can inform the network graph of this information.
1228     */
1229    LDKMessageSendEvent_PaymentFailureNetworkUpdate,
1230    /**
1231     * Query a peer for channels with funding transaction UTXOs in a block range.
1232     */
1233    LDKMessageSendEvent_SendChannelRangeQuery,
1234    /**
1235     * Request routing gossip messages from a peer for a list of channels identified by
1236     * their short_channel_ids.
1237     */
1238    LDKMessageSendEvent_SendShortIdsQuery,
1239    /**
1240     * Must be last for serialization purposes
1241     */
1242    LDKMessageSendEvent_Sentinel,
1243 } LDKMessageSendEvent_Tag;
1244
1245 typedef struct LDKMessageSendEvent_LDKSendAcceptChannel_Body {
1246    struct LDKPublicKey node_id;
1247    struct LDKAcceptChannel msg;
1248 } LDKMessageSendEvent_LDKSendAcceptChannel_Body;
1249
1250 typedef struct LDKMessageSendEvent_LDKSendOpenChannel_Body {
1251    struct LDKPublicKey node_id;
1252    struct LDKOpenChannel msg;
1253 } LDKMessageSendEvent_LDKSendOpenChannel_Body;
1254
1255 typedef struct LDKMessageSendEvent_LDKSendFundingCreated_Body {
1256    struct LDKPublicKey node_id;
1257    struct LDKFundingCreated msg;
1258 } LDKMessageSendEvent_LDKSendFundingCreated_Body;
1259
1260 typedef struct LDKMessageSendEvent_LDKSendFundingSigned_Body {
1261    struct LDKPublicKey node_id;
1262    struct LDKFundingSigned msg;
1263 } LDKMessageSendEvent_LDKSendFundingSigned_Body;
1264
1265 typedef struct LDKMessageSendEvent_LDKSendFundingLocked_Body {
1266    struct LDKPublicKey node_id;
1267    struct LDKFundingLocked msg;
1268 } LDKMessageSendEvent_LDKSendFundingLocked_Body;
1269
1270 typedef struct LDKMessageSendEvent_LDKSendAnnouncementSignatures_Body {
1271    struct LDKPublicKey node_id;
1272    struct LDKAnnouncementSignatures msg;
1273 } LDKMessageSendEvent_LDKSendAnnouncementSignatures_Body;
1274
1275 typedef struct LDKMessageSendEvent_LDKUpdateHTLCs_Body {
1276    struct LDKPublicKey node_id;
1277    struct LDKCommitmentUpdate updates;
1278 } LDKMessageSendEvent_LDKUpdateHTLCs_Body;
1279
1280 typedef struct LDKMessageSendEvent_LDKSendRevokeAndACK_Body {
1281    struct LDKPublicKey node_id;
1282    struct LDKRevokeAndACK msg;
1283 } LDKMessageSendEvent_LDKSendRevokeAndACK_Body;
1284
1285 typedef struct LDKMessageSendEvent_LDKSendClosingSigned_Body {
1286    struct LDKPublicKey node_id;
1287    struct LDKClosingSigned msg;
1288 } LDKMessageSendEvent_LDKSendClosingSigned_Body;
1289
1290 typedef struct LDKMessageSendEvent_LDKSendShutdown_Body {
1291    struct LDKPublicKey node_id;
1292    struct LDKShutdown msg;
1293 } LDKMessageSendEvent_LDKSendShutdown_Body;
1294
1295 typedef struct LDKMessageSendEvent_LDKSendChannelReestablish_Body {
1296    struct LDKPublicKey node_id;
1297    struct LDKChannelReestablish msg;
1298 } LDKMessageSendEvent_LDKSendChannelReestablish_Body;
1299
1300 typedef struct LDKMessageSendEvent_LDKBroadcastChannelAnnouncement_Body {
1301    struct LDKChannelAnnouncement msg;
1302    struct LDKChannelUpdate update_msg;
1303 } LDKMessageSendEvent_LDKBroadcastChannelAnnouncement_Body;
1304
1305 typedef struct LDKMessageSendEvent_LDKBroadcastNodeAnnouncement_Body {
1306    struct LDKNodeAnnouncement msg;
1307 } LDKMessageSendEvent_LDKBroadcastNodeAnnouncement_Body;
1308
1309 typedef struct LDKMessageSendEvent_LDKBroadcastChannelUpdate_Body {
1310    struct LDKChannelUpdate msg;
1311 } LDKMessageSendEvent_LDKBroadcastChannelUpdate_Body;
1312
1313 typedef struct LDKMessageSendEvent_LDKHandleError_Body {
1314    struct LDKPublicKey node_id;
1315    struct LDKErrorAction action;
1316 } LDKMessageSendEvent_LDKHandleError_Body;
1317
1318 typedef struct LDKMessageSendEvent_LDKPaymentFailureNetworkUpdate_Body {
1319    struct LDKHTLCFailChannelUpdate update;
1320 } LDKMessageSendEvent_LDKPaymentFailureNetworkUpdate_Body;
1321
1322 typedef struct LDKMessageSendEvent_LDKSendChannelRangeQuery_Body {
1323    struct LDKPublicKey node_id;
1324    struct LDKQueryChannelRange msg;
1325 } LDKMessageSendEvent_LDKSendChannelRangeQuery_Body;
1326
1327 typedef struct LDKMessageSendEvent_LDKSendShortIdsQuery_Body {
1328    struct LDKPublicKey node_id;
1329    struct LDKQueryShortChannelIds msg;
1330 } LDKMessageSendEvent_LDKSendShortIdsQuery_Body;
1331
1332 typedef struct MUST_USE_STRUCT LDKMessageSendEvent {
1333    LDKMessageSendEvent_Tag tag;
1334    union {
1335       LDKMessageSendEvent_LDKSendAcceptChannel_Body send_accept_channel;
1336       LDKMessageSendEvent_LDKSendOpenChannel_Body send_open_channel;
1337       LDKMessageSendEvent_LDKSendFundingCreated_Body send_funding_created;
1338       LDKMessageSendEvent_LDKSendFundingSigned_Body send_funding_signed;
1339       LDKMessageSendEvent_LDKSendFundingLocked_Body send_funding_locked;
1340       LDKMessageSendEvent_LDKSendAnnouncementSignatures_Body send_announcement_signatures;
1341       LDKMessageSendEvent_LDKUpdateHTLCs_Body update_htl_cs;
1342       LDKMessageSendEvent_LDKSendRevokeAndACK_Body send_revoke_and_ack;
1343       LDKMessageSendEvent_LDKSendClosingSigned_Body send_closing_signed;
1344       LDKMessageSendEvent_LDKSendShutdown_Body send_shutdown;
1345       LDKMessageSendEvent_LDKSendChannelReestablish_Body send_channel_reestablish;
1346       LDKMessageSendEvent_LDKBroadcastChannelAnnouncement_Body broadcast_channel_announcement;
1347       LDKMessageSendEvent_LDKBroadcastNodeAnnouncement_Body broadcast_node_announcement;
1348       LDKMessageSendEvent_LDKBroadcastChannelUpdate_Body broadcast_channel_update;
1349       LDKMessageSendEvent_LDKHandleError_Body handle_error;
1350       LDKMessageSendEvent_LDKPaymentFailureNetworkUpdate_Body payment_failure_network_update;
1351       LDKMessageSendEvent_LDKSendChannelRangeQuery_Body send_channel_range_query;
1352       LDKMessageSendEvent_LDKSendShortIdsQuery_Body send_short_ids_query;
1353    };
1354 } LDKMessageSendEvent;
1355
1356 typedef struct LDKCVecTempl_MessageSendEvent {
1357    struct LDKMessageSendEvent *data;
1358    uintptr_t datalen;
1359 } LDKCVecTempl_MessageSendEvent;
1360
1361 typedef struct LDKCVecTempl_MessageSendEvent LDKCVec_MessageSendEventZ;
1362
1363 /**
1364  * A trait indicating an object may generate message send events
1365  */
1366 typedef struct LDKMessageSendEventsProvider {
1367    void *this_arg;
1368    /**
1369     * Gets the list of pending events which were generated by previous actions, clearing the list
1370     * in the process.
1371     */
1372    LDKCVec_MessageSendEventZ (*get_and_clear_pending_msg_events)(const void *this_arg);
1373    void (*free)(void *this_arg);
1374 } LDKMessageSendEventsProvider;
1375
1376 typedef struct LDKCVecTempl_Event {
1377    struct LDKEvent *data;
1378    uintptr_t datalen;
1379 } LDKCVecTempl_Event;
1380
1381 typedef struct LDKCVecTempl_Event LDKCVec_EventZ;
1382
1383 /**
1384  * A trait indicating an object may generate events
1385  */
1386 typedef struct LDKEventsProvider {
1387    void *this_arg;
1388    /**
1389     * Gets the list of pending events which were generated by previous actions, clearing the list
1390     * in the process.
1391     */
1392    LDKCVec_EventZ (*get_and_clear_pending_events)(const void *this_arg);
1393    void (*free)(void *this_arg);
1394 } LDKEventsProvider;
1395
1396 /**
1397  * A trait encapsulating the operations required of a logger
1398  */
1399 typedef struct LDKLogger {
1400    void *this_arg;
1401    /**
1402     * Logs the `Record`
1403     */
1404    void (*log)(const void *this_arg, const char *record);
1405    void (*free)(void *this_arg);
1406 } LDKLogger;
1407
1408
1409
1410 /**
1411  * Configuration we set when applicable.
1412  *
1413  * Default::default() provides sane defaults.
1414  */
1415 typedef struct MUST_USE_STRUCT LDKChannelHandshakeConfig {
1416    /**
1417     * Nearly everywhere, inner must be non-null, however in places where
1418     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1419     */
1420    LDKnativeChannelHandshakeConfig *inner;
1421    bool is_owned;
1422 } LDKChannelHandshakeConfig;
1423
1424
1425
1426 /**
1427  * Optional channel limits which are applied during channel creation.
1428  *
1429  * These limits are only applied to our counterparty's limits, not our own.
1430  *
1431  * Use 0/<type>::max_value() as appropriate to skip checking.
1432  *
1433  * Provides sane defaults for most configurations.
1434  *
1435  * Most additional limits are disabled except those with which specify a default in individual
1436  * field documentation. Note that this may result in barely-usable channels, but since they
1437  * are applied mostly only to incoming channels that's not much of a problem.
1438  */
1439 typedef struct MUST_USE_STRUCT LDKChannelHandshakeLimits {
1440    /**
1441     * Nearly everywhere, inner must be non-null, however in places where
1442     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1443     */
1444    LDKnativeChannelHandshakeLimits *inner;
1445    bool is_owned;
1446 } LDKChannelHandshakeLimits;
1447
1448
1449
1450 /**
1451  * Options which apply on a per-channel basis and may change at runtime or based on negotiation
1452  * with our counterparty.
1453  */
1454 typedef struct MUST_USE_STRUCT LDKChannelConfig {
1455    /**
1456     * Nearly everywhere, inner must be non-null, however in places where
1457     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1458     */
1459    LDKnativeChannelConfig *inner;
1460    bool is_owned;
1461 } LDKChannelConfig;
1462
1463 typedef struct LDKu8slice {
1464    const uint8_t *data;
1465    uintptr_t datalen;
1466 } LDKu8slice;
1467
1468
1469
1470 /**
1471  * Top-level config which holds ChannelHandshakeLimits and ChannelConfig.
1472  *
1473  * Default::default() provides sane defaults for most configurations
1474  * (but currently with 0 relay fees!)
1475  */
1476 typedef struct MUST_USE_STRUCT LDKUserConfig {
1477    /**
1478     * Nearly everywhere, inner must be non-null, however in places where
1479     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1480     */
1481    LDKnativeUserConfig *inner;
1482    bool is_owned;
1483 } LDKUserConfig;
1484
1485 typedef union LDKCResultPtr_TxOut__AccessError {
1486    struct LDKTxOut *result;
1487    enum LDKAccessError *err;
1488 } LDKCResultPtr_TxOut__AccessError;
1489
1490 typedef struct LDKCResultTempl_TxOut__AccessError {
1491    union LDKCResultPtr_TxOut__AccessError contents;
1492    bool result_ok;
1493 } LDKCResultTempl_TxOut__AccessError;
1494
1495 typedef struct LDKCResultTempl_TxOut__AccessError LDKCResult_TxOutAccessErrorZ;
1496
1497 /**
1498  * The `Access` trait defines behavior for accessing chain data and state, such as blocks and
1499  * UTXOs.
1500  */
1501 typedef struct LDKAccess {
1502    void *this_arg;
1503    /**
1504     * Returns the transaction output of a funding transaction encoded by [`short_channel_id`].
1505     * Returns an error if `genesis_hash` is for a different chain or if such a transaction output
1506     * is unknown.
1507     *
1508     * [`short_channel_id`]: https://github.com/lightningnetwork/lightning-rfc/blob/master/07-routing-gossip.md#definition-of-short_channel_id
1509     */
1510    LDKCResult_TxOutAccessErrorZ (*get_utxo)(const void *this_arg, const uint8_t (*genesis_hash)[32], uint64_t short_channel_id);
1511    void (*free)(void *this_arg);
1512 } LDKAccess;
1513
1514
1515
1516 /**
1517  * One counterparty's public keys which do not change over the life of a channel.
1518  */
1519 typedef struct MUST_USE_STRUCT LDKChannelPublicKeys {
1520    /**
1521     * Nearly everywhere, inner must be non-null, however in places where
1522     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1523     */
1524    LDKnativeChannelPublicKeys *inner;
1525    bool is_owned;
1526 } LDKChannelPublicKeys;
1527
1528
1529
1530 /**
1531  * This class tracks the per-transaction information needed to build a commitment transaction and to
1532  * actually build it and sign.  It is used for holder transactions that we sign only when needed
1533  * and for transactions we sign for the counterparty.
1534  *
1535  * This class can be used inside a signer implementation to generate a signature given the relevant
1536  * secret key.
1537  */
1538 typedef struct MUST_USE_STRUCT LDKCommitmentTransaction {
1539    /**
1540     * Nearly everywhere, inner must be non-null, however in places where
1541     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1542     */
1543    LDKnativeCommitmentTransaction *inner;
1544    bool is_owned;
1545 } LDKCommitmentTransaction;
1546
1547
1548
1549 /**
1550  * Information needed to build and sign a holder's commitment transaction.
1551  *
1552  * The transaction is only signed once we are ready to broadcast.
1553  */
1554 typedef struct MUST_USE_STRUCT LDKHolderCommitmentTransaction {
1555    /**
1556     * Nearly everywhere, inner must be non-null, however in places where
1557     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1558     */
1559    LDKnativeHolderCommitmentTransaction *inner;
1560    bool is_owned;
1561 } LDKHolderCommitmentTransaction;
1562
1563
1564
1565 /**
1566  * Information about an HTLC as it appears in a commitment transaction
1567  */
1568 typedef struct MUST_USE_STRUCT LDKHTLCOutputInCommitment {
1569    /**
1570     * Nearly everywhere, inner must be non-null, however in places where
1571     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1572     */
1573    LDKnativeHTLCOutputInCommitment *inner;
1574    bool is_owned;
1575 } LDKHTLCOutputInCommitment;
1576
1577
1578
1579 /**
1580  * The unsigned part of a channel_announcement
1581  */
1582 typedef struct MUST_USE_STRUCT LDKUnsignedChannelAnnouncement {
1583    /**
1584     * Nearly everywhere, inner must be non-null, however in places where
1585     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1586     */
1587    LDKnativeUnsignedChannelAnnouncement *inner;
1588    bool is_owned;
1589 } LDKUnsignedChannelAnnouncement;
1590
1591
1592
1593 /**
1594  * Per-channel data used to build transactions in conjunction with the per-commitment data (CommitmentTransaction).
1595  * The fields are organized by holder/counterparty.
1596  *
1597  * Normally, this is converted to the broadcaster/countersignatory-organized DirectedChannelTransactionParameters
1598  * before use, via the as_holder_broadcastable and as_counterparty_broadcastable functions.
1599  */
1600 typedef struct MUST_USE_STRUCT LDKChannelTransactionParameters {
1601    /**
1602     * Nearly everywhere, inner must be non-null, however in places where
1603     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1604     */
1605    LDKnativeChannelTransactionParameters *inner;
1606    bool is_owned;
1607 } LDKChannelTransactionParameters;
1608
1609 /**
1610  * Set of lightning keys needed to operate a channel as described in BOLT 3.
1611  *
1612  * Signing services could be implemented on a hardware wallet. In this case,
1613  * the current ChannelKeys would be a front-end on top of a communication
1614  * channel connected to your secure device and lightning key material wouldn't
1615  * reside on a hot server. Nevertheless, a this deployment would still need
1616  * to trust the ChannelManager to avoid loss of funds as this latest component
1617  * could ask to sign commitment transaction with HTLCs paying to attacker pubkeys.
1618  *
1619  * A more secure iteration would be to use hashlock (or payment points) to pair
1620  * invoice/incoming HTLCs with outgoing HTLCs to implement a no-trust-ChannelManager
1621  * at the price of more state and computation on the hardware wallet side. In the future,
1622  * we are looking forward to design such interface.
1623  *
1624  * In any case, ChannelMonitor or fallback watchtowers are always going to be trusted
1625  * to act, as liveness and breach reply correctness are always going to be hard requirements
1626  * of LN security model, orthogonal of key management issues.
1627  *
1628  * If you're implementing a custom signer, you almost certainly want to implement
1629  * Readable/Writable to serialize out a unique reference to this set of keys so
1630  * that you can serialize the full ChannelManager object.
1631  *
1632  */
1633 typedef struct LDKChannelKeys {
1634    void *this_arg;
1635    /**
1636     * Gets the per-commitment point for a specific commitment number
1637     *
1638     * Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
1639     */
1640    struct LDKPublicKey (*get_per_commitment_point)(const void *this_arg, uint64_t idx);
1641    /**
1642     * Gets the commitment secret for a specific commitment number as part of the revocation process
1643     *
1644     * An external signer implementation should error here if the commitment was already signed
1645     * and should refuse to sign it in the future.
1646     *
1647     * May be called more than once for the same index.
1648     *
1649     * Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
1650     * TODO: return a Result so we can signal a validation error
1651     */
1652    struct LDKThirtyTwoBytes (*release_commitment_secret)(const void *this_arg, uint64_t idx);
1653    /**
1654     * Gets the holder's channel public keys and basepoints
1655     */
1656    struct LDKChannelPublicKeys pubkeys;
1657    /**
1658     * Fill in the pubkeys field as a reference to it will be given to Rust after this returns
1659     * Note that this takes a pointer to this object, not the this_ptr like other methods do
1660     * This function pointer may be NULL if pubkeys is filled in when this object is created and never needs updating.
1661     */
1662    void (*set_pubkeys)(const struct LDKChannelKeys*);
1663    /**
1664     * Gets arbitrary identifiers describing the set of keys which are provided back to you in
1665     * some SpendableOutputDescriptor types. These should be sufficient to identify this
1666     * ChannelKeys object uniquely and lookup or re-derive its keys.
1667     */
1668    LDKC2Tuple_u64u64Z (*key_derivation_params)(const void *this_arg);
1669    /**
1670     * Create a signature for a counterparty's commitment transaction and associated HTLC transactions.
1671     *
1672     * Note that if signing fails or is rejected, the channel will be force-closed.
1673     */
1674    LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ (*sign_counterparty_commitment)(const void *this_arg, const struct LDKCommitmentTransaction *commitment_tx);
1675    /**
1676     * Create a signature for a holder's commitment transaction. This will only ever be called with
1677     * the same commitment_tx (or a copy thereof), though there are currently no guarantees
1678     * that it will not be called multiple times.
1679     * An external signer implementation should check that the commitment has not been revoked.
1680     */
1681    LDKCResult_SignatureNoneZ (*sign_holder_commitment)(const void *this_arg, const struct LDKHolderCommitmentTransaction *commitment_tx);
1682    /**
1683     * Create a signature for each HTLC transaction spending a holder's commitment transaction.
1684     *
1685     * Unlike sign_holder_commitment, this may be called multiple times with *different*
1686     * commitment_tx values. While this will never be called with a revoked
1687     * commitment_tx, it is possible that it is called with the second-latest
1688     * commitment_tx (only if we haven't yet revoked it) if some watchtower/secondary
1689     * ChannelMonitor decided to broadcast before it had been updated to the latest.
1690     *
1691     * Either an Err should be returned, or a Vec with one entry for each HTLC which exists in
1692     * commitment_tx.
1693     */
1694    LDKCResult_CVec_SignatureZNoneZ (*sign_holder_commitment_htlc_transactions)(const void *this_arg, const struct LDKHolderCommitmentTransaction *commitment_tx);
1695    /**
1696     * Create a signature for the given input in a transaction spending an HTLC or commitment
1697     * transaction output when our counterparty broadcasts an old state.
1698     *
1699     * A justice transaction may claim multiples outputs at the same time if timelocks are
1700     * similar, but only a signature for the input at index `input` should be signed for here.
1701     * It may be called multiples time for same output(s) if a fee-bump is needed with regards
1702     * to an upcoming timelock expiration.
1703     *
1704     * Amount is value of the output spent by this input, committed to in the BIP 143 signature.
1705     *
1706     * per_commitment_key is revocation secret which was provided by our counterparty when they
1707     * revoked the state which they eventually broadcast. It's not a _holder_ secret key and does
1708     * not allow the spending of any funds by itself (you need our holder revocation_secret to do
1709     * so).
1710     *
1711     * htlc holds HTLC elements (hash, timelock) if the output being spent is a HTLC output, thus
1712     * changing the format of the witness script (which is committed to in the BIP 143
1713     * signatures).
1714     */
1715    LDKCResult_SignatureNoneZ (*sign_justice_transaction)(const void *this_arg, struct LDKTransaction justice_tx, uintptr_t input, uint64_t amount, const uint8_t (*per_commitment_key)[32], const struct LDKHTLCOutputInCommitment *htlc);
1716    /**
1717     * Create a signature for a claiming transaction for a HTLC output on a counterparty's commitment
1718     * transaction, either offered or received.
1719     *
1720     * Such a transaction may claim multiples offered outputs at same time if we know the
1721     * preimage for each when we create it, but only the input at index `input` should be
1722     * signed for here. It may be called multiple times for same output(s) if a fee-bump is
1723     * needed with regards to an upcoming timelock expiration.
1724     *
1725     * Witness_script is either a offered or received script as defined in BOLT3 for HTLC
1726     * outputs.
1727     *
1728     * Amount is value of the output spent by this input, committed to in the BIP 143 signature.
1729     *
1730     * Per_commitment_point is the dynamic point corresponding to the channel state
1731     * detected onchain. It has been generated by our counterparty and is used to derive
1732     * channel state keys, which are then included in the witness script and committed to in the
1733     * BIP 143 signature.
1734     */
1735    LDKCResult_SignatureNoneZ (*sign_counterparty_htlc_transaction)(const void *this_arg, struct LDKTransaction htlc_tx, uintptr_t input, uint64_t amount, struct LDKPublicKey per_commitment_point, const struct LDKHTLCOutputInCommitment *htlc);
1736    /**
1737     * Create a signature for a (proposed) closing transaction.
1738     *
1739     * Note that, due to rounding, there may be one \"missing\" satoshi, and either party may have
1740     * chosen to forgo their output as dust.
1741     */
1742    LDKCResult_SignatureNoneZ (*sign_closing_transaction)(const void *this_arg, struct LDKTransaction closing_tx);
1743    /**
1744     * Signs a channel announcement message with our funding key, proving it comes from one
1745     * of the channel participants.
1746     *
1747     * Note that if this fails or is rejected, the channel will not be publicly announced and
1748     * our counterparty may (though likely will not) close the channel on us for violating the
1749     * protocol.
1750     */
1751    LDKCResult_SignatureNoneZ (*sign_channel_announcement)(const void *this_arg, const struct LDKUnsignedChannelAnnouncement *msg);
1752    /**
1753     * Set the counterparty static channel data, including basepoints,
1754     * counterparty_selected/holder_selected_contest_delay and funding outpoint.
1755     * This is done as soon as the funding outpoint is known.  Since these are static channel data,
1756     * they MUST NOT be allowed to change to different values once set.
1757     *
1758     * channel_parameters.is_populated() MUST be true.
1759     *
1760     * We bind holder_selected_contest_delay late here for API convenience.
1761     *
1762     * Will be called before any signatures are applied.
1763     */
1764    void (*ready_channel)(void *this_arg, const struct LDKChannelTransactionParameters *channel_parameters);
1765    void *(*clone)(const void *this_arg);
1766    LDKCVec_u8Z (*write)(const void *this_arg);
1767    void (*free)(void *this_arg);
1768 } LDKChannelKeys;
1769
1770
1771
1772 /**
1773  * A ChannelMonitor handles chain events (blocks connected and disconnected) and generates
1774  * on-chain transactions to ensure no loss of funds occurs.
1775  *
1776  * You MUST ensure that no ChannelMonitors for a given channel anywhere contain out-of-date
1777  * information and are actively monitoring the chain.
1778  *
1779  * Pending Events or updated HTLCs which have not yet been read out by
1780  * get_and_clear_pending_monitor_events or get_and_clear_pending_events are serialized to disk and
1781  * reloaded at deserialize-time. Thus, you must ensure that, when handling events, all events
1782  * gotten are fully handled before re-serializing the new state.
1783  *
1784  * Note that the deserializer is only implemented for (Sha256dHash, ChannelMonitor), which
1785  * tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
1786  * the \"reorg path\" (ie disconnecting blocks until you find a common ancestor from both the
1787  * returned block hash and the the current chain and then reconnecting blocks to get to the
1788  * best chain) upon deserializing the object!
1789  */
1790 typedef struct MUST_USE_STRUCT LDKChannelMonitor {
1791    /**
1792     * Nearly everywhere, inner must be non-null, however in places where
1793     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1794     */
1795    LDKnativeChannelMonitor *inner;
1796    bool is_owned;
1797 } LDKChannelMonitor;
1798
1799
1800
1801 /**
1802  * An update generated by the underlying Channel itself which contains some new information the
1803  * ChannelMonitor should be made aware of.
1804  */
1805 typedef struct MUST_USE_STRUCT LDKChannelMonitorUpdate {
1806    /**
1807     * Nearly everywhere, inner must be non-null, however in places where
1808     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1809     */
1810    LDKnativeChannelMonitorUpdate *inner;
1811    bool is_owned;
1812 } LDKChannelMonitorUpdate;
1813
1814
1815
1816 /**
1817  * An event to be processed by the ChannelManager.
1818  */
1819 typedef struct MUST_USE_STRUCT LDKMonitorEvent {
1820    /**
1821     * Nearly everywhere, inner must be non-null, however in places where
1822     * the Rust equivalent takes an Option, it may be set to null to indicate None.
1823     */
1824    LDKnativeMonitorEvent *inner;
1825    bool is_owned;
1826 } LDKMonitorEvent;
1827
1828 typedef struct LDKCVecTempl_MonitorEvent {
1829    struct LDKMonitorEvent *data;
1830    uintptr_t datalen;
1831 } LDKCVecTempl_MonitorEvent;
1832
1833 typedef struct LDKCVecTempl_MonitorEvent LDKCVec_MonitorEventZ;
1834
1835 /**
1836  * The `Watch` trait defines behavior for watching on-chain activity pertaining to channels as
1837  * blocks are connected and disconnected.
1838  *
1839  * Each channel is associated with a [`ChannelMonitor`]. Implementations of this trait are
1840  * responsible for maintaining a set of monitors such that they can be updated accordingly as
1841  * channel state changes and HTLCs are resolved. See method documentation for specific
1842  * requirements.
1843  *
1844  * Implementations **must** ensure that updates are successfully applied and persisted upon method
1845  * completion. If an update fails with a [`PermanentFailure`], then it must immediately shut down
1846  * without taking any further action such as persisting the current state.
1847  *
1848  * If an implementation maintains multiple instances of a channel's monitor (e.g., by storing
1849  * backup copies), then it must ensure that updates are applied across all instances. Otherwise, it
1850  * could result in a revoked transaction being broadcast, allowing the counterparty to claim all
1851  * funds in the channel. See [`ChannelMonitorUpdateErr`] for more details about how to handle
1852  * multiple instances.
1853  *
1854  * [`ChannelMonitor`]: channelmonitor/struct.ChannelMonitor.html
1855  * [`ChannelMonitorUpdateErr`]: channelmonitor/enum.ChannelMonitorUpdateErr.html
1856  * [`PermanentFailure`]: channelmonitor/enum.ChannelMonitorUpdateErr.html#variant.PermanentFailure
1857  */
1858 typedef struct LDKWatch {
1859    void *this_arg;
1860    /**
1861     * Watches a channel identified by `funding_txo` using `monitor`.
1862     *
1863     * Implementations are responsible for watching the chain for the funding transaction along
1864     * with any spends of outputs returned by [`get_outputs_to_watch`]. In practice, this means
1865     * calling [`block_connected`] and [`block_disconnected`] on the monitor.
1866     *
1867     * [`get_outputs_to_watch`]: channelmonitor/struct.ChannelMonitor.html#method.get_outputs_to_watch
1868     * [`block_connected`]: channelmonitor/struct.ChannelMonitor.html#method.block_connected
1869     * [`block_disconnected`]: channelmonitor/struct.ChannelMonitor.html#method.block_disconnected
1870     */
1871    LDKCResult_NoneChannelMonitorUpdateErrZ (*watch_channel)(const void *this_arg, struct LDKOutPoint funding_txo, struct LDKChannelMonitor monitor);
1872    /**
1873     * Updates a channel identified by `funding_txo` by applying `update` to its monitor.
1874     *
1875     * Implementations must call [`update_monitor`] with the given update. See
1876     * [`ChannelMonitorUpdateErr`] for invariants around returning an error.
1877     *
1878     * [`update_monitor`]: channelmonitor/struct.ChannelMonitor.html#method.update_monitor
1879     * [`ChannelMonitorUpdateErr`]: channelmonitor/enum.ChannelMonitorUpdateErr.html
1880     */
1881    LDKCResult_NoneChannelMonitorUpdateErrZ (*update_channel)(const void *this_arg, struct LDKOutPoint funding_txo, struct LDKChannelMonitorUpdate update);
1882    /**
1883     * Returns any monitor events since the last call. Subsequent calls must only return new
1884     * events.
1885     */
1886    LDKCVec_MonitorEventZ (*release_pending_monitor_events)(const void *this_arg);
1887    void (*free)(void *this_arg);
1888 } LDKWatch;
1889
1890 /**
1891  * The `Filter` trait defines behavior for indicating chain activity of interest pertaining to
1892  * channels.
1893  *
1894  * This is useful in order to have a [`Watch`] implementation convey to a chain source which
1895  * transactions to be notified of. Notification may take the form of pre-filtering blocks or, in
1896  * the case of [BIP 157]/[BIP 158], only fetching a block if the compact filter matches. If
1897  * receiving full blocks from a chain source, any further filtering is unnecessary.
1898  *
1899  * After an output has been registered, subsequent block retrievals from the chain source must not
1900  * exclude any transactions matching the new criteria nor any in-block descendants of such
1901  * transactions.
1902  *
1903  * Note that use as part of a [`Watch`] implementation involves reentrancy. Therefore, the `Filter`
1904  * should not block on I/O. Implementations should instead queue the newly monitored data to be
1905  * processed later. Then, in order to block until the data has been processed, any `Watch`
1906  * invocation that has called the `Filter` must return [`TemporaryFailure`].
1907  *
1908  * [`Watch`]: trait.Watch.html
1909  * [`TemporaryFailure`]: channelmonitor/enum.ChannelMonitorUpdateErr.html#variant.TemporaryFailure
1910  * [BIP 157]: https://github.com/bitcoin/bips/blob/master/bip-0157.mediawiki
1911  * [BIP 158]: https://github.com/bitcoin/bips/blob/master/bip-0158.mediawiki
1912  */
1913 typedef struct LDKFilter {
1914    void *this_arg;
1915    /**
1916     * Registers interest in a transaction with `txid` and having an output with `script_pubkey` as
1917     * a spending condition.
1918     */
1919    void (*register_tx)(const void *this_arg, const uint8_t (*txid)[32], struct LDKu8slice script_pubkey);
1920    /**
1921     * Registers interest in spends of a transaction output identified by `outpoint` having
1922     * `script_pubkey` as the spending condition.
1923     */
1924    void (*register_output)(const void *this_arg, const struct LDKOutPoint *outpoint, struct LDKu8slice script_pubkey);
1925    void (*free)(void *this_arg);
1926 } LDKFilter;
1927
1928 /**
1929  * An interface to send a transaction to the Bitcoin network.
1930  */
1931 typedef struct LDKBroadcasterInterface {
1932    void *this_arg;
1933    /**
1934     * Sends a transaction out to (hopefully) be mined.
1935     */
1936    void (*broadcast_transaction)(const void *this_arg, struct LDKTransaction tx);
1937    void (*free)(void *this_arg);
1938 } LDKBroadcasterInterface;
1939
1940 /**
1941  * A trait which should be implemented to provide feerate information on a number of time
1942  * horizons.
1943  *
1944  * Note that all of the functions implemented here *must* be reentrant-safe (obviously - they're
1945  * called from inside the library in response to chain events, P2P events, or timer events).
1946  */
1947 typedef struct LDKFeeEstimator {
1948    void *this_arg;
1949    /**
1950     * Gets estimated satoshis of fee required per 1000 Weight-Units.
1951     *
1952     * Must be no smaller than 253 (ie 1 satoshi-per-byte rounded up to ensure later round-downs
1953     * don't put us below 1 satoshi-per-byte).
1954     *
1955     * This translates to:
1956     *  * satoshis-per-byte * 250
1957     *  * ceil(satoshis-per-kbyte / 4)
1958     */
1959    uint32_t (*get_est_sat_per_1000_weight)(const void *this_arg, enum LDKConfirmationTarget confirmation_target);
1960    void (*free)(void *this_arg);
1961 } LDKFeeEstimator;
1962
1963 /**
1964  * `Persist` defines behavior for persisting channel monitors: this could mean
1965  * writing once to disk, and/or uploading to one or more backup services.
1966  *
1967  * Note that for every new monitor, you **must** persist the new `ChannelMonitor`
1968  * to disk/backups. And, on every update, you **must** persist either the
1969  * `ChannelMonitorUpdate` or the updated monitor itself. Otherwise, there is risk
1970  * of situations such as revoking a transaction, then crashing before this
1971  * revocation can be persisted, then unintentionally broadcasting a revoked
1972  * transaction and losing money. This is a risk because previous channel states
1973  * are toxic, so it's important that whatever channel state is persisted is
1974  * kept up-to-date.
1975  */
1976 typedef struct LDKPersist {
1977    void *this_arg;
1978    /**
1979     * Persist a new channel's data. The data can be stored any way you want, but
1980     * the identifier provided by Rust-Lightning is the channel's outpoint (and
1981     * it is up to you to maintain a correct mapping between the outpoint and the
1982     * stored channel data). Note that you **must** persist every new monitor to
1983     * disk. See the `Persist` trait documentation for more details.
1984     *
1985     * See [`ChannelMonitor::serialize_for_disk`] for writing out a `ChannelMonitor`,
1986     * and [`ChannelMonitorUpdateErr`] for requirements when returning errors.
1987     *
1988     * [`ChannelMonitor::serialize_for_disk`]: struct.ChannelMonitor.html#method.serialize_for_disk
1989     * [`ChannelMonitorUpdateErr`]: enum.ChannelMonitorUpdateErr.html
1990     */
1991    LDKCResult_NoneChannelMonitorUpdateErrZ (*persist_new_channel)(const void *this_arg, struct LDKOutPoint id, const struct LDKChannelMonitor *data);
1992    /**
1993     * Update one channel's data. The provided `ChannelMonitor` has already
1994     * applied the given update.
1995     *
1996     * Note that on every update, you **must** persist either the
1997     * `ChannelMonitorUpdate` or the updated monitor itself to disk/backups. See
1998     * the `Persist` trait documentation for more details.
1999     *
2000     * If an implementer chooses to persist the updates only, they need to make
2001     * sure that all the updates are applied to the `ChannelMonitors` *before*
2002     * the set of channel monitors is given to the `ChannelManager`
2003     * deserialization routine. See [`ChannelMonitor::update_monitor`] for
2004     * applying a monitor update to a monitor. If full `ChannelMonitors` are
2005     * persisted, then there is no need to persist individual updates.
2006     *
2007     * Note that there could be a performance tradeoff between persisting complete
2008     * channel monitors on every update vs. persisting only updates and applying
2009     * them in batches. The size of each monitor grows `O(number of state updates)`
2010     * whereas updates are small and `O(1)`.
2011     *
2012     * See [`ChannelMonitor::serialize_for_disk`] for writing out a `ChannelMonitor`,
2013     * [`ChannelMonitorUpdate::write`] for writing out an update, and
2014     * [`ChannelMonitorUpdateErr`] for requirements when returning errors.
2015     *
2016     * [`ChannelMonitor::update_monitor`]: struct.ChannelMonitor.html#impl-1
2017     * [`ChannelMonitor::serialize_for_disk`]: struct.ChannelMonitor.html#method.serialize_for_disk
2018     * [`ChannelMonitorUpdate::write`]: struct.ChannelMonitorUpdate.html#method.write
2019     * [`ChannelMonitorUpdateErr`]: enum.ChannelMonitorUpdateErr.html
2020     */
2021    LDKCResult_NoneChannelMonitorUpdateErrZ (*update_persisted_channel)(const void *this_arg, struct LDKOutPoint id, const struct LDKChannelMonitorUpdate *update, const struct LDKChannelMonitor *data);
2022    void (*free)(void *this_arg);
2023 } LDKPersist;
2024
2025
2026
2027 /**
2028  * An implementation of [`chain::Watch`] for monitoring channels.
2029  *
2030  * Connected and disconnected blocks must be provided to `ChainMonitor` as documented by
2031  * [`chain::Watch`]. May be used in conjunction with [`ChannelManager`] to monitor channels locally
2032  * or used independently to monitor channels remotely. See the [module-level documentation] for
2033  * details.
2034  *
2035  * [`chain::Watch`]: ../trait.Watch.html
2036  * [`ChannelManager`]: ../../ln/channelmanager/struct.ChannelManager.html
2037  * [module-level documentation]: index.html
2038  */
2039 typedef struct MUST_USE_STRUCT LDKChainMonitor {
2040    /**
2041     * Nearly everywhere, inner must be non-null, however in places where
2042     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2043     */
2044    LDKnativeChainMonitor *inner;
2045    bool is_owned;
2046 } LDKChainMonitor;
2047
2048 typedef struct LDKCVecTempl_C2TupleTempl_usize__Transaction {
2049    struct LDKC2TupleTempl_usize__Transaction *data;
2050    uintptr_t datalen;
2051 } LDKCVecTempl_C2TupleTempl_usize__Transaction;
2052
2053 typedef struct LDKCVecTempl_C2TupleTempl_usize__Transaction LDKCVec_C2Tuple_usizeTransactionZZ;
2054
2055
2056
2057 /**
2058  * An error in decoding a message or struct.
2059  */
2060 typedef struct MUST_USE_STRUCT LDKDecodeError {
2061    /**
2062     * Nearly everywhere, inner must be non-null, however in places where
2063     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2064     */
2065    LDKnativeDecodeError *inner;
2066    bool is_owned;
2067 } LDKDecodeError;
2068
2069 typedef union LDKCResultPtr_ChannelMonitorUpdate__DecodeError {
2070    struct LDKChannelMonitorUpdate *result;
2071    struct LDKDecodeError *err;
2072 } LDKCResultPtr_ChannelMonitorUpdate__DecodeError;
2073
2074 typedef struct LDKCResultTempl_ChannelMonitorUpdate__DecodeError {
2075    union LDKCResultPtr_ChannelMonitorUpdate__DecodeError contents;
2076    bool result_ok;
2077 } LDKCResultTempl_ChannelMonitorUpdate__DecodeError;
2078
2079 typedef struct LDKCResultTempl_ChannelMonitorUpdate__DecodeError LDKCResult_ChannelMonitorUpdateDecodeErrorZ;
2080
2081
2082
2083 /**
2084  * Simple structure sent back by `chain::Watch` when an HTLC from a forward channel is detected on
2085  * chain. Used to update the corresponding HTLC in the backward channel. Failing to pass the
2086  * preimage claim backward will lead to loss of funds.
2087  *
2088  * [`chain::Watch`]: ../trait.Watch.html
2089  */
2090 typedef struct MUST_USE_STRUCT LDKHTLCUpdate {
2091    /**
2092     * Nearly everywhere, inner must be non-null, however in places where
2093     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2094     */
2095    LDKnativeHTLCUpdate *inner;
2096    bool is_owned;
2097 } LDKHTLCUpdate;
2098
2099 typedef struct LDKCVecTempl_Transaction {
2100    struct LDKTransaction *data;
2101    uintptr_t datalen;
2102 } LDKCVecTempl_Transaction;
2103
2104 typedef struct LDKCVecTempl_Transaction LDKCVec_TransactionZ;
2105
2106 typedef struct LDKCVecTempl_C2TupleTempl_ThirtyTwoBytes__CVecTempl_C2TupleTempl_u32__TxOut {
2107    struct LDKC2TupleTempl_ThirtyTwoBytes__CVecTempl_C2TupleTempl_u32__TxOut *data;
2108    uintptr_t datalen;
2109 } LDKCVecTempl_C2TupleTempl_ThirtyTwoBytes__CVecTempl_C2TupleTempl_u32__TxOut;
2110
2111 typedef struct LDKCVecTempl_C2TupleTempl_ThirtyTwoBytes__CVecTempl_C2TupleTempl_u32__TxOut LDKCVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ;
2112
2113 typedef union LDKCResultPtr_SpendableOutputDescriptor__DecodeError {
2114    struct LDKSpendableOutputDescriptor *result;
2115    struct LDKDecodeError *err;
2116 } LDKCResultPtr_SpendableOutputDescriptor__DecodeError;
2117
2118 typedef struct LDKCResultTempl_SpendableOutputDescriptor__DecodeError {
2119    union LDKCResultPtr_SpendableOutputDescriptor__DecodeError contents;
2120    bool result_ok;
2121 } LDKCResultTempl_SpendableOutputDescriptor__DecodeError;
2122
2123 typedef struct LDKCResultTempl_SpendableOutputDescriptor__DecodeError LDKCResult_SpendableOutputDescriptorDecodeErrorZ;
2124
2125 typedef struct LDKSecretKey {
2126    uint8_t bytes[32];
2127 } LDKSecretKey;
2128
2129 typedef union LDKCResultPtr_ChannelKeys__DecodeError {
2130    struct LDKChannelKeys *result;
2131    struct LDKDecodeError *err;
2132 } LDKCResultPtr_ChannelKeys__DecodeError;
2133
2134 typedef struct LDKCResultTempl_ChannelKeys__DecodeError {
2135    union LDKCResultPtr_ChannelKeys__DecodeError contents;
2136    bool result_ok;
2137 } LDKCResultTempl_ChannelKeys__DecodeError;
2138
2139 typedef struct LDKCResultTempl_ChannelKeys__DecodeError LDKCResult_ChanKeySignerDecodeErrorZ;
2140
2141 /**
2142  * A trait to describe an object which can get user secrets and key material.
2143  */
2144 typedef struct LDKKeysInterface {
2145    void *this_arg;
2146    /**
2147     * Get node secret key (aka node_id or network_key)
2148     */
2149    struct LDKSecretKey (*get_node_secret)(const void *this_arg);
2150    /**
2151     * Get destination redeemScript to encumber static protocol exit points.
2152     */
2153    LDKCVec_u8Z (*get_destination_script)(const void *this_arg);
2154    /**
2155     * Get shutdown_pubkey to use as PublicKey at channel closure
2156     */
2157    struct LDKPublicKey (*get_shutdown_pubkey)(const void *this_arg);
2158    /**
2159     * Get a new set of ChannelKeys for per-channel secrets. These MUST be unique even if you
2160     * restarted with some stale data!
2161     */
2162    struct LDKChannelKeys (*get_channel_keys)(const void *this_arg, bool inbound, uint64_t channel_value_satoshis);
2163    /**
2164     * Gets a unique, cryptographically-secure, random 32 byte value. This is used for encrypting
2165     * onion packets and for temporary channel IDs. There is no requirement that these be
2166     * persisted anywhere, though they must be unique across restarts.
2167     */
2168    struct LDKThirtyTwoBytes (*get_secure_random_bytes)(const void *this_arg);
2169    /**
2170     * Reads a `ChanKeySigner` for this `KeysInterface` from the given input stream.
2171     * This is only called during deserialization of other objects which contain
2172     * `ChannelKeys`-implementing objects (ie `ChannelMonitor`s and `ChannelManager`s).
2173     * The bytes are exactly those which `<Self::ChanKeySigner as Writeable>::write()` writes, and
2174     * contain no versioning scheme. You may wish to include your own version prefix and ensure
2175     * you've read all of the provided bytes to ensure no corruption occurred.
2176     */
2177    LDKCResult_ChanKeySignerDecodeErrorZ (*read_chan_signer)(const void *this_arg, struct LDKu8slice reader);
2178    void (*free)(void *this_arg);
2179 } LDKKeysInterface;
2180
2181
2182
2183 /**
2184  * A simple implementation of ChannelKeys that just keeps the private keys in memory.
2185  *
2186  * This implementation performs no policy checks and is insufficient by itself as
2187  * a secure external signer.
2188  */
2189 typedef struct MUST_USE_STRUCT LDKInMemoryChannelKeys {
2190    /**
2191     * Nearly everywhere, inner must be non-null, however in places where
2192     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2193     */
2194    LDKnativeInMemoryChannelKeys *inner;
2195    bool is_owned;
2196 } LDKInMemoryChannelKeys;
2197
2198 typedef union LDKCResultPtr_InMemoryChannelKeys__DecodeError {
2199    struct LDKInMemoryChannelKeys *result;
2200    struct LDKDecodeError *err;
2201 } LDKCResultPtr_InMemoryChannelKeys__DecodeError;
2202
2203 typedef struct LDKCResultTempl_InMemoryChannelKeys__DecodeError {
2204    union LDKCResultPtr_InMemoryChannelKeys__DecodeError contents;
2205    bool result_ok;
2206 } LDKCResultTempl_InMemoryChannelKeys__DecodeError;
2207
2208 typedef struct LDKCResultTempl_InMemoryChannelKeys__DecodeError LDKCResult_InMemoryChannelKeysDecodeErrorZ;
2209
2210
2211
2212 /**
2213  * Simple KeysInterface implementor that takes a 32-byte seed for use as a BIP 32 extended key
2214  * and derives keys from that.
2215  *
2216  * Your node_id is seed/0'
2217  * ChannelMonitor closes may use seed/1'
2218  * Cooperative closes may use seed/2'
2219  * The two close keys may be needed to claim on-chain funds!
2220  */
2221 typedef struct MUST_USE_STRUCT LDKKeysManager {
2222    /**
2223     * Nearly everywhere, inner must be non-null, however in places where
2224     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2225     */
2226    LDKnativeKeysManager *inner;
2227    bool is_owned;
2228 } LDKKeysManager;
2229
2230
2231
2232 /**
2233  * Manager which keeps track of a number of channels and sends messages to the appropriate
2234  * channel, also tracking HTLC preimages and forwarding onion packets appropriately.
2235  *
2236  * Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
2237  * to individual Channels.
2238  *
2239  * Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
2240  * all peers during write/read (though does not modify this instance, only the instance being
2241  * serialized). This will result in any channels which have not yet exchanged funding_created (ie
2242  * called funding_transaction_generated for outbound channels).
2243  *
2244  * Note that you can be a bit lazier about writing out ChannelManager than you can be with
2245  * ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
2246  * returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
2247  * happens out-of-band (and will prevent any other ChannelManager operations from occurring during
2248  * the serialization process). If the deserialized version is out-of-date compared to the
2249  * ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
2250  * ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
2251  *
2252  * Note that the deserializer is only implemented for (Sha256dHash, ChannelManager), which
2253  * tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
2254  * the \"reorg path\" (ie call block_disconnected() until you get to a common block and then call
2255  * block_connected() to step towards your best block) upon deserialization before using the
2256  * object!
2257  *
2258  * Note that ChannelManager is responsible for tracking liveness of its channels and generating
2259  * ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
2260  * spam due to quick disconnection/reconnection, updates are not sent until the channel has been
2261  * offline for a full minute. In order to track this, you must call
2262  * timer_chan_freshness_every_min roughly once per minute, though it doesn't have to be perfect.
2263  *
2264  * Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
2265  * a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
2266  * essentially you should default to using a SimpleRefChannelManager, and use a
2267  * SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
2268  * you're using lightning-net-tokio.
2269  */
2270 typedef struct MUST_USE_STRUCT LDKChannelManager {
2271    /**
2272     * Nearly everywhere, inner must be non-null, however in places where
2273     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2274     */
2275    LDKnativeChannelManager *inner;
2276    bool is_owned;
2277 } LDKChannelManager;
2278
2279
2280
2281 /**
2282  * Details of a channel, as returned by ChannelManager::list_channels and ChannelManager::list_usable_channels
2283  */
2284 typedef struct MUST_USE_STRUCT LDKChannelDetails {
2285    /**
2286     * Nearly everywhere, inner must be non-null, however in places where
2287     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2288     */
2289    LDKnativeChannelDetails *inner;
2290    bool is_owned;
2291 } LDKChannelDetails;
2292
2293
2294
2295 /**
2296  * Features used within an `init` message.
2297  */
2298 typedef struct MUST_USE_STRUCT LDKInitFeatures {
2299    /**
2300     * Nearly everywhere, inner must be non-null, however in places where
2301     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2302     */
2303    LDKnativeInitFeatures *inner;
2304    bool is_owned;
2305 } LDKInitFeatures;
2306
2307 typedef struct LDKCVecTempl_ChannelDetails {
2308    struct LDKChannelDetails *data;
2309    uintptr_t datalen;
2310 } LDKCVecTempl_ChannelDetails;
2311
2312 typedef struct LDKCVecTempl_ChannelDetails LDKCVec_ChannelDetailsZ;
2313
2314
2315
2316 /**
2317  * A route directs a payment from the sender (us) to the recipient. If the recipient supports MPP,
2318  * it can take multiple paths. Each path is composed of one or more hops through the network.
2319  */
2320 typedef struct MUST_USE_STRUCT LDKRoute {
2321    /**
2322     * Nearly everywhere, inner must be non-null, however in places where
2323     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2324     */
2325    LDKnativeRoute *inner;
2326    bool is_owned;
2327 } LDKRoute;
2328
2329 typedef struct LDKThreeBytes {
2330    uint8_t data[3];
2331 } LDKThreeBytes;
2332
2333 typedef struct LDKFourBytes {
2334    uint8_t data[4];
2335 } LDKFourBytes;
2336
2337 typedef struct LDKSixteenBytes {
2338    uint8_t data[16];
2339 } LDKSixteenBytes;
2340
2341 typedef struct LDKTenBytes {
2342    uint8_t data[10];
2343 } LDKTenBytes;
2344
2345 /**
2346  * An address which can be used to connect to a remote peer
2347  */
2348 typedef enum LDKNetAddress_Tag {
2349    /**
2350     * An IPv4 address/port on which the peer is listening.
2351     */
2352    LDKNetAddress_IPv4,
2353    /**
2354     * An IPv6 address/port on which the peer is listening.
2355     */
2356    LDKNetAddress_IPv6,
2357    /**
2358     * An old-style Tor onion address/port on which the peer is listening.
2359     */
2360    LDKNetAddress_OnionV2,
2361    /**
2362     * A new-style Tor onion address/port on which the peer is listening.
2363     * To create the human-readable \"hostname\", concatenate ed25519_pubkey, checksum, and version,
2364     * wrap as base32 and append \".onion\".
2365     */
2366    LDKNetAddress_OnionV3,
2367    /**
2368     * Must be last for serialization purposes
2369     */
2370    LDKNetAddress_Sentinel,
2371 } LDKNetAddress_Tag;
2372
2373 typedef struct LDKNetAddress_LDKIPv4_Body {
2374    struct LDKFourBytes addr;
2375    uint16_t port;
2376 } LDKNetAddress_LDKIPv4_Body;
2377
2378 typedef struct LDKNetAddress_LDKIPv6_Body {
2379    struct LDKSixteenBytes addr;
2380    uint16_t port;
2381 } LDKNetAddress_LDKIPv6_Body;
2382
2383 typedef struct LDKNetAddress_LDKOnionV2_Body {
2384    struct LDKTenBytes addr;
2385    uint16_t port;
2386 } LDKNetAddress_LDKOnionV2_Body;
2387
2388 typedef struct LDKNetAddress_LDKOnionV3_Body {
2389    struct LDKThirtyTwoBytes ed25519_pubkey;
2390    uint16_t checksum;
2391    uint8_t version;
2392    uint16_t port;
2393 } LDKNetAddress_LDKOnionV3_Body;
2394
2395 typedef struct MUST_USE_STRUCT LDKNetAddress {
2396    LDKNetAddress_Tag tag;
2397    union {
2398       LDKNetAddress_LDKIPv4_Body i_pv4;
2399       LDKNetAddress_LDKIPv6_Body i_pv6;
2400       LDKNetAddress_LDKOnionV2_Body onion_v2;
2401       LDKNetAddress_LDKOnionV3_Body onion_v3;
2402    };
2403 } LDKNetAddress;
2404
2405 typedef struct LDKCVecTempl_NetAddress {
2406    struct LDKNetAddress *data;
2407    uintptr_t datalen;
2408 } LDKCVecTempl_NetAddress;
2409
2410 typedef struct LDKCVecTempl_NetAddress LDKCVec_NetAddressZ;
2411
2412
2413
2414 /**
2415  * An update_add_htlc message to be sent or received from a peer
2416  */
2417 typedef struct MUST_USE_STRUCT LDKUpdateAddHTLC {
2418    /**
2419     * Nearly everywhere, inner must be non-null, however in places where
2420     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2421     */
2422    LDKnativeUpdateAddHTLC *inner;
2423    bool is_owned;
2424 } LDKUpdateAddHTLC;
2425
2426
2427
2428 /**
2429  * An update_fulfill_htlc message to be sent or received from a peer
2430  */
2431 typedef struct MUST_USE_STRUCT LDKUpdateFulfillHTLC {
2432    /**
2433     * Nearly everywhere, inner must be non-null, however in places where
2434     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2435     */
2436    LDKnativeUpdateFulfillHTLC *inner;
2437    bool is_owned;
2438 } LDKUpdateFulfillHTLC;
2439
2440
2441
2442 /**
2443  * An update_fail_htlc message to be sent or received from a peer
2444  */
2445 typedef struct MUST_USE_STRUCT LDKUpdateFailHTLC {
2446    /**
2447     * Nearly everywhere, inner must be non-null, however in places where
2448     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2449     */
2450    LDKnativeUpdateFailHTLC *inner;
2451    bool is_owned;
2452 } LDKUpdateFailHTLC;
2453
2454
2455
2456 /**
2457  * An update_fail_malformed_htlc message to be sent or received from a peer
2458  */
2459 typedef struct MUST_USE_STRUCT LDKUpdateFailMalformedHTLC {
2460    /**
2461     * Nearly everywhere, inner must be non-null, however in places where
2462     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2463     */
2464    LDKnativeUpdateFailMalformedHTLC *inner;
2465    bool is_owned;
2466 } LDKUpdateFailMalformedHTLC;
2467
2468
2469
2470 /**
2471  * A commitment_signed message to be sent or received from a peer
2472  */
2473 typedef struct MUST_USE_STRUCT LDKCommitmentSigned {
2474    /**
2475     * Nearly everywhere, inner must be non-null, however in places where
2476     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2477     */
2478    LDKnativeCommitmentSigned *inner;
2479    bool is_owned;
2480 } LDKCommitmentSigned;
2481
2482
2483
2484 /**
2485  * An update_fee message to be sent or received from a peer
2486  */
2487 typedef struct MUST_USE_STRUCT LDKUpdateFee {
2488    /**
2489     * Nearly everywhere, inner must be non-null, however in places where
2490     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2491     */
2492    LDKnativeUpdateFee *inner;
2493    bool is_owned;
2494 } LDKUpdateFee;
2495
2496
2497
2498 /**
2499  * An init message to be sent or received from a peer
2500  */
2501 typedef struct MUST_USE_STRUCT LDKInit {
2502    /**
2503     * Nearly everywhere, inner must be non-null, however in places where
2504     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2505     */
2506    LDKnativeInit *inner;
2507    bool is_owned;
2508 } LDKInit;
2509
2510 /**
2511  * A trait to describe an object which can receive channel messages.
2512  *
2513  * Messages MAY be called in parallel when they originate from different their_node_ids, however
2514  * they MUST NOT be called in parallel when the two calls have the same their_node_id.
2515  */
2516 typedef struct LDKChannelMessageHandler {
2517    void *this_arg;
2518    /**
2519     * Handle an incoming open_channel message from the given peer.
2520     */
2521    void (*handle_open_channel)(const void *this_arg, struct LDKPublicKey their_node_id, struct LDKInitFeatures their_features, const struct LDKOpenChannel *msg);
2522    /**
2523     * Handle an incoming accept_channel message from the given peer.
2524     */
2525    void (*handle_accept_channel)(const void *this_arg, struct LDKPublicKey their_node_id, struct LDKInitFeatures their_features, const struct LDKAcceptChannel *msg);
2526    /**
2527     * Handle an incoming funding_created message from the given peer.
2528     */
2529    void (*handle_funding_created)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKFundingCreated *msg);
2530    /**
2531     * Handle an incoming funding_signed message from the given peer.
2532     */
2533    void (*handle_funding_signed)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKFundingSigned *msg);
2534    /**
2535     * Handle an incoming funding_locked message from the given peer.
2536     */
2537    void (*handle_funding_locked)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKFundingLocked *msg);
2538    /**
2539     * Handle an incoming shutdown message from the given peer.
2540     */
2541    void (*handle_shutdown)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKShutdown *msg);
2542    /**
2543     * Handle an incoming closing_signed message from the given peer.
2544     */
2545    void (*handle_closing_signed)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKClosingSigned *msg);
2546    /**
2547     * Handle an incoming update_add_htlc message from the given peer.
2548     */
2549    void (*handle_update_add_htlc)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateAddHTLC *msg);
2550    /**
2551     * Handle an incoming update_fulfill_htlc message from the given peer.
2552     */
2553    void (*handle_update_fulfill_htlc)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFulfillHTLC *msg);
2554    /**
2555     * Handle an incoming update_fail_htlc message from the given peer.
2556     */
2557    void (*handle_update_fail_htlc)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFailHTLC *msg);
2558    /**
2559     * Handle an incoming update_fail_malformed_htlc message from the given peer.
2560     */
2561    void (*handle_update_fail_malformed_htlc)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFailMalformedHTLC *msg);
2562    /**
2563     * Handle an incoming commitment_signed message from the given peer.
2564     */
2565    void (*handle_commitment_signed)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKCommitmentSigned *msg);
2566    /**
2567     * Handle an incoming revoke_and_ack message from the given peer.
2568     */
2569    void (*handle_revoke_and_ack)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKRevokeAndACK *msg);
2570    /**
2571     * Handle an incoming update_fee message from the given peer.
2572     */
2573    void (*handle_update_fee)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFee *msg);
2574    /**
2575     * Handle an incoming announcement_signatures message from the given peer.
2576     */
2577    void (*handle_announcement_signatures)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKAnnouncementSignatures *msg);
2578    /**
2579     * Indicates a connection to the peer failed/an existing connection was lost. If no connection
2580     * is believed to be possible in the future (eg they're sending us messages we don't
2581     * understand or indicate they require unknown feature bits), no_connection_possible is set
2582     * and any outstanding channels should be failed.
2583     */
2584    void (*peer_disconnected)(const void *this_arg, struct LDKPublicKey their_node_id, bool no_connection_possible);
2585    /**
2586     * Handle a peer reconnecting, possibly generating channel_reestablish message(s).
2587     */
2588    void (*peer_connected)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKInit *msg);
2589    /**
2590     * Handle an incoming channel_reestablish message from the given peer.
2591     */
2592    void (*handle_channel_reestablish)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKChannelReestablish *msg);
2593    /**
2594     * Handle an incoming error message from the given peer.
2595     */
2596    void (*handle_error)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKErrorMessage *msg);
2597    struct LDKMessageSendEventsProvider MessageSendEventsProvider;
2598    void (*free)(void *this_arg);
2599 } LDKChannelMessageHandler;
2600
2601
2602
2603 /**
2604  * Arguments for the creation of a ChannelManager that are not deserialized.
2605  *
2606  * At a high-level, the process for deserializing a ChannelManager and resuming normal operation
2607  * is:
2608  * 1) Deserialize all stored ChannelMonitors.
2609  * 2) Deserialize the ChannelManager by filling in this struct and calling <(Sha256dHash,
2610  *    ChannelManager)>::read(reader, args).
2611  *    This may result in closing some Channels if the ChannelMonitor is newer than the stored
2612  *    ChannelManager state to ensure no loss of funds. Thus, transactions may be broadcasted.
2613  * 3) Register all relevant ChannelMonitor outpoints with your chain watch mechanism using
2614  *    ChannelMonitor::get_outputs_to_watch() and ChannelMonitor::get_funding_txo().
2615  * 4) Reconnect blocks on your ChannelMonitors.
2616  * 5) Move the ChannelMonitors into your local chain::Watch.
2617  * 6) Disconnect/connect blocks on the ChannelManager.
2618  */
2619 typedef struct MUST_USE_STRUCT LDKChannelManagerReadArgs {
2620    /**
2621     * Nearly everywhere, inner must be non-null, however in places where
2622     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2623     */
2624    LDKnativeChannelManagerReadArgs *inner;
2625    bool is_owned;
2626 } LDKChannelManagerReadArgs;
2627
2628 typedef struct LDKCVecTempl_ChannelMonitor {
2629    struct LDKChannelMonitor *data;
2630    uintptr_t datalen;
2631 } LDKCVecTempl_ChannelMonitor;
2632
2633 typedef struct LDKCVecTempl_ChannelMonitor LDKCVec_ChannelMonitorZ;
2634
2635
2636
2637 /**
2638  * A ping message to be sent or received from a peer
2639  */
2640 typedef struct MUST_USE_STRUCT LDKPing {
2641    /**
2642     * Nearly everywhere, inner must be non-null, however in places where
2643     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2644     */
2645    LDKnativePing *inner;
2646    bool is_owned;
2647 } LDKPing;
2648
2649
2650
2651 /**
2652  * A pong message to be sent or received from a peer
2653  */
2654 typedef struct MUST_USE_STRUCT LDKPong {
2655    /**
2656     * Nearly everywhere, inner must be non-null, however in places where
2657     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2658     */
2659    LDKnativePong *inner;
2660    bool is_owned;
2661 } LDKPong;
2662
2663
2664
2665 /**
2666  * Proof that the sender knows the per-commitment secret of the previous commitment transaction.
2667  * This is used to convince the recipient that the channel is at a certain commitment
2668  * number even if they lost that data due to a local failure.  Of course, the peer may lie
2669  * and even later commitments may have been revoked.
2670  */
2671 typedef struct MUST_USE_STRUCT LDKDataLossProtect {
2672    /**
2673     * Nearly everywhere, inner must be non-null, however in places where
2674     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2675     */
2676    LDKnativeDataLossProtect *inner;
2677    bool is_owned;
2678 } LDKDataLossProtect;
2679
2680
2681
2682 /**
2683  * The unsigned part of a node_announcement
2684  */
2685 typedef struct MUST_USE_STRUCT LDKUnsignedNodeAnnouncement {
2686    /**
2687     * Nearly everywhere, inner must be non-null, however in places where
2688     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2689     */
2690    LDKnativeUnsignedNodeAnnouncement *inner;
2691    bool is_owned;
2692 } LDKUnsignedNodeAnnouncement;
2693
2694
2695
2696 /**
2697  * Features used within a `node_announcement` message.
2698  */
2699 typedef struct MUST_USE_STRUCT LDKNodeFeatures {
2700    /**
2701     * Nearly everywhere, inner must be non-null, however in places where
2702     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2703     */
2704    LDKnativeNodeFeatures *inner;
2705    bool is_owned;
2706 } LDKNodeFeatures;
2707
2708
2709
2710 /**
2711  * Features used within a `channel_announcement` message.
2712  */
2713 typedef struct MUST_USE_STRUCT LDKChannelFeatures {
2714    /**
2715     * Nearly everywhere, inner must be non-null, however in places where
2716     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2717     */
2718    LDKnativeChannelFeatures *inner;
2719    bool is_owned;
2720 } LDKChannelFeatures;
2721
2722
2723
2724 /**
2725  * The unsigned part of a channel_update
2726  */
2727 typedef struct MUST_USE_STRUCT LDKUnsignedChannelUpdate {
2728    /**
2729     * Nearly everywhere, inner must be non-null, however in places where
2730     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2731     */
2732    LDKnativeUnsignedChannelUpdate *inner;
2733    bool is_owned;
2734 } LDKUnsignedChannelUpdate;
2735
2736
2737
2738 /**
2739  * A reply_channel_range message is a reply to a query_channel_range
2740  * message. Multiple reply_channel_range messages can be sent in reply
2741  * to a single query_channel_range message. The query recipient makes a
2742  * best effort to respond based on their local network view which may
2743  * not be a perfect view of the network. The short_channel_ids in the
2744  * reply are encoded. We only support encoding_type=0 uncompressed
2745  * serialization and do not support encoding_type=1 zlib serialization.
2746  */
2747 typedef struct MUST_USE_STRUCT LDKReplyChannelRange {
2748    /**
2749     * Nearly everywhere, inner must be non-null, however in places where
2750     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2751     */
2752    LDKnativeReplyChannelRange *inner;
2753    bool is_owned;
2754 } LDKReplyChannelRange;
2755
2756 typedef struct LDKCVecTempl_u64 {
2757    uint64_t *data;
2758    uintptr_t datalen;
2759 } LDKCVecTempl_u64;
2760
2761 typedef struct LDKCVecTempl_u64 LDKCVec_u64Z;
2762
2763
2764
2765 /**
2766  * A reply_short_channel_ids_end message is sent as a reply to a
2767  * query_short_channel_ids message. The query recipient makes a best
2768  * effort to respond based on their local network view which may not be
2769  * a perfect view of the network.
2770  */
2771 typedef struct MUST_USE_STRUCT LDKReplyShortChannelIdsEnd {
2772    /**
2773     * Nearly everywhere, inner must be non-null, however in places where
2774     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2775     */
2776    LDKnativeReplyShortChannelIdsEnd *inner;
2777    bool is_owned;
2778 } LDKReplyShortChannelIdsEnd;
2779
2780
2781
2782 /**
2783  * A gossip_timestamp_filter message is used by a node to request
2784  * gossip relay for messages in the requested time range when the
2785  * gossip_queries feature has been negotiated.
2786  */
2787 typedef struct MUST_USE_STRUCT LDKGossipTimestampFilter {
2788    /**
2789     * Nearly everywhere, inner must be non-null, however in places where
2790     * the Rust equivalent takes an Option, it may be set to null to indicate None.
2791     */
2792    LDKnativeGossipTimestampFilter *inner;
2793    bool is_owned;
2794 } LDKGossipTimestampFilter;
2795
2796 typedef struct LDKCVecTempl_UpdateAddHTLC {
2797    struct LDKUpdateAddHTLC *data;
2798    uintptr_t datalen;
2799 } LDKCVecTempl_UpdateAddHTLC;
2800
2801 typedef struct LDKCVecTempl_UpdateAddHTLC LDKCVec_UpdateAddHTLCZ;
2802
2803 typedef struct LDKCVecTempl_UpdateFulfillHTLC {
2804    struct LDKUpdateFulfillHTLC *data;
2805    uintptr_t datalen;
2806 } LDKCVecTempl_UpdateFulfillHTLC;
2807
2808 typedef struct LDKCVecTempl_UpdateFulfillHTLC LDKCVec_UpdateFulfillHTLCZ;
2809
2810 typedef struct LDKCVecTempl_UpdateFailHTLC {
2811    struct LDKUpdateFailHTLC *data;
2812    uintptr_t datalen;
2813 } LDKCVecTempl_UpdateFailHTLC;
2814
2815 typedef struct LDKCVecTempl_UpdateFailHTLC LDKCVec_UpdateFailHTLCZ;
2816
2817 typedef struct LDKCVecTempl_UpdateFailMalformedHTLC {
2818    struct LDKUpdateFailMalformedHTLC *data;
2819    uintptr_t datalen;
2820 } LDKCVecTempl_UpdateFailMalformedHTLC;
2821
2822 typedef struct LDKCVecTempl_UpdateFailMalformedHTLC LDKCVec_UpdateFailMalformedHTLCZ;
2823
2824 typedef union LDKCResultPtr_bool__LightningError {
2825    bool *result;
2826    struct LDKLightningError *err;
2827 } LDKCResultPtr_bool__LightningError;
2828
2829 typedef struct LDKCResultTempl_bool__LightningError {
2830    union LDKCResultPtr_bool__LightningError contents;
2831    bool result_ok;
2832 } LDKCResultTempl_bool__LightningError;
2833
2834 typedef struct LDKCResultTempl_bool__LightningError LDKCResult_boolLightningErrorZ;
2835
2836 typedef struct LDKCVecTempl_C3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate {
2837    struct LDKC3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate *data;
2838    uintptr_t datalen;
2839 } LDKCVecTempl_C3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate;
2840
2841 typedef struct LDKCVecTempl_C3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate LDKCVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ;
2842
2843 typedef struct LDKCVecTempl_NodeAnnouncement {
2844    struct LDKNodeAnnouncement *data;
2845    uintptr_t datalen;
2846 } LDKCVecTempl_NodeAnnouncement;
2847
2848 typedef struct LDKCVecTempl_NodeAnnouncement LDKCVec_NodeAnnouncementZ;
2849
2850 /**
2851  * A trait to describe an object which can receive routing messages.
2852  *
2853  * # Implementor DoS Warnings
2854  *
2855  * For `gossip_queries` messages there are potential DoS vectors when handling
2856  * inbound queries. Implementors using an on-disk network graph should be aware of
2857  * repeated disk I/O for queries accessing different parts of the network graph.
2858  */
2859 typedef struct LDKRoutingMessageHandler {
2860    void *this_arg;
2861    /**
2862     * Handle an incoming node_announcement message, returning true if it should be forwarded on,
2863     * false or returning an Err otherwise.
2864     */
2865    LDKCResult_boolLightningErrorZ (*handle_node_announcement)(const void *this_arg, const struct LDKNodeAnnouncement *msg);
2866    /**
2867     * Handle a channel_announcement message, returning true if it should be forwarded on, false
2868     * or returning an Err otherwise.
2869     */
2870    LDKCResult_boolLightningErrorZ (*handle_channel_announcement)(const void *this_arg, const struct LDKChannelAnnouncement *msg);
2871    /**
2872     * Handle an incoming channel_update message, returning true if it should be forwarded on,
2873     * false or returning an Err otherwise.
2874     */
2875    LDKCResult_boolLightningErrorZ (*handle_channel_update)(const void *this_arg, const struct LDKChannelUpdate *msg);
2876    /**
2877     * Handle some updates to the route graph that we learned due to an outbound failed payment.
2878     */
2879    void (*handle_htlc_fail_channel_update)(const void *this_arg, const struct LDKHTLCFailChannelUpdate *update);
2880    /**
2881     * Gets a subset of the channel announcements and updates required to dump our routing table
2882     * to a remote node, starting at the short_channel_id indicated by starting_point and
2883     * including the batch_amount entries immediately higher in numerical value than starting_point.
2884     */
2885    LDKCVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ (*get_next_channel_announcements)(const void *this_arg, uint64_t starting_point, uint8_t batch_amount);
2886    /**
2887     * Gets a subset of the node announcements required to dump our routing table to a remote node,
2888     * starting at the node *after* the provided publickey and including batch_amount entries
2889     * immediately higher (as defined by <PublicKey as Ord>::cmp) than starting_point.
2890     * If None is provided for starting_point, we start at the first node.
2891     */
2892    LDKCVec_NodeAnnouncementZ (*get_next_node_announcements)(const void *this_arg, struct LDKPublicKey starting_point, uint8_t batch_amount);
2893    /**
2894     * Called when a connection is established with a peer. This can be used to
2895     * perform routing table synchronization using a strategy defined by the
2896     * implementor.
2897     */
2898    void (*sync_routing_table)(const void *this_arg, struct LDKPublicKey their_node_id, const struct LDKInit *init);
2899    /**
2900     * Handles the reply of a query we initiated to learn about channels
2901     * for a given range of blocks. We can expect to receive one or more
2902     * replies to a single query.
2903     */
2904    LDKCResult_NoneLightningErrorZ (*handle_reply_channel_range)(const void *this_arg, struct LDKPublicKey their_node_id, struct LDKReplyChannelRange msg);
2905    /**
2906     * Handles the reply of a query we initiated asking for routing gossip
2907     * messages for a list of channels. We should receive this message when
2908     * a node has completed its best effort to send us the pertaining routing
2909     * gossip messages.
2910     */
2911    LDKCResult_NoneLightningErrorZ (*handle_reply_short_channel_ids_end)(const void *this_arg, struct LDKPublicKey their_node_id, struct LDKReplyShortChannelIdsEnd msg);
2912    /**
2913     * Handles when a peer asks us to send a list of short_channel_ids
2914     * for the requested range of blocks.
2915     */
2916    LDKCResult_NoneLightningErrorZ (*handle_query_channel_range)(const void *this_arg, struct LDKPublicKey their_node_id, struct LDKQueryChannelRange msg);
2917    /**
2918     * Handles when a peer asks us to send routing gossip messages for a
2919     * list of short_channel_ids.
2920     */
2921    LDKCResult_NoneLightningErrorZ (*handle_query_short_channel_ids)(const void *this_arg, struct LDKPublicKey their_node_id, struct LDKQueryShortChannelIds msg);
2922    struct LDKMessageSendEventsProvider MessageSendEventsProvider;
2923    void (*free)(void *this_arg);
2924 } LDKRoutingMessageHandler;
2925
2926 typedef union LDKCResultPtr_ChannelReestablish__DecodeError {
2927    struct LDKChannelReestablish *result;
2928    struct LDKDecodeError *err;
2929 } LDKCResultPtr_ChannelReestablish__DecodeError;
2930
2931 typedef struct LDKCResultTempl_ChannelReestablish__DecodeError {
2932    union LDKCResultPtr_ChannelReestablish__DecodeError contents;
2933    bool result_ok;
2934 } LDKCResultTempl_ChannelReestablish__DecodeError;
2935
2936 typedef struct LDKCResultTempl_ChannelReestablish__DecodeError LDKCResult_ChannelReestablishDecodeErrorZ;
2937
2938 typedef union LDKCResultPtr_Init__DecodeError {
2939    struct LDKInit *result;
2940    struct LDKDecodeError *err;
2941 } LDKCResultPtr_Init__DecodeError;
2942
2943 typedef struct LDKCResultTempl_Init__DecodeError {
2944    union LDKCResultPtr_Init__DecodeError contents;
2945    bool result_ok;
2946 } LDKCResultTempl_Init__DecodeError;
2947
2948 typedef struct LDKCResultTempl_Init__DecodeError LDKCResult_InitDecodeErrorZ;
2949
2950 typedef union LDKCResultPtr_Ping__DecodeError {
2951    struct LDKPing *result;
2952    struct LDKDecodeError *err;
2953 } LDKCResultPtr_Ping__DecodeError;
2954
2955 typedef struct LDKCResultTempl_Ping__DecodeError {
2956    union LDKCResultPtr_Ping__DecodeError contents;
2957    bool result_ok;
2958 } LDKCResultTempl_Ping__DecodeError;
2959
2960 typedef struct LDKCResultTempl_Ping__DecodeError LDKCResult_PingDecodeErrorZ;
2961
2962 typedef union LDKCResultPtr_Pong__DecodeError {
2963    struct LDKPong *result;
2964    struct LDKDecodeError *err;
2965 } LDKCResultPtr_Pong__DecodeError;
2966
2967 typedef struct LDKCResultTempl_Pong__DecodeError {
2968    union LDKCResultPtr_Pong__DecodeError contents;
2969    bool result_ok;
2970 } LDKCResultTempl_Pong__DecodeError;
2971
2972 typedef struct LDKCResultTempl_Pong__DecodeError LDKCResult_PongDecodeErrorZ;
2973
2974 typedef union LDKCResultPtr_UnsignedChannelAnnouncement__DecodeError {
2975    struct LDKUnsignedChannelAnnouncement *result;
2976    struct LDKDecodeError *err;
2977 } LDKCResultPtr_UnsignedChannelAnnouncement__DecodeError;
2978
2979 typedef struct LDKCResultTempl_UnsignedChannelAnnouncement__DecodeError {
2980    union LDKCResultPtr_UnsignedChannelAnnouncement__DecodeError contents;
2981    bool result_ok;
2982 } LDKCResultTempl_UnsignedChannelAnnouncement__DecodeError;
2983
2984 typedef struct LDKCResultTempl_UnsignedChannelAnnouncement__DecodeError LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ;
2985
2986 typedef union LDKCResultPtr_UnsignedChannelUpdate__DecodeError {
2987    struct LDKUnsignedChannelUpdate *result;
2988    struct LDKDecodeError *err;
2989 } LDKCResultPtr_UnsignedChannelUpdate__DecodeError;
2990
2991 typedef struct LDKCResultTempl_UnsignedChannelUpdate__DecodeError {
2992    union LDKCResultPtr_UnsignedChannelUpdate__DecodeError contents;
2993    bool result_ok;
2994 } LDKCResultTempl_UnsignedChannelUpdate__DecodeError;
2995
2996 typedef struct LDKCResultTempl_UnsignedChannelUpdate__DecodeError LDKCResult_UnsignedChannelUpdateDecodeErrorZ;
2997
2998 typedef union LDKCResultPtr_ErrorMessage__DecodeError {
2999    struct LDKErrorMessage *result;
3000    struct LDKDecodeError *err;
3001 } LDKCResultPtr_ErrorMessage__DecodeError;
3002
3003 typedef struct LDKCResultTempl_ErrorMessage__DecodeError {
3004    union LDKCResultPtr_ErrorMessage__DecodeError contents;
3005    bool result_ok;
3006 } LDKCResultTempl_ErrorMessage__DecodeError;
3007
3008 typedef struct LDKCResultTempl_ErrorMessage__DecodeError LDKCResult_ErrorMessageDecodeErrorZ;
3009
3010 typedef union LDKCResultPtr_UnsignedNodeAnnouncement__DecodeError {
3011    struct LDKUnsignedNodeAnnouncement *result;
3012    struct LDKDecodeError *err;
3013 } LDKCResultPtr_UnsignedNodeAnnouncement__DecodeError;
3014
3015 typedef struct LDKCResultTempl_UnsignedNodeAnnouncement__DecodeError {
3016    union LDKCResultPtr_UnsignedNodeAnnouncement__DecodeError contents;
3017    bool result_ok;
3018 } LDKCResultTempl_UnsignedNodeAnnouncement__DecodeError;
3019
3020 typedef struct LDKCResultTempl_UnsignedNodeAnnouncement__DecodeError LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ;
3021
3022 typedef union LDKCResultPtr_QueryShortChannelIds__DecodeError {
3023    struct LDKQueryShortChannelIds *result;
3024    struct LDKDecodeError *err;
3025 } LDKCResultPtr_QueryShortChannelIds__DecodeError;
3026
3027 typedef struct LDKCResultTempl_QueryShortChannelIds__DecodeError {
3028    union LDKCResultPtr_QueryShortChannelIds__DecodeError contents;
3029    bool result_ok;
3030 } LDKCResultTempl_QueryShortChannelIds__DecodeError;
3031
3032 typedef struct LDKCResultTempl_QueryShortChannelIds__DecodeError LDKCResult_QueryShortChannelIdsDecodeErrorZ;
3033
3034 typedef union LDKCResultPtr_ReplyShortChannelIdsEnd__DecodeError {
3035    struct LDKReplyShortChannelIdsEnd *result;
3036    struct LDKDecodeError *err;
3037 } LDKCResultPtr_ReplyShortChannelIdsEnd__DecodeError;
3038
3039 typedef struct LDKCResultTempl_ReplyShortChannelIdsEnd__DecodeError {
3040    union LDKCResultPtr_ReplyShortChannelIdsEnd__DecodeError contents;
3041    bool result_ok;
3042 } LDKCResultTempl_ReplyShortChannelIdsEnd__DecodeError;
3043
3044 typedef struct LDKCResultTempl_ReplyShortChannelIdsEnd__DecodeError LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ;
3045
3046 typedef union LDKCResultPtr_QueryChannelRange__DecodeError {
3047    struct LDKQueryChannelRange *result;
3048    struct LDKDecodeError *err;
3049 } LDKCResultPtr_QueryChannelRange__DecodeError;
3050
3051 typedef struct LDKCResultTempl_QueryChannelRange__DecodeError {
3052    union LDKCResultPtr_QueryChannelRange__DecodeError contents;
3053    bool result_ok;
3054 } LDKCResultTempl_QueryChannelRange__DecodeError;
3055
3056 typedef struct LDKCResultTempl_QueryChannelRange__DecodeError LDKCResult_QueryChannelRangeDecodeErrorZ;
3057
3058 typedef union LDKCResultPtr_ReplyChannelRange__DecodeError {
3059    struct LDKReplyChannelRange *result;
3060    struct LDKDecodeError *err;
3061 } LDKCResultPtr_ReplyChannelRange__DecodeError;
3062
3063 typedef struct LDKCResultTempl_ReplyChannelRange__DecodeError {
3064    union LDKCResultPtr_ReplyChannelRange__DecodeError contents;
3065    bool result_ok;
3066 } LDKCResultTempl_ReplyChannelRange__DecodeError;
3067
3068 typedef struct LDKCResultTempl_ReplyChannelRange__DecodeError LDKCResult_ReplyChannelRangeDecodeErrorZ;
3069
3070 typedef union LDKCResultPtr_GossipTimestampFilter__DecodeError {
3071    struct LDKGossipTimestampFilter *result;
3072    struct LDKDecodeError *err;
3073 } LDKCResultPtr_GossipTimestampFilter__DecodeError;
3074
3075 typedef struct LDKCResultTempl_GossipTimestampFilter__DecodeError {
3076    union LDKCResultPtr_GossipTimestampFilter__DecodeError contents;
3077    bool result_ok;
3078 } LDKCResultTempl_GossipTimestampFilter__DecodeError;
3079
3080 typedef struct LDKCResultTempl_GossipTimestampFilter__DecodeError LDKCResult_GossipTimestampFilterDecodeErrorZ;
3081
3082
3083
3084 /**
3085  * Provides references to trait impls which handle different types of messages.
3086  */
3087 typedef struct MUST_USE_STRUCT LDKMessageHandler {
3088    /**
3089     * Nearly everywhere, inner must be non-null, however in places where
3090     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3091     */
3092    LDKnativeMessageHandler *inner;
3093    bool is_owned;
3094 } LDKMessageHandler;
3095
3096 /**
3097  * Provides an object which can be used to send data to and which uniquely identifies a connection
3098  * to a remote host. You will need to be able to generate multiple of these which meet Eq and
3099  * implement Hash to meet the PeerManager API.
3100  *
3101  * For efficiency, Clone should be relatively cheap for this type.
3102  *
3103  * You probably want to just extend an int and put a file descriptor in a struct and implement
3104  * send_data. Note that if you are using a higher-level net library that may call close() itself,
3105  * be careful to ensure you don't have races whereby you might register a new connection with an
3106  * fd which is the same as a previous one which has yet to be removed via
3107  * PeerManager::socket_disconnected().
3108  */
3109 typedef struct LDKSocketDescriptor {
3110    void *this_arg;
3111    /**
3112     * Attempts to send some data from the given slice to the peer.
3113     *
3114     * Returns the amount of data which was sent, possibly 0 if the socket has since disconnected.
3115     * Note that in the disconnected case, socket_disconnected must still fire and further write
3116     * attempts may occur until that time.
3117     *
3118     * If the returned size is smaller than data.len(), a write_available event must
3119     * trigger the next time more data can be written. Additionally, until the a send_data event
3120     * completes fully, no further read_events should trigger on the same peer!
3121     *
3122     * If a read_event on this descriptor had previously returned true (indicating that read
3123     * events should be paused to prevent DoS in the send buffer), resume_read may be set
3124     * indicating that read events on this descriptor should resume. A resume_read of false does
3125     * *not* imply that further read events should be paused.
3126     */
3127    uintptr_t (*send_data)(void *this_arg, struct LDKu8slice data, bool resume_read);
3128    /**
3129     * Disconnect the socket pointed to by this SocketDescriptor. Once this function returns, no
3130     * more calls to write_buffer_space_avail, read_event or socket_disconnected may be made with
3131     * this descriptor. No socket_disconnected call should be generated as a result of this call,
3132     * though races may occur whereby disconnect_socket is called after a call to
3133     * socket_disconnected but prior to socket_disconnected returning.
3134     */
3135    void (*disconnect_socket)(void *this_arg);
3136    bool (*eq)(const void *this_arg, const struct LDKSocketDescriptor *other_arg);
3137    uint64_t (*hash)(const void *this_arg);
3138    void *(*clone)(const void *this_arg);
3139    void (*free)(void *this_arg);
3140 } LDKSocketDescriptor;
3141
3142
3143
3144 /**
3145  * A PeerManager manages a set of peers, described by their SocketDescriptor and marshalls socket
3146  * events into messages which it passes on to its MessageHandlers.
3147  *
3148  * Rather than using a plain PeerManager, it is preferable to use either a SimpleArcPeerManager
3149  * a SimpleRefPeerManager, for conciseness. See their documentation for more details, but
3150  * essentially you should default to using a SimpleRefPeerManager, and use a
3151  * SimpleArcPeerManager when you require a PeerManager with a static lifetime, such as when
3152  * you're using lightning-net-tokio.
3153  */
3154 typedef struct MUST_USE_STRUCT LDKPeerManager {
3155    /**
3156     * Nearly everywhere, inner must be non-null, however in places where
3157     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3158     */
3159    LDKnativePeerManager *inner;
3160    bool is_owned;
3161 } LDKPeerManager;
3162
3163 typedef struct LDKCVecTempl_PublicKey {
3164    struct LDKPublicKey *data;
3165    uintptr_t datalen;
3166 } LDKCVecTempl_PublicKey;
3167
3168 typedef struct LDKCVecTempl_PublicKey LDKCVec_PublicKeyZ;
3169
3170 typedef union LDKCResultPtr_CVecTempl_u8_____PeerHandleError {
3171    struct LDKCVecTempl_u8 *result;
3172    struct LDKPeerHandleError *err;
3173 } LDKCResultPtr_CVecTempl_u8_____PeerHandleError;
3174
3175 typedef struct LDKCResultTempl_CVecTempl_u8_____PeerHandleError {
3176    union LDKCResultPtr_CVecTempl_u8_____PeerHandleError contents;
3177    bool result_ok;
3178 } LDKCResultTempl_CVecTempl_u8_____PeerHandleError;
3179
3180 typedef struct LDKCResultTempl_CVecTempl_u8_____PeerHandleError LDKCResult_CVec_u8ZPeerHandleErrorZ;
3181
3182 typedef union LDKCResultPtr_bool__PeerHandleError {
3183    bool *result;
3184    struct LDKPeerHandleError *err;
3185 } LDKCResultPtr_bool__PeerHandleError;
3186
3187 typedef struct LDKCResultTempl_bool__PeerHandleError {
3188    union LDKCResultPtr_bool__PeerHandleError contents;
3189    bool result_ok;
3190 } LDKCResultTempl_bool__PeerHandleError;
3191
3192 typedef struct LDKCResultTempl_bool__PeerHandleError LDKCResult_boolPeerHandleErrorZ;
3193
3194 typedef union LDKCResultPtr_SecretKey__Secp256k1Error {
3195    struct LDKSecretKey *result;
3196    enum LDKSecp256k1Error *err;
3197 } LDKCResultPtr_SecretKey__Secp256k1Error;
3198
3199 typedef struct LDKCResultTempl_SecretKey__Secp256k1Error {
3200    union LDKCResultPtr_SecretKey__Secp256k1Error contents;
3201    bool result_ok;
3202 } LDKCResultTempl_SecretKey__Secp256k1Error;
3203
3204 typedef struct LDKCResultTempl_SecretKey__Secp256k1Error LDKCResult_SecretKeySecpErrorZ;
3205
3206 typedef union LDKCResultPtr_PublicKey__Secp256k1Error {
3207    struct LDKPublicKey *result;
3208    enum LDKSecp256k1Error *err;
3209 } LDKCResultPtr_PublicKey__Secp256k1Error;
3210
3211 typedef struct LDKCResultTempl_PublicKey__Secp256k1Error {
3212    union LDKCResultPtr_PublicKey__Secp256k1Error contents;
3213    bool result_ok;
3214 } LDKCResultTempl_PublicKey__Secp256k1Error;
3215
3216 typedef struct LDKCResultTempl_PublicKey__Secp256k1Error LDKCResult_PublicKeySecpErrorZ;
3217
3218
3219
3220 /**
3221  * The set of public keys which are used in the creation of one commitment transaction.
3222  * These are derived from the channel base keys and per-commitment data.
3223  *
3224  * A broadcaster key is provided from potential broadcaster of the computed transaction.
3225  * A countersignatory key is coming from a protocol participant unable to broadcast the
3226  * transaction.
3227  *
3228  * These keys are assumed to be good, either because the code derived them from
3229  * channel basepoints via the new function, or they were obtained via
3230  * CommitmentTransaction.trust().keys() because we trusted the source of the
3231  * pre-calculated keys.
3232  */
3233 typedef struct MUST_USE_STRUCT LDKTxCreationKeys {
3234    /**
3235     * Nearly everywhere, inner must be non-null, however in places where
3236     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3237     */
3238    LDKnativeTxCreationKeys *inner;
3239    bool is_owned;
3240 } LDKTxCreationKeys;
3241
3242 typedef union LDKCResultPtr_TxCreationKeys__Secp256k1Error {
3243    struct LDKTxCreationKeys *result;
3244    enum LDKSecp256k1Error *err;
3245 } LDKCResultPtr_TxCreationKeys__Secp256k1Error;
3246
3247 typedef struct LDKCResultTempl_TxCreationKeys__Secp256k1Error {
3248    union LDKCResultPtr_TxCreationKeys__Secp256k1Error contents;
3249    bool result_ok;
3250 } LDKCResultTempl_TxCreationKeys__Secp256k1Error;
3251
3252 typedef struct LDKCResultTempl_TxCreationKeys__Secp256k1Error LDKCResult_TxCreationKeysSecpErrorZ;
3253
3254
3255
3256 /**
3257  * Late-bound per-channel counterparty data used to build transactions.
3258  */
3259 typedef struct MUST_USE_STRUCT LDKCounterpartyChannelTransactionParameters {
3260    /**
3261     * Nearly everywhere, inner must be non-null, however in places where
3262     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3263     */
3264    LDKnativeCounterpartyChannelTransactionParameters *inner;
3265    bool is_owned;
3266 } LDKCounterpartyChannelTransactionParameters;
3267
3268
3269
3270 /**
3271  * Static channel fields used to build transactions given per-commitment fields, organized by
3272  * broadcaster/countersignatory.
3273  *
3274  * This is derived from the holder/counterparty-organized ChannelTransactionParameters via the
3275  * as_holder_broadcastable and as_counterparty_broadcastable functions.
3276  */
3277 typedef struct MUST_USE_STRUCT LDKDirectedChannelTransactionParameters {
3278    /**
3279     * Nearly everywhere, inner must be non-null, however in places where
3280     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3281     */
3282    LDKnativeDirectedChannelTransactionParameters *inner;
3283    bool is_owned;
3284 } LDKDirectedChannelTransactionParameters;
3285
3286
3287
3288 /**
3289  * A pre-built Bitcoin commitment transaction and its txid.
3290  */
3291 typedef struct MUST_USE_STRUCT LDKBuiltCommitmentTransaction {
3292    /**
3293     * Nearly everywhere, inner must be non-null, however in places where
3294     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3295     */
3296    LDKnativeBuiltCommitmentTransaction *inner;
3297    bool is_owned;
3298 } LDKBuiltCommitmentTransaction;
3299
3300
3301
3302 /**
3303  * A hop in a route
3304  */
3305 typedef struct MUST_USE_STRUCT LDKRouteHop {
3306    /**
3307     * Nearly everywhere, inner must be non-null, however in places where
3308     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3309     */
3310    LDKnativeRouteHop *inner;
3311    bool is_owned;
3312 } LDKRouteHop;
3313
3314 typedef struct LDKCVecTempl_RouteHop {
3315    struct LDKRouteHop *data;
3316    uintptr_t datalen;
3317 } LDKCVecTempl_RouteHop;
3318
3319 typedef struct LDKCVecTempl_CVecTempl_RouteHop {
3320    struct LDKCVecTempl_RouteHop *data;
3321    uintptr_t datalen;
3322 } LDKCVecTempl_CVecTempl_RouteHop;
3323
3324 typedef struct LDKCVecTempl_CVecTempl_RouteHop LDKCVec_CVec_RouteHopZZ;
3325
3326 typedef union LDKCResultPtr_Route__DecodeError {
3327    struct LDKRoute *result;
3328    struct LDKDecodeError *err;
3329 } LDKCResultPtr_Route__DecodeError;
3330
3331 typedef struct LDKCResultTempl_Route__DecodeError {
3332    union LDKCResultPtr_Route__DecodeError contents;
3333    bool result_ok;
3334 } LDKCResultTempl_Route__DecodeError;
3335
3336 typedef struct LDKCResultTempl_Route__DecodeError LDKCResult_RouteDecodeErrorZ;
3337
3338
3339
3340 /**
3341  * A channel descriptor which provides a last-hop route to get_route
3342  */
3343 typedef struct MUST_USE_STRUCT LDKRouteHint {
3344    /**
3345     * Nearly everywhere, inner must be non-null, however in places where
3346     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3347     */
3348    LDKnativeRouteHint *inner;
3349    bool is_owned;
3350 } LDKRouteHint;
3351
3352
3353
3354 /**
3355  * Fees for routing via a given channel or a node
3356  */
3357 typedef struct MUST_USE_STRUCT LDKRoutingFees {
3358    /**
3359     * Nearly everywhere, inner must be non-null, however in places where
3360     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3361     */
3362    LDKnativeRoutingFees *inner;
3363    bool is_owned;
3364 } LDKRoutingFees;
3365
3366 typedef union LDKCResultPtr_Route__LightningError {
3367    struct LDKRoute *result;
3368    struct LDKLightningError *err;
3369 } LDKCResultPtr_Route__LightningError;
3370
3371 typedef struct LDKCResultTempl_Route__LightningError {
3372    union LDKCResultPtr_Route__LightningError contents;
3373    bool result_ok;
3374 } LDKCResultTempl_Route__LightningError;
3375
3376 typedef struct LDKCResultTempl_Route__LightningError LDKCResult_RouteLightningErrorZ;
3377
3378
3379
3380 /**
3381  * Represents the network as nodes and channels between them
3382  */
3383 typedef struct MUST_USE_STRUCT LDKNetworkGraph {
3384    /**
3385     * Nearly everywhere, inner must be non-null, however in places where
3386     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3387     */
3388    LDKnativeNetworkGraph *inner;
3389    bool is_owned;
3390 } LDKNetworkGraph;
3391
3392 typedef struct LDKCVecTempl_RouteHint {
3393    struct LDKRouteHint *data;
3394    uintptr_t datalen;
3395 } LDKCVecTempl_RouteHint;
3396
3397 typedef struct LDKCVecTempl_RouteHint LDKCVec_RouteHintZ;
3398
3399
3400
3401 /**
3402  * A simple newtype for RwLockReadGuard<'a, NetworkGraph>.
3403  * This exists only to make accessing a RwLock<NetworkGraph> possible from
3404  * the C bindings, as it can be done directly in Rust code.
3405  */
3406 typedef struct MUST_USE_STRUCT LDKLockedNetworkGraph {
3407    /**
3408     * Nearly everywhere, inner must be non-null, however in places where
3409     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3410     */
3411    LDKnativeLockedNetworkGraph *inner;
3412    bool is_owned;
3413 } LDKLockedNetworkGraph;
3414
3415
3416
3417 /**
3418  * Receives and validates network updates from peers,
3419  * stores authentic and relevant data as a network graph.
3420  * This network graph is then used for routing payments.
3421  * Provides interface to help with initial routing sync by
3422  * serving historical announcements.
3423  */
3424 typedef struct MUST_USE_STRUCT LDKNetGraphMsgHandler {
3425    /**
3426     * Nearly everywhere, inner must be non-null, however in places where
3427     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3428     */
3429    LDKnativeNetGraphMsgHandler *inner;
3430    bool is_owned;
3431 } LDKNetGraphMsgHandler;
3432
3433
3434
3435 /**
3436  * Details about one direction of a channel. Received
3437  * within a channel update.
3438  */
3439 typedef struct MUST_USE_STRUCT LDKDirectionalChannelInfo {
3440    /**
3441     * Nearly everywhere, inner must be non-null, however in places where
3442     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3443     */
3444    LDKnativeDirectionalChannelInfo *inner;
3445    bool is_owned;
3446 } LDKDirectionalChannelInfo;
3447
3448
3449
3450 /**
3451  * Details about a channel (both directions).
3452  * Received within a channel announcement.
3453  */
3454 typedef struct MUST_USE_STRUCT LDKChannelInfo {
3455    /**
3456     * Nearly everywhere, inner must be non-null, however in places where
3457     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3458     */
3459    LDKnativeChannelInfo *inner;
3460    bool is_owned;
3461 } LDKChannelInfo;
3462
3463 typedef union LDKCResultPtr_RoutingFees__DecodeError {
3464    struct LDKRoutingFees *result;
3465    struct LDKDecodeError *err;
3466 } LDKCResultPtr_RoutingFees__DecodeError;
3467
3468 typedef struct LDKCResultTempl_RoutingFees__DecodeError {
3469    union LDKCResultPtr_RoutingFees__DecodeError contents;
3470    bool result_ok;
3471 } LDKCResultTempl_RoutingFees__DecodeError;
3472
3473 typedef struct LDKCResultTempl_RoutingFees__DecodeError LDKCResult_RoutingFeesDecodeErrorZ;
3474
3475
3476
3477 /**
3478  * Information received in the latest node_announcement from this node.
3479  */
3480 typedef struct MUST_USE_STRUCT LDKNodeAnnouncementInfo {
3481    /**
3482     * Nearly everywhere, inner must be non-null, however in places where
3483     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3484     */
3485    LDKnativeNodeAnnouncementInfo *inner;
3486    bool is_owned;
3487 } LDKNodeAnnouncementInfo;
3488
3489 typedef union LDKCResultPtr_NodeAnnouncementInfo__DecodeError {
3490    struct LDKNodeAnnouncementInfo *result;
3491    struct LDKDecodeError *err;
3492 } LDKCResultPtr_NodeAnnouncementInfo__DecodeError;
3493
3494 typedef struct LDKCResultTempl_NodeAnnouncementInfo__DecodeError {
3495    union LDKCResultPtr_NodeAnnouncementInfo__DecodeError contents;
3496    bool result_ok;
3497 } LDKCResultTempl_NodeAnnouncementInfo__DecodeError;
3498
3499 typedef struct LDKCResultTempl_NodeAnnouncementInfo__DecodeError LDKCResult_NodeAnnouncementInfoDecodeErrorZ;
3500
3501
3502
3503 /**
3504  * Details about a node in the network, known from the network announcement.
3505  */
3506 typedef struct MUST_USE_STRUCT LDKNodeInfo {
3507    /**
3508     * Nearly everywhere, inner must be non-null, however in places where
3509     * the Rust equivalent takes an Option, it may be set to null to indicate None.
3510     */
3511    LDKnativeNodeInfo *inner;
3512    bool is_owned;
3513 } LDKNodeInfo;
3514
3515 typedef union LDKCResultPtr_NodeInfo__DecodeError {
3516    struct LDKNodeInfo *result;
3517    struct LDKDecodeError *err;
3518 } LDKCResultPtr_NodeInfo__DecodeError;
3519
3520 typedef struct LDKCResultTempl_NodeInfo__DecodeError {
3521    union LDKCResultPtr_NodeInfo__DecodeError contents;
3522    bool result_ok;
3523 } LDKCResultTempl_NodeInfo__DecodeError;
3524
3525 typedef struct LDKCResultTempl_NodeInfo__DecodeError LDKCResult_NodeInfoDecodeErrorZ;
3526
3527 typedef union LDKCResultPtr_NetworkGraph__DecodeError {
3528    struct LDKNetworkGraph *result;
3529    struct LDKDecodeError *err;
3530 } LDKCResultPtr_NetworkGraph__DecodeError;
3531
3532 typedef struct LDKCResultTempl_NetworkGraph__DecodeError {
3533    union LDKCResultPtr_NetworkGraph__DecodeError contents;
3534    bool result_ok;
3535 } LDKCResultTempl_NetworkGraph__DecodeError;
3536
3537 typedef struct LDKCResultTempl_NetworkGraph__DecodeError LDKCResult_NetworkGraphDecodeErrorZ;
3538
3539 typedef struct LDKCVecTempl_RouteHop LDKCVec_RouteHopZ;
3540
3541 extern const void (*CVec_SpendableOutputDescriptorZ_free)(LDKCVec_SpendableOutputDescriptorZ);
3542
3543 extern const void (*CVec_MessageSendEventZ_free)(LDKCVec_MessageSendEventZ);
3544
3545 extern const void (*CVec_EventZ_free)(LDKCVec_EventZ);
3546
3547 extern const void (*C2Tuple_usizeTransactionZ_free)(LDKC2Tuple_usizeTransactionZ);
3548
3549 extern const void (*CVec_C2Tuple_usizeTransactionZZ_free)(LDKCVec_C2Tuple_usizeTransactionZZ);
3550
3551 extern const void (*CResult_NoneChannelMonitorUpdateErrZ_free)(LDKCResult_NoneChannelMonitorUpdateErrZ);
3552
3553 extern const LDKCResult_NoneChannelMonitorUpdateErrZ (*CResult_NoneChannelMonitorUpdateErrZ_err)(enum LDKChannelMonitorUpdateErr);
3554
3555 extern const void (*CVec_MonitorEventZ_free)(LDKCVec_MonitorEventZ);
3556
3557 extern const void (*CResult_ChannelMonitorUpdateDecodeErrorZ_free)(LDKCResult_ChannelMonitorUpdateDecodeErrorZ);
3558
3559 extern const LDKCResult_ChannelMonitorUpdateDecodeErrorZ (*CResult_ChannelMonitorUpdateDecodeErrorZ_ok)(struct LDKChannelMonitorUpdate);
3560
3561 extern const LDKCResult_ChannelMonitorUpdateDecodeErrorZ (*CResult_ChannelMonitorUpdateDecodeErrorZ_err)(struct LDKDecodeError);
3562
3563 extern const void (*CResult_NoneMonitorUpdateErrorZ_free)(LDKCResult_NoneMonitorUpdateErrorZ);
3564
3565 extern const LDKCResult_NoneMonitorUpdateErrorZ (*CResult_NoneMonitorUpdateErrorZ_err)(struct LDKMonitorUpdateError);
3566
3567 extern const void (*C2Tuple_OutPointScriptZ_free)(LDKC2Tuple_OutPointScriptZ);
3568
3569 extern const void (*CVec_TransactionZ_free)(LDKCVec_TransactionZ);
3570
3571 extern const void (*C2Tuple_u32TxOutZ_free)(LDKC2Tuple_u32TxOutZ);
3572
3573 extern const void (*CVec_C2Tuple_u32TxOutZZ_free)(LDKCVec_C2Tuple_u32TxOutZZ);
3574
3575 extern const void (*C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_free)(LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ);
3576
3577 extern const void (*CVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ_free)(LDKCVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ);
3578
3579 extern const void (*C2Tuple_u64u64Z_free)(LDKC2Tuple_u64u64Z);
3580
3581 extern const void (*CResult_SpendableOutputDescriptorDecodeErrorZ_free)(LDKCResult_SpendableOutputDescriptorDecodeErrorZ);
3582
3583 extern const LDKCResult_SpendableOutputDescriptorDecodeErrorZ (*CResult_SpendableOutputDescriptorDecodeErrorZ_ok)(struct LDKSpendableOutputDescriptor);
3584
3585 extern const LDKCResult_SpendableOutputDescriptorDecodeErrorZ (*CResult_SpendableOutputDescriptorDecodeErrorZ_err)(struct LDKDecodeError);
3586
3587 extern const void (*CVec_SignatureZ_free)(LDKCVec_SignatureZ);
3588
3589 extern const void (*C2Tuple_SignatureCVec_SignatureZZ_free)(LDKC2Tuple_SignatureCVec_SignatureZZ);
3590
3591 extern const void (*CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_free)(LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ);
3592
3593 extern const LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ (*CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_ok)(LDKC2Tuple_SignatureCVec_SignatureZZ);
3594
3595 extern const void (*CResult_SignatureNoneZ_free)(LDKCResult_SignatureNoneZ);
3596
3597 extern const LDKCResult_SignatureNoneZ (*CResult_SignatureNoneZ_ok)(struct LDKSignature);
3598
3599 extern const void (*CResult_CVec_SignatureZNoneZ_free)(LDKCResult_CVec_SignatureZNoneZ);
3600
3601 extern const LDKCResult_CVec_SignatureZNoneZ (*CResult_CVec_SignatureZNoneZ_ok)(LDKCVec_SignatureZ);
3602
3603 extern const void (*CResult_ChanKeySignerDecodeErrorZ_free)(LDKCResult_ChanKeySignerDecodeErrorZ);
3604
3605 extern const LDKCResult_ChanKeySignerDecodeErrorZ (*CResult_ChanKeySignerDecodeErrorZ_ok)(struct LDKChannelKeys);
3606
3607 extern const LDKCResult_ChanKeySignerDecodeErrorZ (*CResult_ChanKeySignerDecodeErrorZ_err)(struct LDKDecodeError);
3608
3609 extern const void (*CResult_InMemoryChannelKeysDecodeErrorZ_free)(LDKCResult_InMemoryChannelKeysDecodeErrorZ);
3610
3611 extern const LDKCResult_InMemoryChannelKeysDecodeErrorZ (*CResult_InMemoryChannelKeysDecodeErrorZ_ok)(struct LDKInMemoryChannelKeys);
3612
3613 extern const LDKCResult_InMemoryChannelKeysDecodeErrorZ (*CResult_InMemoryChannelKeysDecodeErrorZ_err)(struct LDKDecodeError);
3614
3615 extern const void (*CResult_TxOutAccessErrorZ_free)(LDKCResult_TxOutAccessErrorZ);
3616
3617 extern const LDKCResult_TxOutAccessErrorZ (*CResult_TxOutAccessErrorZ_ok)(struct LDKTxOut);
3618
3619 extern const LDKCResult_TxOutAccessErrorZ (*CResult_TxOutAccessErrorZ_err)(enum LDKAccessError);
3620
3621 extern const void (*CResult_NoneAPIErrorZ_free)(LDKCResult_NoneAPIErrorZ);
3622
3623 extern const LDKCResult_NoneAPIErrorZ (*CResult_NoneAPIErrorZ_err)(struct LDKAPIError);
3624
3625 extern const void (*CVec_ChannelDetailsZ_free)(LDKCVec_ChannelDetailsZ);
3626
3627 extern const void (*CResult_NonePaymentSendFailureZ_free)(LDKCResult_NonePaymentSendFailureZ);
3628
3629 extern const LDKCResult_NonePaymentSendFailureZ (*CResult_NonePaymentSendFailureZ_err)(struct LDKPaymentSendFailure);
3630
3631 extern const void (*CVec_NetAddressZ_free)(LDKCVec_NetAddressZ);
3632
3633 extern const void (*CVec_ChannelMonitorZ_free)(LDKCVec_ChannelMonitorZ);
3634
3635 extern const void (*CVec_u64Z_free)(LDKCVec_u64Z);
3636
3637 extern const void (*CVec_UpdateAddHTLCZ_free)(LDKCVec_UpdateAddHTLCZ);
3638
3639 extern const void (*CVec_UpdateFulfillHTLCZ_free)(LDKCVec_UpdateFulfillHTLCZ);
3640
3641 extern const void (*CVec_UpdateFailHTLCZ_free)(LDKCVec_UpdateFailHTLCZ);
3642
3643 extern const void (*CVec_UpdateFailMalformedHTLCZ_free)(LDKCVec_UpdateFailMalformedHTLCZ);
3644
3645 extern const void (*CResult_boolLightningErrorZ_free)(LDKCResult_boolLightningErrorZ);
3646
3647 extern const LDKCResult_boolLightningErrorZ (*CResult_boolLightningErrorZ_ok)(bool);
3648
3649 extern const LDKCResult_boolLightningErrorZ (*CResult_boolLightningErrorZ_err)(struct LDKLightningError);
3650
3651 extern const void (*C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_free)(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ);
3652
3653 extern const void (*CVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_free)(LDKCVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ);
3654
3655 extern const void (*CVec_NodeAnnouncementZ_free)(LDKCVec_NodeAnnouncementZ);
3656
3657 extern const void (*CResult_NoneLightningErrorZ_free)(LDKCResult_NoneLightningErrorZ);
3658
3659 extern const LDKCResult_NoneLightningErrorZ (*CResult_NoneLightningErrorZ_err)(struct LDKLightningError);
3660
3661 extern const void (*CResult_ChannelReestablishDecodeErrorZ_free)(LDKCResult_ChannelReestablishDecodeErrorZ);
3662
3663 extern const LDKCResult_ChannelReestablishDecodeErrorZ (*CResult_ChannelReestablishDecodeErrorZ_ok)(struct LDKChannelReestablish);
3664
3665 extern const LDKCResult_ChannelReestablishDecodeErrorZ (*CResult_ChannelReestablishDecodeErrorZ_err)(struct LDKDecodeError);
3666
3667 extern const void (*CResult_InitDecodeErrorZ_free)(LDKCResult_InitDecodeErrorZ);
3668
3669 extern const LDKCResult_InitDecodeErrorZ (*CResult_InitDecodeErrorZ_ok)(struct LDKInit);
3670
3671 extern const LDKCResult_InitDecodeErrorZ (*CResult_InitDecodeErrorZ_err)(struct LDKDecodeError);
3672
3673 extern const void (*CResult_PingDecodeErrorZ_free)(LDKCResult_PingDecodeErrorZ);
3674
3675 extern const LDKCResult_PingDecodeErrorZ (*CResult_PingDecodeErrorZ_ok)(struct LDKPing);
3676
3677 extern const LDKCResult_PingDecodeErrorZ (*CResult_PingDecodeErrorZ_err)(struct LDKDecodeError);
3678
3679 extern const void (*CResult_PongDecodeErrorZ_free)(LDKCResult_PongDecodeErrorZ);
3680
3681 extern const LDKCResult_PongDecodeErrorZ (*CResult_PongDecodeErrorZ_ok)(struct LDKPong);
3682
3683 extern const LDKCResult_PongDecodeErrorZ (*CResult_PongDecodeErrorZ_err)(struct LDKDecodeError);
3684
3685 extern const void (*CResult_UnsignedChannelAnnouncementDecodeErrorZ_free)(LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ);
3686
3687 extern const LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ (*CResult_UnsignedChannelAnnouncementDecodeErrorZ_ok)(struct LDKUnsignedChannelAnnouncement);
3688
3689 extern const LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ (*CResult_UnsignedChannelAnnouncementDecodeErrorZ_err)(struct LDKDecodeError);
3690
3691 extern const void (*CResult_UnsignedChannelUpdateDecodeErrorZ_free)(LDKCResult_UnsignedChannelUpdateDecodeErrorZ);
3692
3693 extern const LDKCResult_UnsignedChannelUpdateDecodeErrorZ (*CResult_UnsignedChannelUpdateDecodeErrorZ_ok)(struct LDKUnsignedChannelUpdate);
3694
3695 extern const LDKCResult_UnsignedChannelUpdateDecodeErrorZ (*CResult_UnsignedChannelUpdateDecodeErrorZ_err)(struct LDKDecodeError);
3696
3697 extern const void (*CResult_ErrorMessageDecodeErrorZ_free)(LDKCResult_ErrorMessageDecodeErrorZ);
3698
3699 extern const LDKCResult_ErrorMessageDecodeErrorZ (*CResult_ErrorMessageDecodeErrorZ_ok)(struct LDKErrorMessage);
3700
3701 extern const LDKCResult_ErrorMessageDecodeErrorZ (*CResult_ErrorMessageDecodeErrorZ_err)(struct LDKDecodeError);
3702
3703 extern const void (*CResult_UnsignedNodeAnnouncementDecodeErrorZ_free)(LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ);
3704
3705 extern const LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ (*CResult_UnsignedNodeAnnouncementDecodeErrorZ_ok)(struct LDKUnsignedNodeAnnouncement);
3706
3707 extern const LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ (*CResult_UnsignedNodeAnnouncementDecodeErrorZ_err)(struct LDKDecodeError);
3708
3709 extern const void (*CResult_QueryShortChannelIdsDecodeErrorZ_free)(LDKCResult_QueryShortChannelIdsDecodeErrorZ);
3710
3711 extern const LDKCResult_QueryShortChannelIdsDecodeErrorZ (*CResult_QueryShortChannelIdsDecodeErrorZ_ok)(struct LDKQueryShortChannelIds);
3712
3713 extern const LDKCResult_QueryShortChannelIdsDecodeErrorZ (*CResult_QueryShortChannelIdsDecodeErrorZ_err)(struct LDKDecodeError);
3714
3715 extern const void (*CResult_ReplyShortChannelIdsEndDecodeErrorZ_free)(LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ);
3716
3717 extern const LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ (*CResult_ReplyShortChannelIdsEndDecodeErrorZ_ok)(struct LDKReplyShortChannelIdsEnd);
3718
3719 extern const LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ (*CResult_ReplyShortChannelIdsEndDecodeErrorZ_err)(struct LDKDecodeError);
3720
3721 extern const void (*CResult_QueryChannelRangeDecodeErrorZ_free)(LDKCResult_QueryChannelRangeDecodeErrorZ);
3722
3723 extern const LDKCResult_QueryChannelRangeDecodeErrorZ (*CResult_QueryChannelRangeDecodeErrorZ_ok)(struct LDKQueryChannelRange);
3724
3725 extern const LDKCResult_QueryChannelRangeDecodeErrorZ (*CResult_QueryChannelRangeDecodeErrorZ_err)(struct LDKDecodeError);
3726
3727 extern const void (*CResult_ReplyChannelRangeDecodeErrorZ_free)(LDKCResult_ReplyChannelRangeDecodeErrorZ);
3728
3729 extern const LDKCResult_ReplyChannelRangeDecodeErrorZ (*CResult_ReplyChannelRangeDecodeErrorZ_ok)(struct LDKReplyChannelRange);
3730
3731 extern const LDKCResult_ReplyChannelRangeDecodeErrorZ (*CResult_ReplyChannelRangeDecodeErrorZ_err)(struct LDKDecodeError);
3732
3733 extern const void (*CResult_GossipTimestampFilterDecodeErrorZ_free)(LDKCResult_GossipTimestampFilterDecodeErrorZ);
3734
3735 extern const LDKCResult_GossipTimestampFilterDecodeErrorZ (*CResult_GossipTimestampFilterDecodeErrorZ_ok)(struct LDKGossipTimestampFilter);
3736
3737 extern const LDKCResult_GossipTimestampFilterDecodeErrorZ (*CResult_GossipTimestampFilterDecodeErrorZ_err)(struct LDKDecodeError);
3738
3739 extern const void (*CVec_PublicKeyZ_free)(LDKCVec_PublicKeyZ);
3740
3741 extern const void (*CVec_u8Z_free)(LDKCVec_u8Z);
3742
3743 extern const void (*CResult_CVec_u8ZPeerHandleErrorZ_free)(LDKCResult_CVec_u8ZPeerHandleErrorZ);
3744
3745 extern const LDKCResult_CVec_u8ZPeerHandleErrorZ (*CResult_CVec_u8ZPeerHandleErrorZ_ok)(LDKCVec_u8Z);
3746
3747 extern const LDKCResult_CVec_u8ZPeerHandleErrorZ (*CResult_CVec_u8ZPeerHandleErrorZ_err)(struct LDKPeerHandleError);
3748
3749 extern const void (*CResult_NonePeerHandleErrorZ_free)(LDKCResult_NonePeerHandleErrorZ);
3750
3751 extern const LDKCResult_NonePeerHandleErrorZ (*CResult_NonePeerHandleErrorZ_err)(struct LDKPeerHandleError);
3752
3753 extern const void (*CResult_boolPeerHandleErrorZ_free)(LDKCResult_boolPeerHandleErrorZ);
3754
3755 extern const LDKCResult_boolPeerHandleErrorZ (*CResult_boolPeerHandleErrorZ_ok)(bool);
3756
3757 extern const LDKCResult_boolPeerHandleErrorZ (*CResult_boolPeerHandleErrorZ_err)(struct LDKPeerHandleError);
3758
3759 extern const void (*CResult_SecretKeySecpErrorZ_free)(LDKCResult_SecretKeySecpErrorZ);
3760
3761 extern const LDKCResult_SecretKeySecpErrorZ (*CResult_SecretKeySecpErrorZ_ok)(struct LDKSecretKey);
3762
3763 extern const LDKCResult_SecretKeySecpErrorZ (*CResult_SecretKeySecpErrorZ_err)(enum LDKSecp256k1Error);
3764
3765 extern const void (*CResult_PublicKeySecpErrorZ_free)(LDKCResult_PublicKeySecpErrorZ);
3766
3767 extern const LDKCResult_PublicKeySecpErrorZ (*CResult_PublicKeySecpErrorZ_ok)(struct LDKPublicKey);
3768
3769 extern const LDKCResult_PublicKeySecpErrorZ (*CResult_PublicKeySecpErrorZ_err)(enum LDKSecp256k1Error);
3770
3771 extern const void (*CResult_TxCreationKeysSecpErrorZ_free)(LDKCResult_TxCreationKeysSecpErrorZ);
3772
3773 extern const LDKCResult_TxCreationKeysSecpErrorZ (*CResult_TxCreationKeysSecpErrorZ_ok)(struct LDKTxCreationKeys);
3774
3775 extern const LDKCResult_TxCreationKeysSecpErrorZ (*CResult_TxCreationKeysSecpErrorZ_err)(enum LDKSecp256k1Error);
3776
3777 extern const void (*CResult_TrustedCommitmentTransactionNoneZ_free)(LDKCResult_TrustedCommitmentTransactionNoneZ);
3778
3779 extern const LDKCResult_TrustedCommitmentTransactionNoneZ (*CResult_TrustedCommitmentTransactionNoneZ_ok)(struct LDKTrustedCommitmentTransaction);
3780
3781 extern const void (*CVec_RouteHopZ_free)(LDKCVec_RouteHopZ);
3782
3783 extern const void (*CVec_CVec_RouteHopZZ_free)(LDKCVec_CVec_RouteHopZZ);
3784
3785 extern const void (*CResult_RouteDecodeErrorZ_free)(LDKCResult_RouteDecodeErrorZ);
3786
3787 extern const LDKCResult_RouteDecodeErrorZ (*CResult_RouteDecodeErrorZ_ok)(struct LDKRoute);
3788
3789 extern const LDKCResult_RouteDecodeErrorZ (*CResult_RouteDecodeErrorZ_err)(struct LDKDecodeError);
3790
3791 extern const void (*CVec_RouteHintZ_free)(LDKCVec_RouteHintZ);
3792
3793 extern const void (*CResult_RouteLightningErrorZ_free)(LDKCResult_RouteLightningErrorZ);
3794
3795 extern const LDKCResult_RouteLightningErrorZ (*CResult_RouteLightningErrorZ_ok)(struct LDKRoute);
3796
3797 extern const LDKCResult_RouteLightningErrorZ (*CResult_RouteLightningErrorZ_err)(struct LDKLightningError);
3798
3799 extern const void (*CResult_RoutingFeesDecodeErrorZ_free)(LDKCResult_RoutingFeesDecodeErrorZ);
3800
3801 extern const LDKCResult_RoutingFeesDecodeErrorZ (*CResult_RoutingFeesDecodeErrorZ_ok)(struct LDKRoutingFees);
3802
3803 extern const LDKCResult_RoutingFeesDecodeErrorZ (*CResult_RoutingFeesDecodeErrorZ_err)(struct LDKDecodeError);
3804
3805 extern const void (*CResult_NodeAnnouncementInfoDecodeErrorZ_free)(LDKCResult_NodeAnnouncementInfoDecodeErrorZ);
3806
3807 extern const LDKCResult_NodeAnnouncementInfoDecodeErrorZ (*CResult_NodeAnnouncementInfoDecodeErrorZ_ok)(struct LDKNodeAnnouncementInfo);
3808
3809 extern const LDKCResult_NodeAnnouncementInfoDecodeErrorZ (*CResult_NodeAnnouncementInfoDecodeErrorZ_err)(struct LDKDecodeError);
3810
3811 extern const void (*CResult_NodeInfoDecodeErrorZ_free)(LDKCResult_NodeInfoDecodeErrorZ);
3812
3813 extern const LDKCResult_NodeInfoDecodeErrorZ (*CResult_NodeInfoDecodeErrorZ_ok)(struct LDKNodeInfo);
3814
3815 extern const LDKCResult_NodeInfoDecodeErrorZ (*CResult_NodeInfoDecodeErrorZ_err)(struct LDKDecodeError);
3816
3817 extern const void (*CResult_NetworkGraphDecodeErrorZ_free)(LDKCResult_NetworkGraphDecodeErrorZ);
3818
3819 extern const LDKCResult_NetworkGraphDecodeErrorZ (*CResult_NetworkGraphDecodeErrorZ_ok)(struct LDKNetworkGraph);
3820
3821 extern const LDKCResult_NetworkGraphDecodeErrorZ (*CResult_NetworkGraphDecodeErrorZ_err)(struct LDKDecodeError);
3822
3823 extern const uintptr_t MAX_BUF_SIZE;
3824
3825 extern const uint64_t MIN_RELAY_FEE_SAT_PER_1000_WEIGHT;
3826
3827 extern const uint64_t CLOSED_CHANNEL_UPDATE_ID;
3828
3829 void Transaction_free(struct LDKTransaction _res);
3830
3831 void TxOut_free(struct LDKTxOut _res);
3832
3833 LDKC2Tuple_usizeTransactionZ C2Tuple_usizeTransactionZ_new(uintptr_t a, struct LDKTransaction b);
3834
3835 LDKCResult_NoneChannelMonitorUpdateErrZ CResult_NoneChannelMonitorUpdateErrZ_ok(void);
3836
3837 LDKCResult_NoneMonitorUpdateErrorZ CResult_NoneMonitorUpdateErrorZ_ok(void);
3838
3839 LDKC2Tuple_OutPointScriptZ C2Tuple_OutPointScriptZ_new(struct LDKOutPoint a, LDKCVec_u8Z b);
3840
3841 LDKC2Tuple_u32TxOutZ C2Tuple_u32TxOutZ_new(uint32_t a, struct LDKTxOut b);
3842
3843 LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_new(struct LDKThirtyTwoBytes a, LDKCVec_C2Tuple_u32TxOutZZ b);
3844
3845 LDKC2Tuple_u64u64Z C2Tuple_u64u64Z_new(uint64_t a, uint64_t b);
3846
3847 LDKC2Tuple_SignatureCVec_SignatureZZ C2Tuple_SignatureCVec_SignatureZZ_new(struct LDKSignature a, LDKCVec_SignatureZ b);
3848
3849 LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_err(void);
3850
3851 LDKCResult_SignatureNoneZ CResult_SignatureNoneZ_err(void);
3852
3853 LDKCResult_CVec_SignatureZNoneZ CResult_CVec_SignatureZNoneZ_err(void);
3854
3855 LDKCResult_NoneAPIErrorZ CResult_NoneAPIErrorZ_ok(void);
3856
3857 LDKCResult_NonePaymentSendFailureZ CResult_NonePaymentSendFailureZ_ok(void);
3858
3859 LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_new(struct LDKChannelAnnouncement a, struct LDKChannelUpdate b, struct LDKChannelUpdate c);
3860
3861 LDKCResult_NoneLightningErrorZ CResult_NoneLightningErrorZ_ok(void);
3862
3863 LDKCResult_NonePeerHandleErrorZ CResult_NonePeerHandleErrorZ_ok(void);
3864
3865 LDKCResult_TrustedCommitmentTransactionNoneZ CResult_TrustedCommitmentTransactionNoneZ_err(void);
3866
3867 void Event_free(struct LDKEvent this_ptr);
3868
3869 struct LDKEvent Event_clone(const struct LDKEvent *orig);
3870
3871 LDKCVec_u8Z Event_write(const struct LDKEvent *obj);
3872
3873 void MessageSendEvent_free(struct LDKMessageSendEvent this_ptr);
3874
3875 struct LDKMessageSendEvent MessageSendEvent_clone(const struct LDKMessageSendEvent *orig);
3876
3877 /**
3878  * Calls the free function if one is set
3879  */
3880 void MessageSendEventsProvider_free(struct LDKMessageSendEventsProvider this_ptr);
3881
3882 /**
3883  * Calls the free function if one is set
3884  */
3885 void EventsProvider_free(struct LDKEventsProvider this_ptr);
3886
3887 void APIError_free(struct LDKAPIError this_ptr);
3888
3889 struct LDKAPIError APIError_clone(const struct LDKAPIError *orig);
3890
3891 enum LDKLevel Level_clone(const enum LDKLevel *orig);
3892
3893 /**
3894  * Returns the most verbose logging level.
3895  */
3896 MUST_USE_RES enum LDKLevel Level_max(void);
3897
3898 /**
3899  * Calls the free function if one is set
3900  */
3901 void Logger_free(struct LDKLogger this_ptr);
3902
3903 void ChannelHandshakeConfig_free(struct LDKChannelHandshakeConfig this_ptr);
3904
3905 struct LDKChannelHandshakeConfig ChannelHandshakeConfig_clone(const struct LDKChannelHandshakeConfig *orig);
3906
3907 /**
3908  * Confirmations we will wait for before considering the channel locked in.
3909  * Applied only for inbound channels (see ChannelHandshakeLimits::max_minimum_depth for the
3910  * equivalent limit applied to outbound channels).
3911  *
3912  * Default value: 6.
3913  */
3914 uint32_t ChannelHandshakeConfig_get_minimum_depth(const struct LDKChannelHandshakeConfig *this_ptr);
3915
3916 /**
3917  * Confirmations we will wait for before considering the channel locked in.
3918  * Applied only for inbound channels (see ChannelHandshakeLimits::max_minimum_depth for the
3919  * equivalent limit applied to outbound channels).
3920  *
3921  * Default value: 6.
3922  */
3923 void ChannelHandshakeConfig_set_minimum_depth(struct LDKChannelHandshakeConfig *this_ptr, uint32_t val);
3924
3925 /**
3926  * Set to the amount of time we require our counterparty to wait to claim their money.
3927  *
3928  * It's one of the main parameter of our security model. We (or one of our watchtowers) MUST
3929  * be online to check for peer having broadcast a revoked transaction to steal our funds
3930  * at least once every our_to_self_delay blocks.
3931  *
3932  * Meanwhile, asking for a too high delay, we bother peer to freeze funds for nothing in
3933  * case of an honest unilateral channel close, which implicitly decrease the economic value of
3934  * our channel.
3935  *
3936  * Default value: BREAKDOWN_TIMEOUT (currently 144), we enforce it as a minimum at channel
3937  * opening so you can tweak config to ask for more security, not less.
3938  */
3939 uint16_t ChannelHandshakeConfig_get_our_to_self_delay(const struct LDKChannelHandshakeConfig *this_ptr);
3940
3941 /**
3942  * Set to the amount of time we require our counterparty to wait to claim their money.
3943  *
3944  * It's one of the main parameter of our security model. We (or one of our watchtowers) MUST
3945  * be online to check for peer having broadcast a revoked transaction to steal our funds
3946  * at least once every our_to_self_delay blocks.
3947  *
3948  * Meanwhile, asking for a too high delay, we bother peer to freeze funds for nothing in
3949  * case of an honest unilateral channel close, which implicitly decrease the economic value of
3950  * our channel.
3951  *
3952  * Default value: BREAKDOWN_TIMEOUT (currently 144), we enforce it as a minimum at channel
3953  * opening so you can tweak config to ask for more security, not less.
3954  */
3955 void ChannelHandshakeConfig_set_our_to_self_delay(struct LDKChannelHandshakeConfig *this_ptr, uint16_t val);
3956
3957 /**
3958  * Set to the smallest value HTLC we will accept to process.
3959  *
3960  * This value is sent to our counterparty on channel-open and we close the channel any time
3961  * our counterparty misbehaves by sending us an HTLC with a value smaller than this.
3962  *
3963  * Default value: 1. If the value is less than 1, it is ignored and set to 1, as is required
3964  * by the protocol.
3965  */
3966 uint64_t ChannelHandshakeConfig_get_our_htlc_minimum_msat(const struct LDKChannelHandshakeConfig *this_ptr);
3967
3968 /**
3969  * Set to the smallest value HTLC we will accept to process.
3970  *
3971  * This value is sent to our counterparty on channel-open and we close the channel any time
3972  * our counterparty misbehaves by sending us an HTLC with a value smaller than this.
3973  *
3974  * Default value: 1. If the value is less than 1, it is ignored and set to 1, as is required
3975  * by the protocol.
3976  */
3977 void ChannelHandshakeConfig_set_our_htlc_minimum_msat(struct LDKChannelHandshakeConfig *this_ptr, uint64_t val);
3978
3979 MUST_USE_RES struct LDKChannelHandshakeConfig ChannelHandshakeConfig_new(uint32_t minimum_depth_arg, uint16_t our_to_self_delay_arg, uint64_t our_htlc_minimum_msat_arg);
3980
3981 MUST_USE_RES struct LDKChannelHandshakeConfig ChannelHandshakeConfig_default(void);
3982
3983 void ChannelHandshakeLimits_free(struct LDKChannelHandshakeLimits this_ptr);
3984
3985 struct LDKChannelHandshakeLimits ChannelHandshakeLimits_clone(const struct LDKChannelHandshakeLimits *orig);
3986
3987 /**
3988  * Minimum allowed satoshis when a channel is funded, this is supplied by the sender and so
3989  * only applies to inbound channels.
3990  *
3991  * Default value: 0.
3992  */
3993 uint64_t ChannelHandshakeLimits_get_min_funding_satoshis(const struct LDKChannelHandshakeLimits *this_ptr);
3994
3995 /**
3996  * Minimum allowed satoshis when a channel is funded, this is supplied by the sender and so
3997  * only applies to inbound channels.
3998  *
3999  * Default value: 0.
4000  */
4001 void ChannelHandshakeLimits_set_min_funding_satoshis(struct LDKChannelHandshakeLimits *this_ptr, uint64_t val);
4002
4003 /**
4004  * The remote node sets a limit on the minimum size of HTLCs we can send to them. This allows
4005  * you to limit the maximum minimum-size they can require.
4006  *
4007  * Default value: u64::max_value.
4008  */
4009 uint64_t ChannelHandshakeLimits_get_max_htlc_minimum_msat(const struct LDKChannelHandshakeLimits *this_ptr);
4010
4011 /**
4012  * The remote node sets a limit on the minimum size of HTLCs we can send to them. This allows
4013  * you to limit the maximum minimum-size they can require.
4014  *
4015  * Default value: u64::max_value.
4016  */
4017 void ChannelHandshakeLimits_set_max_htlc_minimum_msat(struct LDKChannelHandshakeLimits *this_ptr, uint64_t val);
4018
4019 /**
4020  * The remote node sets a limit on the maximum value of pending HTLCs to them at any given
4021  * time to limit their funds exposure to HTLCs. This allows you to set a minimum such value.
4022  *
4023  * Default value: 0.
4024  */
4025 uint64_t ChannelHandshakeLimits_get_min_max_htlc_value_in_flight_msat(const struct LDKChannelHandshakeLimits *this_ptr);
4026
4027 /**
4028  * The remote node sets a limit on the maximum value of pending HTLCs to them at any given
4029  * time to limit their funds exposure to HTLCs. This allows you to set a minimum such value.
4030  *
4031  * Default value: 0.
4032  */
4033 void ChannelHandshakeLimits_set_min_max_htlc_value_in_flight_msat(struct LDKChannelHandshakeLimits *this_ptr, uint64_t val);
4034
4035 /**
4036  * The remote node will require we keep a certain amount in direct payment to ourselves at all
4037  * time, ensuring that we are able to be punished if we broadcast an old state. This allows to
4038  * you limit the amount which we will have to keep to ourselves (and cannot use for HTLCs).
4039  *
4040  * Default value: u64::max_value.
4041  */
4042 uint64_t ChannelHandshakeLimits_get_max_channel_reserve_satoshis(const struct LDKChannelHandshakeLimits *this_ptr);
4043
4044 /**
4045  * The remote node will require we keep a certain amount in direct payment to ourselves at all
4046  * time, ensuring that we are able to be punished if we broadcast an old state. This allows to
4047  * you limit the amount which we will have to keep to ourselves (and cannot use for HTLCs).
4048  *
4049  * Default value: u64::max_value.
4050  */
4051 void ChannelHandshakeLimits_set_max_channel_reserve_satoshis(struct LDKChannelHandshakeLimits *this_ptr, uint64_t val);
4052
4053 /**
4054  * The remote node sets a limit on the maximum number of pending HTLCs to them at any given
4055  * time. This allows you to set a minimum such value.
4056  *
4057  * Default value: 0.
4058  */
4059 uint16_t ChannelHandshakeLimits_get_min_max_accepted_htlcs(const struct LDKChannelHandshakeLimits *this_ptr);
4060
4061 /**
4062  * The remote node sets a limit on the maximum number of pending HTLCs to them at any given
4063  * time. This allows you to set a minimum such value.
4064  *
4065  * Default value: 0.
4066  */
4067 void ChannelHandshakeLimits_set_min_max_accepted_htlcs(struct LDKChannelHandshakeLimits *this_ptr, uint16_t val);
4068
4069 /**
4070  * Outputs below a certain value will not be added to on-chain transactions. The dust value is
4071  * required to always be higher than this value so this only applies to HTLC outputs (and
4072  * potentially to-self outputs before any payments have been made).
4073  * Thus, HTLCs below this amount plus HTLC transaction fees are not enforceable on-chain.
4074  * This setting allows you to set a minimum dust limit for their commitment transactions,
4075  * reflecting the reality that tiny outputs are not considered standard transactions and will
4076  * not propagate through the Bitcoin network.
4077  *
4078  * Default value: 546, the current dust limit on the Bitcoin network.
4079  */
4080 uint64_t ChannelHandshakeLimits_get_min_dust_limit_satoshis(const struct LDKChannelHandshakeLimits *this_ptr);
4081
4082 /**
4083  * Outputs below a certain value will not be added to on-chain transactions. The dust value is
4084  * required to always be higher than this value so this only applies to HTLC outputs (and
4085  * potentially to-self outputs before any payments have been made).
4086  * Thus, HTLCs below this amount plus HTLC transaction fees are not enforceable on-chain.
4087  * This setting allows you to set a minimum dust limit for their commitment transactions,
4088  * reflecting the reality that tiny outputs are not considered standard transactions and will
4089  * not propagate through the Bitcoin network.
4090  *
4091  * Default value: 546, the current dust limit on the Bitcoin network.
4092  */
4093 void ChannelHandshakeLimits_set_min_dust_limit_satoshis(struct LDKChannelHandshakeLimits *this_ptr, uint64_t val);
4094
4095 /**
4096  * Maximum allowed threshold above which outputs will not be generated in their commitment
4097  * transactions.
4098  * HTLCs below this amount plus HTLC transaction fees are not enforceable on-chain.
4099  *
4100  * Default value: u64::max_value.
4101  */
4102 uint64_t ChannelHandshakeLimits_get_max_dust_limit_satoshis(const struct LDKChannelHandshakeLimits *this_ptr);
4103
4104 /**
4105  * Maximum allowed threshold above which outputs will not be generated in their commitment
4106  * transactions.
4107  * HTLCs below this amount plus HTLC transaction fees are not enforceable on-chain.
4108  *
4109  * Default value: u64::max_value.
4110  */
4111 void ChannelHandshakeLimits_set_max_dust_limit_satoshis(struct LDKChannelHandshakeLimits *this_ptr, uint64_t val);
4112
4113 /**
4114  * Before a channel is usable the funding transaction will need to be confirmed by at least a
4115  * certain number of blocks, specified by the node which is not the funder (as the funder can
4116  * assume they aren't going to double-spend themselves).
4117  * This config allows you to set a limit on the maximum amount of time to wait.
4118  *
4119  * Default value: 144, or roughly one day and only applies to outbound channels.
4120  */
4121 uint32_t ChannelHandshakeLimits_get_max_minimum_depth(const struct LDKChannelHandshakeLimits *this_ptr);
4122
4123 /**
4124  * Before a channel is usable the funding transaction will need to be confirmed by at least a
4125  * certain number of blocks, specified by the node which is not the funder (as the funder can
4126  * assume they aren't going to double-spend themselves).
4127  * This config allows you to set a limit on the maximum amount of time to wait.
4128  *
4129  * Default value: 144, or roughly one day and only applies to outbound channels.
4130  */
4131 void ChannelHandshakeLimits_set_max_minimum_depth(struct LDKChannelHandshakeLimits *this_ptr, uint32_t val);
4132
4133 /**
4134  * Set to force the incoming channel to match our announced channel preference in
4135  * ChannelConfig.
4136  *
4137  * Default value: true, to make the default that no announced channels are possible (which is
4138  * appropriate for any nodes which are not online very reliably).
4139  */
4140 bool ChannelHandshakeLimits_get_force_announced_channel_preference(const struct LDKChannelHandshakeLimits *this_ptr);
4141
4142 /**
4143  * Set to force the incoming channel to match our announced channel preference in
4144  * ChannelConfig.
4145  *
4146  * Default value: true, to make the default that no announced channels are possible (which is
4147  * appropriate for any nodes which are not online very reliably).
4148  */
4149 void ChannelHandshakeLimits_set_force_announced_channel_preference(struct LDKChannelHandshakeLimits *this_ptr, bool val);
4150
4151 /**
4152  * Set to the amount of time we're willing to wait to claim money back to us.
4153  *
4154  * Not checking this value would be a security issue, as our peer would be able to set it to
4155  * max relative lock-time (a year) and we would \"lose\" money as it would be locked for a long time.
4156  *
4157  * Default value: MAX_LOCAL_BREAKDOWN_TIMEOUT (1008), which we also enforce as a maximum value
4158  * so you can tweak config to reduce the loss of having useless locked funds (if your peer accepts)
4159  */
4160 uint16_t ChannelHandshakeLimits_get_their_to_self_delay(const struct LDKChannelHandshakeLimits *this_ptr);
4161
4162 /**
4163  * Set to the amount of time we're willing to wait to claim money back to us.
4164  *
4165  * Not checking this value would be a security issue, as our peer would be able to set it to
4166  * max relative lock-time (a year) and we would \"lose\" money as it would be locked for a long time.
4167  *
4168  * Default value: MAX_LOCAL_BREAKDOWN_TIMEOUT (1008), which we also enforce as a maximum value
4169  * so you can tweak config to reduce the loss of having useless locked funds (if your peer accepts)
4170  */
4171 void ChannelHandshakeLimits_set_their_to_self_delay(struct LDKChannelHandshakeLimits *this_ptr, uint16_t val);
4172
4173 MUST_USE_RES struct 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);
4174
4175 MUST_USE_RES struct LDKChannelHandshakeLimits ChannelHandshakeLimits_default(void);
4176
4177 void ChannelConfig_free(struct LDKChannelConfig this_ptr);
4178
4179 struct LDKChannelConfig ChannelConfig_clone(const struct LDKChannelConfig *orig);
4180
4181 /**
4182  * Amount (in millionths of a satoshi) the channel will charge per transferred satoshi.
4183  * This may be allowed to change at runtime in a later update, however doing so must result in
4184  * update messages sent to notify all nodes of our updated relay fee.
4185  *
4186  * Default value: 0.
4187  */
4188 uint32_t ChannelConfig_get_fee_proportional_millionths(const struct LDKChannelConfig *this_ptr);
4189
4190 /**
4191  * Amount (in millionths of a satoshi) the channel will charge per transferred satoshi.
4192  * This may be allowed to change at runtime in a later update, however doing so must result in
4193  * update messages sent to notify all nodes of our updated relay fee.
4194  *
4195  * Default value: 0.
4196  */
4197 void ChannelConfig_set_fee_proportional_millionths(struct LDKChannelConfig *this_ptr, uint32_t val);
4198
4199 /**
4200  * Set to announce the channel publicly and notify all nodes that they can route via this
4201  * channel.
4202  *
4203  * This should only be set to true for nodes which expect to be online reliably.
4204  *
4205  * As the node which funds a channel picks this value this will only apply for new outbound
4206  * channels unless ChannelHandshakeLimits::force_announced_channel_preferences is set.
4207  *
4208  * This cannot be changed after the initial channel handshake.
4209  *
4210  * Default value: false.
4211  */
4212 bool ChannelConfig_get_announced_channel(const struct LDKChannelConfig *this_ptr);
4213
4214 /**
4215  * Set to announce the channel publicly and notify all nodes that they can route via this
4216  * channel.
4217  *
4218  * This should only be set to true for nodes which expect to be online reliably.
4219  *
4220  * As the node which funds a channel picks this value this will only apply for new outbound
4221  * channels unless ChannelHandshakeLimits::force_announced_channel_preferences is set.
4222  *
4223  * This cannot be changed after the initial channel handshake.
4224  *
4225  * Default value: false.
4226  */
4227 void ChannelConfig_set_announced_channel(struct LDKChannelConfig *this_ptr, bool val);
4228
4229 /**
4230  * When set, we commit to an upfront shutdown_pubkey at channel open. If our counterparty
4231  * supports it, they will then enforce the mutual-close output to us matches what we provided
4232  * at intialization, preventing us from closing to an alternate pubkey.
4233  *
4234  * This is set to true by default to provide a slight increase in security, though ultimately
4235  * any attacker who is able to take control of a channel can just as easily send the funds via
4236  * lightning payments, so we never require that our counterparties support this option.
4237  *
4238  * This cannot be changed after a channel has been initialized.
4239  *
4240  * Default value: true.
4241  */
4242 bool ChannelConfig_get_commit_upfront_shutdown_pubkey(const struct LDKChannelConfig *this_ptr);
4243
4244 /**
4245  * When set, we commit to an upfront shutdown_pubkey at channel open. If our counterparty
4246  * supports it, they will then enforce the mutual-close output to us matches what we provided
4247  * at intialization, preventing us from closing to an alternate pubkey.
4248  *
4249  * This is set to true by default to provide a slight increase in security, though ultimately
4250  * any attacker who is able to take control of a channel can just as easily send the funds via
4251  * lightning payments, so we never require that our counterparties support this option.
4252  *
4253  * This cannot be changed after a channel has been initialized.
4254  *
4255  * Default value: true.
4256  */
4257 void ChannelConfig_set_commit_upfront_shutdown_pubkey(struct LDKChannelConfig *this_ptr, bool val);
4258
4259 MUST_USE_RES struct LDKChannelConfig ChannelConfig_new(uint32_t fee_proportional_millionths_arg, bool announced_channel_arg, bool commit_upfront_shutdown_pubkey_arg);
4260
4261 MUST_USE_RES struct LDKChannelConfig ChannelConfig_default(void);
4262
4263 LDKCVec_u8Z ChannelConfig_write(const struct LDKChannelConfig *obj);
4264
4265 struct LDKChannelConfig ChannelConfig_read(struct LDKu8slice ser);
4266
4267 void UserConfig_free(struct LDKUserConfig this_ptr);
4268
4269 struct LDKUserConfig UserConfig_clone(const struct LDKUserConfig *orig);
4270
4271 /**
4272  * Channel config that we propose to our counterparty.
4273  */
4274 struct LDKChannelHandshakeConfig UserConfig_get_own_channel_config(const struct LDKUserConfig *this_ptr);
4275
4276 /**
4277  * Channel config that we propose to our counterparty.
4278  */
4279 void UserConfig_set_own_channel_config(struct LDKUserConfig *this_ptr, struct LDKChannelHandshakeConfig val);
4280
4281 /**
4282  * Limits applied to our counterparty's proposed channel config settings.
4283  */
4284 struct LDKChannelHandshakeLimits UserConfig_get_peer_channel_config_limits(const struct LDKUserConfig *this_ptr);
4285
4286 /**
4287  * Limits applied to our counterparty's proposed channel config settings.
4288  */
4289 void UserConfig_set_peer_channel_config_limits(struct LDKUserConfig *this_ptr, struct LDKChannelHandshakeLimits val);
4290
4291 /**
4292  * Channel config which affects behavior during channel lifetime.
4293  */
4294 struct LDKChannelConfig UserConfig_get_channel_options(const struct LDKUserConfig *this_ptr);
4295
4296 /**
4297  * Channel config which affects behavior during channel lifetime.
4298  */
4299 void UserConfig_set_channel_options(struct LDKUserConfig *this_ptr, struct LDKChannelConfig val);
4300
4301 MUST_USE_RES struct LDKUserConfig UserConfig_new(struct LDKChannelHandshakeConfig own_channel_config_arg, struct LDKChannelHandshakeLimits peer_channel_config_limits_arg, struct LDKChannelConfig channel_options_arg);
4302
4303 MUST_USE_RES struct LDKUserConfig UserConfig_default(void);
4304
4305 enum LDKAccessError AccessError_clone(const enum LDKAccessError *orig);
4306
4307 /**
4308  * Calls the free function if one is set
4309  */
4310 void Access_free(struct LDKAccess this_ptr);
4311
4312 /**
4313  * Calls the free function if one is set
4314  */
4315 void Watch_free(struct LDKWatch this_ptr);
4316
4317 /**
4318  * Calls the free function if one is set
4319  */
4320 void Filter_free(struct LDKFilter this_ptr);
4321
4322 /**
4323  * Calls the free function if one is set
4324  */
4325 void BroadcasterInterface_free(struct LDKBroadcasterInterface this_ptr);
4326
4327 enum LDKConfirmationTarget ConfirmationTarget_clone(const enum LDKConfirmationTarget *orig);
4328
4329 /**
4330  * Calls the free function if one is set
4331  */
4332 void FeeEstimator_free(struct LDKFeeEstimator this_ptr);
4333
4334 void ChainMonitor_free(struct LDKChainMonitor this_ptr);
4335
4336 /**
4337  * Dispatches to per-channel monitors, which are responsible for updating their on-chain view
4338  * of a channel and reacting accordingly based on transactions in the connected block. See
4339  * [`ChannelMonitor::block_connected`] for details. Any HTLCs that were resolved on chain will
4340  * be returned by [`chain::Watch::release_pending_monitor_events`].
4341  *
4342  * Calls back to [`chain::Filter`] if any monitor indicated new outputs to watch. Subsequent
4343  * calls must not exclude any transactions matching the new outputs nor any in-block
4344  * descendants of such transactions. It is not necessary to re-fetch the block to obtain
4345  * updated `txdata`.
4346  *
4347  * [`ChannelMonitor::block_connected`]: ../channelmonitor/struct.ChannelMonitor.html#method.block_connected
4348  * [`chain::Watch::release_pending_monitor_events`]: ../trait.Watch.html#tymethod.release_pending_monitor_events
4349  * [`chain::Filter`]: ../trait.Filter.html
4350  */
4351 void ChainMonitor_block_connected(const struct LDKChainMonitor *this_arg, const uint8_t (*header)[80], LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height);
4352
4353 /**
4354  * Dispatches to per-channel monitors, which are responsible for updating their on-chain view
4355  * of a channel based on the disconnected block. See [`ChannelMonitor::block_disconnected`] for
4356  * details.
4357  *
4358  * [`ChannelMonitor::block_disconnected`]: ../channelmonitor/struct.ChannelMonitor.html#method.block_disconnected
4359  */
4360 void ChainMonitor_block_disconnected(const struct LDKChainMonitor *this_arg, const uint8_t (*header)[80], uint32_t disconnected_height);
4361
4362 /**
4363  * Creates a new `ChainMonitor` used to watch on-chain activity pertaining to channels.
4364  *
4365  * When an optional chain source implementing [`chain::Filter`] is provided, the chain monitor
4366  * will call back to it indicating transactions and outputs of interest. This allows clients to
4367  * pre-filter blocks or only fetch blocks matching a compact filter. Otherwise, clients may
4368  * always need to fetch full blocks absent another means for determining which blocks contain
4369  * transactions relevant to the watched channels.
4370  *
4371  * [`chain::Filter`]: ../trait.Filter.html
4372  */
4373 MUST_USE_RES struct LDKChainMonitor ChainMonitor_new(struct LDKFilter *chain_source, struct LDKBroadcasterInterface broadcaster, struct LDKLogger logger, struct LDKFeeEstimator feeest, struct LDKPersist persister);
4374
4375 struct LDKWatch ChainMonitor_as_Watch(const struct LDKChainMonitor *this_arg);
4376
4377 struct LDKEventsProvider ChainMonitor_as_EventsProvider(const struct LDKChainMonitor *this_arg);
4378
4379 void ChannelMonitorUpdate_free(struct LDKChannelMonitorUpdate this_ptr);
4380
4381 struct LDKChannelMonitorUpdate ChannelMonitorUpdate_clone(const struct LDKChannelMonitorUpdate *orig);
4382
4383 /**
4384  * The sequence number of this update. Updates *must* be replayed in-order according to this
4385  * sequence number (and updates may panic if they are not). The update_id values are strictly
4386  * increasing and increase by one for each new update, with one exception specified below.
4387  *
4388  * This sequence number is also used to track up to which points updates which returned
4389  * ChannelMonitorUpdateErr::TemporaryFailure have been applied to all copies of a given
4390  * ChannelMonitor when ChannelManager::channel_monitor_updated is called.
4391  *
4392  * The only instance where update_id values are not strictly increasing is the case where we
4393  * allow post-force-close updates with a special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. See
4394  * its docs for more details.
4395  *
4396  * [`CLOSED_CHANNEL_UPDATE_ID`]: constant.CLOSED_CHANNEL_UPDATE_ID.html
4397  */
4398 uint64_t ChannelMonitorUpdate_get_update_id(const struct LDKChannelMonitorUpdate *this_ptr);
4399
4400 /**
4401  * The sequence number of this update. Updates *must* be replayed in-order according to this
4402  * sequence number (and updates may panic if they are not). The update_id values are strictly
4403  * increasing and increase by one for each new update, with one exception specified below.
4404  *
4405  * This sequence number is also used to track up to which points updates which returned
4406  * ChannelMonitorUpdateErr::TemporaryFailure have been applied to all copies of a given
4407  * ChannelMonitor when ChannelManager::channel_monitor_updated is called.
4408  *
4409  * The only instance where update_id values are not strictly increasing is the case where we
4410  * allow post-force-close updates with a special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. See
4411  * its docs for more details.
4412  *
4413  * [`CLOSED_CHANNEL_UPDATE_ID`]: constant.CLOSED_CHANNEL_UPDATE_ID.html
4414  */
4415 void ChannelMonitorUpdate_set_update_id(struct LDKChannelMonitorUpdate *this_ptr, uint64_t val);
4416
4417 LDKCVec_u8Z ChannelMonitorUpdate_write(const struct LDKChannelMonitorUpdate *obj);
4418
4419 LDKCResult_ChannelMonitorUpdateDecodeErrorZ ChannelMonitorUpdate_read(struct LDKu8slice ser);
4420
4421 enum LDKChannelMonitorUpdateErr ChannelMonitorUpdateErr_clone(const enum LDKChannelMonitorUpdateErr *orig);
4422
4423 void MonitorUpdateError_free(struct LDKMonitorUpdateError this_ptr);
4424
4425 void MonitorEvent_free(struct LDKMonitorEvent this_ptr);
4426
4427 struct LDKMonitorEvent MonitorEvent_clone(const struct LDKMonitorEvent *orig);
4428
4429 void HTLCUpdate_free(struct LDKHTLCUpdate this_ptr);
4430
4431 struct LDKHTLCUpdate HTLCUpdate_clone(const struct LDKHTLCUpdate *orig);
4432
4433 LDKCVec_u8Z HTLCUpdate_write(const struct LDKHTLCUpdate *obj);
4434
4435 struct LDKHTLCUpdate HTLCUpdate_read(struct LDKu8slice ser);
4436
4437 void ChannelMonitor_free(struct LDKChannelMonitor this_ptr);
4438
4439 /**
4440  * Updates a ChannelMonitor on the basis of some new information provided by the Channel
4441  * itself.
4442  *
4443  * panics if the given update is not the next update by update_id.
4444  */
4445 MUST_USE_RES LDKCResult_NoneMonitorUpdateErrorZ ChannelMonitor_update_monitor(struct LDKChannelMonitor *this_arg, const struct LDKChannelMonitorUpdate *updates, const struct LDKBroadcasterInterface *broadcaster, const struct LDKFeeEstimator *fee_estimator, const struct LDKLogger *logger);
4446
4447 /**
4448  * Gets the update_id from the latest ChannelMonitorUpdate which was applied to this
4449  * ChannelMonitor.
4450  */
4451 MUST_USE_RES uint64_t ChannelMonitor_get_latest_update_id(const struct LDKChannelMonitor *this_arg);
4452
4453 /**
4454  * Gets the funding transaction outpoint of the channel this ChannelMonitor is monitoring for.
4455  */
4456 MUST_USE_RES LDKC2Tuple_OutPointScriptZ ChannelMonitor_get_funding_txo(const struct LDKChannelMonitor *this_arg);
4457
4458 /**
4459  * Get the list of HTLCs who's status has been updated on chain. This should be called by
4460  * ChannelManager via [`chain::Watch::release_pending_monitor_events`].
4461  *
4462  * [`chain::Watch::release_pending_monitor_events`]: ../trait.Watch.html#tymethod.release_pending_monitor_events
4463  */
4464 MUST_USE_RES LDKCVec_MonitorEventZ ChannelMonitor_get_and_clear_pending_monitor_events(struct LDKChannelMonitor *this_arg);
4465
4466 /**
4467  * Gets the list of pending events which were generated by previous actions, clearing the list
4468  * in the process.
4469  *
4470  * This is called by ChainMonitor::get_and_clear_pending_events() and is equivalent to
4471  * EventsProvider::get_and_clear_pending_events() except that it requires &mut self as we do
4472  * no internal locking in ChannelMonitors.
4473  */
4474 MUST_USE_RES LDKCVec_EventZ ChannelMonitor_get_and_clear_pending_events(struct LDKChannelMonitor *this_arg);
4475
4476 /**
4477  * Used by ChannelManager deserialization to broadcast the latest holder state if its copy of
4478  * the Channel was out-of-date. You may use it to get a broadcastable holder toxic tx in case of
4479  * fallen-behind, i.e when receiving a channel_reestablish with a proof that our counterparty side knows
4480  * a higher revocation secret than the holder commitment number we are aware of. Broadcasting these
4481  * transactions are UNSAFE, as they allow counterparty side to punish you. Nevertheless you may want to
4482  * broadcast them if counterparty don't close channel with his higher commitment transaction after a
4483  * substantial amount of time (a month or even a year) to get back funds. Best may be to contact
4484  * out-of-band the other node operator to coordinate with him if option is available to you.
4485  * In any-case, choice is up to the user.
4486  */
4487 MUST_USE_RES LDKCVec_TransactionZ ChannelMonitor_get_latest_holder_commitment_txn(struct LDKChannelMonitor *this_arg, const struct LDKLogger *logger);
4488
4489 /**
4490  * Processes transactions in a newly connected block, which may result in any of the following:
4491  * - update the monitor's state against resolved HTLCs
4492  * - punish the counterparty in the case of seeing a revoked commitment transaction
4493  * - force close the channel and claim/timeout incoming/outgoing HTLCs if near expiration
4494  * - detect settled outputs for later spending
4495  * - schedule and bump any in-flight claims
4496  *
4497  * Returns any new outputs to watch from `txdata`; after called, these are also included in
4498  * [`get_outputs_to_watch`].
4499  *
4500  * [`get_outputs_to_watch`]: #method.get_outputs_to_watch
4501  */
4502 MUST_USE_RES LDKCVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ ChannelMonitor_block_connected(struct LDKChannelMonitor *this_arg, const uint8_t (*header)[80], LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
4503
4504 /**
4505  * Determines if the disconnected block contained any transactions of interest and updates
4506  * appropriately.
4507  */
4508 void ChannelMonitor_block_disconnected(struct LDKChannelMonitor *this_arg, const uint8_t (*header)[80], uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
4509
4510 /**
4511  * Calls the free function if one is set
4512  */
4513 void Persist_free(struct LDKPersist this_ptr);
4514
4515 void OutPoint_free(struct LDKOutPoint this_ptr);
4516
4517 struct LDKOutPoint OutPoint_clone(const struct LDKOutPoint *orig);
4518
4519 /**
4520  * The referenced transaction's txid.
4521  */
4522 const uint8_t (*OutPoint_get_txid(const struct LDKOutPoint *this_ptr))[32];
4523
4524 /**
4525  * The referenced transaction's txid.
4526  */
4527 void OutPoint_set_txid(struct LDKOutPoint *this_ptr, struct LDKThirtyTwoBytes val);
4528
4529 /**
4530  * The index of the referenced output in its transaction's vout.
4531  */
4532 uint16_t OutPoint_get_index(const struct LDKOutPoint *this_ptr);
4533
4534 /**
4535  * The index of the referenced output in its transaction's vout.
4536  */
4537 void OutPoint_set_index(struct LDKOutPoint *this_ptr, uint16_t val);
4538
4539 MUST_USE_RES struct LDKOutPoint OutPoint_new(struct LDKThirtyTwoBytes txid_arg, uint16_t index_arg);
4540
4541 /**
4542  * Convert an `OutPoint` to a lightning channel id.
4543  */
4544 MUST_USE_RES struct LDKThirtyTwoBytes OutPoint_to_channel_id(const struct LDKOutPoint *this_arg);
4545
4546 LDKCVec_u8Z OutPoint_write(const struct LDKOutPoint *obj);
4547
4548 struct LDKOutPoint OutPoint_read(struct LDKu8slice ser);
4549
4550 void SpendableOutputDescriptor_free(struct LDKSpendableOutputDescriptor this_ptr);
4551
4552 struct LDKSpendableOutputDescriptor SpendableOutputDescriptor_clone(const struct LDKSpendableOutputDescriptor *orig);
4553
4554 LDKCVec_u8Z SpendableOutputDescriptor_write(const struct LDKSpendableOutputDescriptor *obj);
4555
4556 LDKCResult_SpendableOutputDescriptorDecodeErrorZ SpendableOutputDescriptor_read(struct LDKu8slice ser);
4557
4558 struct LDKChannelKeys ChannelKeys_clone(const struct LDKChannelKeys *orig);
4559
4560 /**
4561  * Calls the free function if one is set
4562  */
4563 void ChannelKeys_free(struct LDKChannelKeys this_ptr);
4564
4565 /**
4566  * Calls the free function if one is set
4567  */
4568 void KeysInterface_free(struct LDKKeysInterface this_ptr);
4569
4570 void InMemoryChannelKeys_free(struct LDKInMemoryChannelKeys this_ptr);
4571
4572 struct LDKInMemoryChannelKeys InMemoryChannelKeys_clone(const struct LDKInMemoryChannelKeys *orig);
4573
4574 /**
4575  * Private key of anchor tx
4576  */
4577 const uint8_t (*InMemoryChannelKeys_get_funding_key(const struct LDKInMemoryChannelKeys *this_ptr))[32];
4578
4579 /**
4580  * Private key of anchor tx
4581  */
4582 void InMemoryChannelKeys_set_funding_key(struct LDKInMemoryChannelKeys *this_ptr, struct LDKSecretKey val);
4583
4584 /**
4585  * Holder secret key for blinded revocation pubkey
4586  */
4587 const uint8_t (*InMemoryChannelKeys_get_revocation_base_key(const struct LDKInMemoryChannelKeys *this_ptr))[32];
4588
4589 /**
4590  * Holder secret key for blinded revocation pubkey
4591  */
4592 void InMemoryChannelKeys_set_revocation_base_key(struct LDKInMemoryChannelKeys *this_ptr, struct LDKSecretKey val);
4593
4594 /**
4595  * Holder secret key used for our balance in counterparty-broadcasted commitment transactions
4596  */
4597 const uint8_t (*InMemoryChannelKeys_get_payment_key(const struct LDKInMemoryChannelKeys *this_ptr))[32];
4598
4599 /**
4600  * Holder secret key used for our balance in counterparty-broadcasted commitment transactions
4601  */
4602 void InMemoryChannelKeys_set_payment_key(struct LDKInMemoryChannelKeys *this_ptr, struct LDKSecretKey val);
4603
4604 /**
4605  * Holder secret key used in HTLC tx
4606  */
4607 const uint8_t (*InMemoryChannelKeys_get_delayed_payment_base_key(const struct LDKInMemoryChannelKeys *this_ptr))[32];
4608
4609 /**
4610  * Holder secret key used in HTLC tx
4611  */
4612 void InMemoryChannelKeys_set_delayed_payment_base_key(struct LDKInMemoryChannelKeys *this_ptr, struct LDKSecretKey val);
4613
4614 /**
4615  * Holder htlc secret key used in commitment tx htlc outputs
4616  */
4617 const uint8_t (*InMemoryChannelKeys_get_htlc_base_key(const struct LDKInMemoryChannelKeys *this_ptr))[32];
4618
4619 /**
4620  * Holder htlc secret key used in commitment tx htlc outputs
4621  */
4622 void InMemoryChannelKeys_set_htlc_base_key(struct LDKInMemoryChannelKeys *this_ptr, struct LDKSecretKey val);
4623
4624 /**
4625  * Commitment seed
4626  */
4627 const uint8_t (*InMemoryChannelKeys_get_commitment_seed(const struct LDKInMemoryChannelKeys *this_ptr))[32];
4628
4629 /**
4630  * Commitment seed
4631  */
4632 void InMemoryChannelKeys_set_commitment_seed(struct LDKInMemoryChannelKeys *this_ptr, struct LDKThirtyTwoBytes val);
4633
4634 /**
4635  * Create a new InMemoryChannelKeys
4636  */
4637 MUST_USE_RES struct LDKInMemoryChannelKeys InMemoryChannelKeys_new(struct LDKSecretKey funding_key, struct LDKSecretKey revocation_base_key, struct LDKSecretKey payment_key, struct LDKSecretKey delayed_payment_base_key, struct LDKSecretKey htlc_base_key, struct LDKThirtyTwoBytes commitment_seed, uint64_t channel_value_satoshis, LDKC2Tuple_u64u64Z key_derivation_params);
4638
4639 /**
4640  * Counterparty pubkeys.
4641  * Will panic if ready_channel wasn't called.
4642  */
4643 MUST_USE_RES struct LDKChannelPublicKeys InMemoryChannelKeys_counterparty_pubkeys(const struct LDKInMemoryChannelKeys *this_arg);
4644
4645 /**
4646  * The contest_delay value specified by our counterparty and applied on holder-broadcastable
4647  * transactions, ie the amount of time that we have to wait to recover our funds if we
4648  * broadcast a transaction.
4649  * Will panic if ready_channel wasn't called.
4650  */
4651 MUST_USE_RES uint16_t InMemoryChannelKeys_counterparty_selected_contest_delay(const struct LDKInMemoryChannelKeys *this_arg);
4652
4653 /**
4654  * The contest_delay value specified by us and applied on transactions broadcastable
4655  * by our counterparty, ie the amount of time that they have to wait to recover their funds
4656  * if they broadcast a transaction.
4657  * Will panic if ready_channel wasn't called.
4658  */
4659 MUST_USE_RES uint16_t InMemoryChannelKeys_holder_selected_contest_delay(const struct LDKInMemoryChannelKeys *this_arg);
4660
4661 /**
4662  * Whether the holder is the initiator
4663  * Will panic if ready_channel wasn't called.
4664  */
4665 MUST_USE_RES bool InMemoryChannelKeys_is_outbound(const struct LDKInMemoryChannelKeys *this_arg);
4666
4667 /**
4668  * Funding outpoint
4669  * Will panic if ready_channel wasn't called.
4670  */
4671 MUST_USE_RES struct LDKOutPoint InMemoryChannelKeys_funding_outpoint(const struct LDKInMemoryChannelKeys *this_arg);
4672
4673 /**
4674  * Obtain a ChannelTransactionParameters for this channel, to be used when verifying or
4675  * building transactions.
4676  *
4677  * Will panic if ready_channel wasn't called.
4678  */
4679 MUST_USE_RES struct LDKChannelTransactionParameters InMemoryChannelKeys_get_channel_parameters(const struct LDKInMemoryChannelKeys *this_arg);
4680
4681 struct LDKChannelKeys InMemoryChannelKeys_as_ChannelKeys(const struct LDKInMemoryChannelKeys *this_arg);
4682
4683 LDKCVec_u8Z InMemoryChannelKeys_write(const struct LDKInMemoryChannelKeys *obj);
4684
4685 LDKCResult_InMemoryChannelKeysDecodeErrorZ InMemoryChannelKeys_read(struct LDKu8slice ser);
4686
4687 void KeysManager_free(struct LDKKeysManager this_ptr);
4688
4689 /**
4690  * Constructs a KeysManager from a 32-byte seed. If the seed is in some way biased (eg your
4691  * CSRNG is busted) this may panic (but more importantly, you will possibly lose funds).
4692  * starting_time isn't strictly required to actually be a time, but it must absolutely,
4693  * without a doubt, be unique to this instance. ie if you start multiple times with the same
4694  * seed, starting_time must be unique to each run. Thus, the easiest way to achieve this is to
4695  * simply use the current time (with very high precision).
4696  *
4697  * The seed MUST be backed up safely prior to use so that the keys can be re-created, however,
4698  * obviously, starting_time should be unique every time you reload the library - it is only
4699  * used to generate new ephemeral key data (which will be stored by the individual channel if
4700  * necessary).
4701  *
4702  * Note that the seed is required to recover certain on-chain funds independent of
4703  * ChannelMonitor data, though a current copy of ChannelMonitor data is also required for any
4704  * channel, and some on-chain during-closing funds.
4705  *
4706  * Note that until the 0.1 release there is no guarantee of backward compatibility between
4707  * versions. Once the library is more fully supported, the docs will be updated to include a
4708  * detailed description of the guarantee.
4709  */
4710 MUST_USE_RES struct LDKKeysManager KeysManager_new(const uint8_t (*seed)[32], enum LDKNetwork network, uint64_t starting_time_secs, uint32_t starting_time_nanos);
4711
4712 /**
4713  * Derive an old set of ChannelKeys for per-channel secrets based on a key derivation
4714  * parameters.
4715  * Key derivation parameters are accessible through a per-channel secrets
4716  * ChannelKeys::key_derivation_params and is provided inside DynamicOuputP2WSH in case of
4717  * onchain output detection for which a corresponding delayed_payment_key must be derived.
4718  */
4719 MUST_USE_RES struct LDKInMemoryChannelKeys KeysManager_derive_channel_keys(const struct LDKKeysManager *this_arg, uint64_t channel_value_satoshis, uint64_t params_1, uint64_t params_2);
4720
4721 struct LDKKeysInterface KeysManager_as_KeysInterface(const struct LDKKeysManager *this_arg);
4722
4723 void ChannelManager_free(struct LDKChannelManager this_ptr);
4724
4725 void ChannelDetails_free(struct LDKChannelDetails this_ptr);
4726
4727 struct LDKChannelDetails ChannelDetails_clone(const struct LDKChannelDetails *orig);
4728
4729 /**
4730  * The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
4731  * thereafter this is the txid of the funding transaction xor the funding transaction output).
4732  * Note that this means this value is *not* persistent - it can change once during the
4733  * lifetime of the channel.
4734  */
4735 const uint8_t (*ChannelDetails_get_channel_id(const struct LDKChannelDetails *this_ptr))[32];
4736
4737 /**
4738  * The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
4739  * thereafter this is the txid of the funding transaction xor the funding transaction output).
4740  * Note that this means this value is *not* persistent - it can change once during the
4741  * lifetime of the channel.
4742  */
4743 void ChannelDetails_set_channel_id(struct LDKChannelDetails *this_ptr, struct LDKThirtyTwoBytes val);
4744
4745 /**
4746  * The node_id of our counterparty
4747  */
4748 struct LDKPublicKey ChannelDetails_get_remote_network_id(const struct LDKChannelDetails *this_ptr);
4749
4750 /**
4751  * The node_id of our counterparty
4752  */
4753 void ChannelDetails_set_remote_network_id(struct LDKChannelDetails *this_ptr, struct LDKPublicKey val);
4754
4755 /**
4756  * The Features the channel counterparty provided upon last connection.
4757  * Useful for routing as it is the most up-to-date copy of the counterparty's features and
4758  * many routing-relevant features are present in the init context.
4759  */
4760 struct LDKInitFeatures ChannelDetails_get_counterparty_features(const struct LDKChannelDetails *this_ptr);
4761
4762 /**
4763  * The Features the channel counterparty provided upon last connection.
4764  * Useful for routing as it is the most up-to-date copy of the counterparty's features and
4765  * many routing-relevant features are present in the init context.
4766  */
4767 void ChannelDetails_set_counterparty_features(struct LDKChannelDetails *this_ptr, struct LDKInitFeatures val);
4768
4769 /**
4770  * The value, in satoshis, of this channel as appears in the funding output
4771  */
4772 uint64_t ChannelDetails_get_channel_value_satoshis(const struct LDKChannelDetails *this_ptr);
4773
4774 /**
4775  * The value, in satoshis, of this channel as appears in the funding output
4776  */
4777 void ChannelDetails_set_channel_value_satoshis(struct LDKChannelDetails *this_ptr, uint64_t val);
4778
4779 /**
4780  * The user_id passed in to create_channel, or 0 if the channel was inbound.
4781  */
4782 uint64_t ChannelDetails_get_user_id(const struct LDKChannelDetails *this_ptr);
4783
4784 /**
4785  * The user_id passed in to create_channel, or 0 if the channel was inbound.
4786  */
4787 void ChannelDetails_set_user_id(struct LDKChannelDetails *this_ptr, uint64_t val);
4788
4789 /**
4790  * The available outbound capacity for sending HTLCs to the remote peer. This does not include
4791  * any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
4792  * available for inclusion in new outbound HTLCs). This further does not include any pending
4793  * outgoing HTLCs which are awaiting some other resolution to be sent.
4794  */
4795 uint64_t ChannelDetails_get_outbound_capacity_msat(const struct LDKChannelDetails *this_ptr);
4796
4797 /**
4798  * The available outbound capacity for sending HTLCs to the remote peer. This does not include
4799  * any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
4800  * available for inclusion in new outbound HTLCs). This further does not include any pending
4801  * outgoing HTLCs which are awaiting some other resolution to be sent.
4802  */
4803 void ChannelDetails_set_outbound_capacity_msat(struct LDKChannelDetails *this_ptr, uint64_t val);
4804
4805 /**
4806  * The available inbound capacity for the remote peer to send HTLCs to us. This does not
4807  * include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
4808  * available for inclusion in new inbound HTLCs).
4809  * Note that there are some corner cases not fully handled here, so the actual available
4810  * inbound capacity may be slightly higher than this.
4811  */
4812 uint64_t ChannelDetails_get_inbound_capacity_msat(const struct LDKChannelDetails *this_ptr);
4813
4814 /**
4815  * The available inbound capacity for the remote peer to send HTLCs to us. This does not
4816  * include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
4817  * available for inclusion in new inbound HTLCs).
4818  * Note that there are some corner cases not fully handled here, so the actual available
4819  * inbound capacity may be slightly higher than this.
4820  */
4821 void ChannelDetails_set_inbound_capacity_msat(struct LDKChannelDetails *this_ptr, uint64_t val);
4822
4823 /**
4824  * True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
4825  * the peer is connected, and (c) no monitor update failure is pending resolution.
4826  */
4827 bool ChannelDetails_get_is_live(const struct LDKChannelDetails *this_ptr);
4828
4829 /**
4830  * True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
4831  * the peer is connected, and (c) no monitor update failure is pending resolution.
4832  */
4833 void ChannelDetails_set_is_live(struct LDKChannelDetails *this_ptr, bool val);
4834
4835 void PaymentSendFailure_free(struct LDKPaymentSendFailure this_ptr);
4836
4837 /**
4838  * Constructs a new ChannelManager to hold several channels and route between them.
4839  *
4840  * This is the main \"logic hub\" for all channel-related actions, and implements
4841  * ChannelMessageHandler.
4842  *
4843  * Non-proportional fees are fixed according to our risk using the provided fee estimator.
4844  *
4845  * panics if channel_value_satoshis is >= `MAX_FUNDING_SATOSHIS`!
4846  *
4847  * Users must provide the current blockchain height from which to track onchain channel
4848  * funding outpoints and send payments with reliable timelocks.
4849  *
4850  * Users need to notify the new ChannelManager when a new block is connected or
4851  * disconnected using its `block_connected` and `block_disconnected` methods.
4852  */
4853 MUST_USE_RES struct LDKChannelManager ChannelManager_new(enum LDKNetwork network, struct LDKFeeEstimator fee_est, struct LDKWatch chain_monitor, struct LDKBroadcasterInterface tx_broadcaster, struct LDKLogger logger, struct LDKKeysInterface keys_manager, struct LDKUserConfig config, uintptr_t current_blockchain_height);
4854
4855 /**
4856  * Creates a new outbound channel to the given remote node and with the given value.
4857  *
4858  * user_id will be provided back as user_channel_id in FundingGenerationReady and
4859  * FundingBroadcastSafe events to allow tracking of which events correspond with which
4860  * create_channel call. Note that user_channel_id defaults to 0 for inbound channels, so you
4861  * may wish to avoid using 0 for user_id here.
4862  *
4863  * If successful, will generate a SendOpenChannel message event, so you should probably poll
4864  * PeerManager::process_events afterwards.
4865  *
4866  * Raises APIError::APIMisuseError when channel_value_satoshis > 2**24 or push_msat is
4867  * greater than channel_value_satoshis * 1k or channel_value_satoshis is < 1000.
4868  */
4869 MUST_USE_RES LDKCResult_NoneAPIErrorZ ChannelManager_create_channel(const struct LDKChannelManager *this_arg, struct LDKPublicKey their_network_key, uint64_t channel_value_satoshis, uint64_t push_msat, uint64_t user_id, struct LDKUserConfig override_config);
4870
4871 /**
4872  * Gets the list of open channels, in random order. See ChannelDetail field documentation for
4873  * more information.
4874  */
4875 MUST_USE_RES LDKCVec_ChannelDetailsZ ChannelManager_list_channels(const struct LDKChannelManager *this_arg);
4876
4877 /**
4878  * Gets the list of usable channels, in random order. Useful as an argument to
4879  * get_route to ensure non-announced channels are used.
4880  *
4881  * These are guaranteed to have their is_live value set to true, see the documentation for
4882  * ChannelDetails::is_live for more info on exactly what the criteria are.
4883  */
4884 MUST_USE_RES LDKCVec_ChannelDetailsZ ChannelManager_list_usable_channels(const struct LDKChannelManager *this_arg);
4885
4886 /**
4887  * Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
4888  * will be accepted on the given channel, and after additional timeout/the closing of all
4889  * pending HTLCs, the channel will be closed on chain.
4890  *
4891  * May generate a SendShutdown message event on success, which should be relayed.
4892  */
4893 MUST_USE_RES LDKCResult_NoneAPIErrorZ ChannelManager_close_channel(const struct LDKChannelManager *this_arg, const uint8_t (*channel_id)[32]);
4894
4895 /**
4896  * Force closes a channel, immediately broadcasting the latest local commitment transaction to
4897  * the chain and rejecting new HTLCs on the given channel.
4898  */
4899 void ChannelManager_force_close_channel(const struct LDKChannelManager *this_arg, const uint8_t (*channel_id)[32]);
4900
4901 /**
4902  * Force close all channels, immediately broadcasting the latest local commitment transaction
4903  * for each to the chain and rejecting new HTLCs on each.
4904  */
4905 void ChannelManager_force_close_all_channels(const struct LDKChannelManager *this_arg);
4906
4907 /**
4908  * Sends a payment along a given route.
4909  *
4910  * Value parameters are provided via the last hop in route, see documentation for RouteHop
4911  * fields for more info.
4912  *
4913  * Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative
4914  * payment), we don't do anything to stop you! We always try to ensure that if the provided
4915  * next hop knows the preimage to payment_hash they can claim an additional amount as
4916  * specified in the last hop in the route! Thus, you should probably do your own
4917  * payment_preimage tracking (which you should already be doing as they represent \"proof of
4918  * payment\") and prevent double-sends yourself.
4919  *
4920  * May generate SendHTLCs message(s) event on success, which should be relayed.
4921  *
4922  * Each path may have a different return value, and PaymentSendValue may return a Vec with
4923  * each entry matching the corresponding-index entry in the route paths, see
4924  * PaymentSendFailure for more info.
4925  *
4926  * In general, a path may raise:
4927  *  * APIError::RouteError when an invalid route or forwarding parameter (cltv_delta, fee,
4928  *    node public key) is specified.
4929  *  * APIError::ChannelUnavailable if the next-hop channel is not available for updates
4930  *    (including due to previous monitor update failure or new permanent monitor update
4931  *    failure).
4932  *  * APIError::MonitorUpdateFailed if a new monitor update failure prevented sending the
4933  *    relevant updates.
4934  *
4935  * Note that depending on the type of the PaymentSendFailure the HTLC may have been
4936  * irrevocably committed to on our end. In such a case, do NOT retry the payment with a
4937  * different route unless you intend to pay twice!
4938  *
4939  * payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
4940  * the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
4941  * newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
4942  * must not contain multiple paths as multi-path payments require a recipient-provided
4943  * payment_secret.
4944  * If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
4945  * bit set (either as required or as available). If multiple paths are present in the Route,
4946  * we assume the invoice had the basic_mpp feature set.
4947  */
4948 MUST_USE_RES LDKCResult_NonePaymentSendFailureZ ChannelManager_send_payment(const struct LDKChannelManager *this_arg, const struct LDKRoute *route, struct LDKThirtyTwoBytes payment_hash, struct LDKThirtyTwoBytes payment_secret);
4949
4950 /**
4951  * Call this upon creation of a funding transaction for the given channel.
4952  *
4953  * Note that ALL inputs in the transaction pointed to by funding_txo MUST spend SegWit outputs
4954  * or your counterparty can steal your funds!
4955  *
4956  * Panics if a funding transaction has already been provided for this channel.
4957  *
4958  * May panic if the funding_txo is duplicative with some other channel (note that this should
4959  * be trivially prevented by using unique funding transaction keys per-channel).
4960  */
4961 void ChannelManager_funding_transaction_generated(const struct LDKChannelManager *this_arg, const uint8_t (*temporary_channel_id)[32], struct LDKOutPoint funding_txo);
4962
4963 /**
4964  * Generates a signed node_announcement from the given arguments and creates a
4965  * BroadcastNodeAnnouncement event. Note that such messages will be ignored unless peers have
4966  * seen a channel_announcement from us (ie unless we have public channels open).
4967  *
4968  * RGB is a node \"color\" and alias is a printable human-readable string to describe this node
4969  * to humans. They carry no in-protocol meaning.
4970  *
4971  * addresses represent the set (possibly empty) of socket addresses on which this node accepts
4972  * incoming connections. These will be broadcast to the network, publicly tying these
4973  * addresses together. If you wish to preserve user privacy, addresses should likely contain
4974  * only Tor Onion addresses.
4975  *
4976  * Panics if addresses is absurdly large (more than 500).
4977  */
4978 void ChannelManager_broadcast_node_announcement(const struct LDKChannelManager *this_arg, struct LDKThreeBytes rgb, struct LDKThirtyTwoBytes alias, LDKCVec_NetAddressZ addresses);
4979
4980 /**
4981  * Processes HTLCs which are pending waiting on random forward delay.
4982  *
4983  * Should only really ever be called in response to a PendingHTLCsForwardable event.
4984  * Will likely generate further events.
4985  */
4986 void ChannelManager_process_pending_htlc_forwards(const struct LDKChannelManager *this_arg);
4987
4988 /**
4989  * If a peer is disconnected we mark any channels with that peer as 'disabled'.
4990  * After some time, if channels are still disabled we need to broadcast a ChannelUpdate
4991  * to inform the network about the uselessness of these channels.
4992  *
4993  * This method handles all the details, and must be called roughly once per minute.
4994  */
4995 void ChannelManager_timer_chan_freshness_every_min(const struct LDKChannelManager *this_arg);
4996
4997 /**
4998  * Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4999  * after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
5000  * along the path (including in our own channel on which we received it).
5001  * Returns false if no payment was found to fail backwards, true if the process of failing the
5002  * HTLC backwards has been started.
5003  */
5004 MUST_USE_RES bool ChannelManager_fail_htlc_backwards(const struct LDKChannelManager *this_arg, const uint8_t (*payment_hash)[32], struct LDKThirtyTwoBytes payment_secret);
5005
5006 /**
5007  * Provides a payment preimage in response to a PaymentReceived event, returning true and
5008  * generating message events for the net layer to claim the payment, if possible. Thus, you
5009  * should probably kick the net layer to go send messages if this returns true!
5010  *
5011  * You must specify the expected amounts for this HTLC, and we will only claim HTLCs
5012  * available within a few percent of the expected amount. This is critical for several
5013  * reasons : a) it avoids providing senders with `proof-of-payment` (in the form of the
5014  * payment_preimage without having provided the full value and b) it avoids certain
5015  * privacy-breaking recipient-probing attacks which may reveal payment activity to
5016  * motivated attackers.
5017  *
5018  * Note that the privacy concerns in (b) are not relevant in payments with a payment_secret
5019  * set. Thus, for such payments we will claim any payments which do not under-pay.
5020  *
5021  * May panic if called except in response to a PaymentReceived event.
5022  */
5023 MUST_USE_RES bool ChannelManager_claim_funds(const struct LDKChannelManager *this_arg, struct LDKThirtyTwoBytes payment_preimage, struct LDKThirtyTwoBytes payment_secret, uint64_t expected_amount);
5024
5025 /**
5026  * Gets the node_id held by this ChannelManager
5027  */
5028 MUST_USE_RES struct LDKPublicKey ChannelManager_get_our_node_id(const struct LDKChannelManager *this_arg);
5029
5030 /**
5031  * Restores a single, given channel to normal operation after a
5032  * ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update
5033  * operation.
5034  *
5035  * All ChannelMonitor updates up to and including highest_applied_update_id must have been
5036  * fully committed in every copy of the given channels' ChannelMonitors.
5037  *
5038  * Note that there is no effect to calling with a highest_applied_update_id other than the
5039  * current latest ChannelMonitorUpdate and one call to this function after multiple
5040  * ChannelMonitorUpdateErr::TemporaryFailures is fine. The highest_applied_update_id field
5041  * exists largely only to prevent races between this and concurrent update_monitor calls.
5042  *
5043  * Thus, the anticipated use is, at a high level:
5044  *  1) You register a chain::Watch with this ChannelManager,
5045  *  2) it stores each update to disk, and begins updating any remote (eg watchtower) copies of
5046  *     said ChannelMonitors as it can, returning ChannelMonitorUpdateErr::TemporaryFailures
5047  *     any time it cannot do so instantly,
5048  *  3) update(s) are applied to each remote copy of a ChannelMonitor,
5049  *  4) once all remote copies are updated, you call this function with the update_id that
5050  *     completed, and once it is the latest the Channel will be re-enabled.
5051  */
5052 void ChannelManager_channel_monitor_updated(const struct LDKChannelManager *this_arg, const struct LDKOutPoint *funding_txo, uint64_t highest_applied_update_id);
5053
5054 struct LDKMessageSendEventsProvider ChannelManager_as_MessageSendEventsProvider(const struct LDKChannelManager *this_arg);
5055
5056 struct LDKEventsProvider ChannelManager_as_EventsProvider(const struct LDKChannelManager *this_arg);
5057
5058 /**
5059  * Updates channel state based on transactions seen in a connected block.
5060  */
5061 void ChannelManager_block_connected(const struct LDKChannelManager *this_arg, const uint8_t (*header)[80], LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height);
5062
5063 /**
5064  * Updates channel state based on a disconnected block.
5065  *
5066  * If necessary, the channel may be force-closed without letting the counterparty participate
5067  * in the shutdown.
5068  */
5069 void ChannelManager_block_disconnected(const struct LDKChannelManager *this_arg, const uint8_t (*header)[80]);
5070
5071 struct LDKChannelMessageHandler ChannelManager_as_ChannelMessageHandler(const struct LDKChannelManager *this_arg);
5072
5073 void ChannelManagerReadArgs_free(struct LDKChannelManagerReadArgs this_ptr);
5074
5075 /**
5076  * The keys provider which will give us relevant keys. Some keys will be loaded during
5077  * deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
5078  * signing data.
5079  */
5080 const struct LDKKeysInterface *ChannelManagerReadArgs_get_keys_manager(const struct LDKChannelManagerReadArgs *this_ptr);
5081
5082 /**
5083  * The keys provider which will give us relevant keys. Some keys will be loaded during
5084  * deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
5085  * signing data.
5086  */
5087 void ChannelManagerReadArgs_set_keys_manager(struct LDKChannelManagerReadArgs *this_ptr, struct LDKKeysInterface val);
5088
5089 /**
5090  * The fee_estimator for use in the ChannelManager in the future.
5091  *
5092  * No calls to the FeeEstimator will be made during deserialization.
5093  */
5094 const struct LDKFeeEstimator *ChannelManagerReadArgs_get_fee_estimator(const struct LDKChannelManagerReadArgs *this_ptr);
5095
5096 /**
5097  * The fee_estimator for use in the ChannelManager in the future.
5098  *
5099  * No calls to the FeeEstimator will be made during deserialization.
5100  */
5101 void ChannelManagerReadArgs_set_fee_estimator(struct LDKChannelManagerReadArgs *this_ptr, struct LDKFeeEstimator val);
5102
5103 /**
5104  * The chain::Watch for use in the ChannelManager in the future.
5105  *
5106  * No calls to the chain::Watch will be made during deserialization. It is assumed that
5107  * you have deserialized ChannelMonitors separately and will add them to your
5108  * chain::Watch after deserializing this ChannelManager.
5109  */
5110 const struct LDKWatch *ChannelManagerReadArgs_get_chain_monitor(const struct LDKChannelManagerReadArgs *this_ptr);
5111
5112 /**
5113  * The chain::Watch for use in the ChannelManager in the future.
5114  *
5115  * No calls to the chain::Watch will be made during deserialization. It is assumed that
5116  * you have deserialized ChannelMonitors separately and will add them to your
5117  * chain::Watch after deserializing this ChannelManager.
5118  */
5119 void ChannelManagerReadArgs_set_chain_monitor(struct LDKChannelManagerReadArgs *this_ptr, struct LDKWatch val);
5120
5121 /**
5122  * The BroadcasterInterface which will be used in the ChannelManager in the future and may be
5123  * used to broadcast the latest local commitment transactions of channels which must be
5124  * force-closed during deserialization.
5125  */
5126 const struct LDKBroadcasterInterface *ChannelManagerReadArgs_get_tx_broadcaster(const struct LDKChannelManagerReadArgs *this_ptr);
5127
5128 /**
5129  * The BroadcasterInterface which will be used in the ChannelManager in the future and may be
5130  * used to broadcast the latest local commitment transactions of channels which must be
5131  * force-closed during deserialization.
5132  */
5133 void ChannelManagerReadArgs_set_tx_broadcaster(struct LDKChannelManagerReadArgs *this_ptr, struct LDKBroadcasterInterface val);
5134
5135 /**
5136  * The Logger for use in the ChannelManager and which may be used to log information during
5137  * deserialization.
5138  */
5139 const struct LDKLogger *ChannelManagerReadArgs_get_logger(const struct LDKChannelManagerReadArgs *this_ptr);
5140
5141 /**
5142  * The Logger for use in the ChannelManager and which may be used to log information during
5143  * deserialization.
5144  */
5145 void ChannelManagerReadArgs_set_logger(struct LDKChannelManagerReadArgs *this_ptr, struct LDKLogger val);
5146
5147 /**
5148  * Default settings used for new channels. Any existing channels will continue to use the
5149  * runtime settings which were stored when the ChannelManager was serialized.
5150  */
5151 struct LDKUserConfig ChannelManagerReadArgs_get_default_config(const struct LDKChannelManagerReadArgs *this_ptr);
5152
5153 /**
5154  * Default settings used for new channels. Any existing channels will continue to use the
5155  * runtime settings which were stored when the ChannelManager was serialized.
5156  */
5157 void ChannelManagerReadArgs_set_default_config(struct LDKChannelManagerReadArgs *this_ptr, struct LDKUserConfig val);
5158
5159 /**
5160  * Simple utility function to create a ChannelManagerReadArgs which creates the monitor
5161  * HashMap for you. This is primarily useful for C bindings where it is not practical to
5162  * populate a HashMap directly from C.
5163  */
5164 MUST_USE_RES struct LDKChannelManagerReadArgs ChannelManagerReadArgs_new(struct LDKKeysInterface keys_manager, struct LDKFeeEstimator fee_estimator, struct LDKWatch chain_monitor, struct LDKBroadcasterInterface tx_broadcaster, struct LDKLogger logger, struct LDKUserConfig default_config, LDKCVec_ChannelMonitorZ channel_monitors);
5165
5166 void DecodeError_free(struct LDKDecodeError this_ptr);
5167
5168 void Init_free(struct LDKInit this_ptr);
5169
5170 struct LDKInit Init_clone(const struct LDKInit *orig);
5171
5172 void ErrorMessage_free(struct LDKErrorMessage this_ptr);
5173
5174 struct LDKErrorMessage ErrorMessage_clone(const struct LDKErrorMessage *orig);
5175
5176 /**
5177  * The channel ID involved in the error
5178  */
5179 const uint8_t (*ErrorMessage_get_channel_id(const struct LDKErrorMessage *this_ptr))[32];
5180
5181 /**
5182  * The channel ID involved in the error
5183  */
5184 void ErrorMessage_set_channel_id(struct LDKErrorMessage *this_ptr, struct LDKThirtyTwoBytes val);
5185
5186 /**
5187  * A possibly human-readable error description.
5188  * The string should be sanitized before it is used (e.g. emitted to logs
5189  * or printed to stdout).  Otherwise, a well crafted error message may trigger a security
5190  * vulnerability in the terminal emulator or the logging subsystem.
5191  */
5192 struct LDKStr ErrorMessage_get_data(const struct LDKErrorMessage *this_ptr);
5193
5194 /**
5195  * A possibly human-readable error description.
5196  * The string should be sanitized before it is used (e.g. emitted to logs
5197  * or printed to stdout).  Otherwise, a well crafted error message may trigger a security
5198  * vulnerability in the terminal emulator or the logging subsystem.
5199  */
5200 void ErrorMessage_set_data(struct LDKErrorMessage *this_ptr, LDKCVec_u8Z val);
5201
5202 MUST_USE_RES struct LDKErrorMessage ErrorMessage_new(struct LDKThirtyTwoBytes channel_id_arg, LDKCVec_u8Z data_arg);
5203
5204 void Ping_free(struct LDKPing this_ptr);
5205
5206 struct LDKPing Ping_clone(const struct LDKPing *orig);
5207
5208 /**
5209  * The desired response length
5210  */
5211 uint16_t Ping_get_ponglen(const struct LDKPing *this_ptr);
5212
5213 /**
5214  * The desired response length
5215  */
5216 void Ping_set_ponglen(struct LDKPing *this_ptr, uint16_t val);
5217
5218 /**
5219  * The ping packet size.
5220  * This field is not sent on the wire. byteslen zeros are sent.
5221  */
5222 uint16_t Ping_get_byteslen(const struct LDKPing *this_ptr);
5223
5224 /**
5225  * The ping packet size.
5226  * This field is not sent on the wire. byteslen zeros are sent.
5227  */
5228 void Ping_set_byteslen(struct LDKPing *this_ptr, uint16_t val);
5229
5230 MUST_USE_RES struct LDKPing Ping_new(uint16_t ponglen_arg, uint16_t byteslen_arg);
5231
5232 void Pong_free(struct LDKPong this_ptr);
5233
5234 struct LDKPong Pong_clone(const struct LDKPong *orig);
5235
5236 /**
5237  * The pong packet size.
5238  * This field is not sent on the wire. byteslen zeros are sent.
5239  */
5240 uint16_t Pong_get_byteslen(const struct LDKPong *this_ptr);
5241
5242 /**
5243  * The pong packet size.
5244  * This field is not sent on the wire. byteslen zeros are sent.
5245  */
5246 void Pong_set_byteslen(struct LDKPong *this_ptr, uint16_t val);
5247
5248 MUST_USE_RES struct LDKPong Pong_new(uint16_t byteslen_arg);
5249
5250 void OpenChannel_free(struct LDKOpenChannel this_ptr);
5251
5252 struct LDKOpenChannel OpenChannel_clone(const struct LDKOpenChannel *orig);
5253
5254 /**
5255  * The genesis hash of the blockchain where the channel is to be opened
5256  */
5257 const uint8_t (*OpenChannel_get_chain_hash(const struct LDKOpenChannel *this_ptr))[32];
5258
5259 /**
5260  * The genesis hash of the blockchain where the channel is to be opened
5261  */
5262 void OpenChannel_set_chain_hash(struct LDKOpenChannel *this_ptr, struct LDKThirtyTwoBytes val);
5263
5264 /**
5265  * A temporary channel ID, until the funding outpoint is announced
5266  */
5267 const uint8_t (*OpenChannel_get_temporary_channel_id(const struct LDKOpenChannel *this_ptr))[32];
5268
5269 /**
5270  * A temporary channel ID, until the funding outpoint is announced
5271  */
5272 void OpenChannel_set_temporary_channel_id(struct LDKOpenChannel *this_ptr, struct LDKThirtyTwoBytes val);
5273
5274 /**
5275  * The channel value
5276  */
5277 uint64_t OpenChannel_get_funding_satoshis(const struct LDKOpenChannel *this_ptr);
5278
5279 /**
5280  * The channel value
5281  */
5282 void OpenChannel_set_funding_satoshis(struct LDKOpenChannel *this_ptr, uint64_t val);
5283
5284 /**
5285  * The amount to push to the counterparty as part of the open, in milli-satoshi
5286  */
5287 uint64_t OpenChannel_get_push_msat(const struct LDKOpenChannel *this_ptr);
5288
5289 /**
5290  * The amount to push to the counterparty as part of the open, in milli-satoshi
5291  */
5292 void OpenChannel_set_push_msat(struct LDKOpenChannel *this_ptr, uint64_t val);
5293
5294 /**
5295  * The threshold below which outputs on transactions broadcast by sender will be omitted
5296  */
5297 uint64_t OpenChannel_get_dust_limit_satoshis(const struct LDKOpenChannel *this_ptr);
5298
5299 /**
5300  * The threshold below which outputs on transactions broadcast by sender will be omitted
5301  */
5302 void OpenChannel_set_dust_limit_satoshis(struct LDKOpenChannel *this_ptr, uint64_t val);
5303
5304 /**
5305  * The maximum inbound HTLC value in flight towards sender, in milli-satoshi
5306  */
5307 uint64_t OpenChannel_get_max_htlc_value_in_flight_msat(const struct LDKOpenChannel *this_ptr);
5308
5309 /**
5310  * The maximum inbound HTLC value in flight towards sender, in milli-satoshi
5311  */
5312 void OpenChannel_set_max_htlc_value_in_flight_msat(struct LDKOpenChannel *this_ptr, uint64_t val);
5313
5314 /**
5315  * The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
5316  */
5317 uint64_t OpenChannel_get_channel_reserve_satoshis(const struct LDKOpenChannel *this_ptr);
5318
5319 /**
5320  * The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
5321  */
5322 void OpenChannel_set_channel_reserve_satoshis(struct LDKOpenChannel *this_ptr, uint64_t val);
5323
5324 /**
5325  * The minimum HTLC size incoming to sender, in milli-satoshi
5326  */
5327 uint64_t OpenChannel_get_htlc_minimum_msat(const struct LDKOpenChannel *this_ptr);
5328
5329 /**
5330  * The minimum HTLC size incoming to sender, in milli-satoshi
5331  */
5332 void OpenChannel_set_htlc_minimum_msat(struct LDKOpenChannel *this_ptr, uint64_t val);
5333
5334 /**
5335  * The feerate per 1000-weight of sender generated transactions, until updated by update_fee
5336  */
5337 uint32_t OpenChannel_get_feerate_per_kw(const struct LDKOpenChannel *this_ptr);
5338
5339 /**
5340  * The feerate per 1000-weight of sender generated transactions, until updated by update_fee
5341  */
5342 void OpenChannel_set_feerate_per_kw(struct LDKOpenChannel *this_ptr, uint32_t val);
5343
5344 /**
5345  * The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
5346  */
5347 uint16_t OpenChannel_get_to_self_delay(const struct LDKOpenChannel *this_ptr);
5348
5349 /**
5350  * The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
5351  */
5352 void OpenChannel_set_to_self_delay(struct LDKOpenChannel *this_ptr, uint16_t val);
5353
5354 /**
5355  * The maximum number of inbound HTLCs towards sender
5356  */
5357 uint16_t OpenChannel_get_max_accepted_htlcs(const struct LDKOpenChannel *this_ptr);
5358
5359 /**
5360  * The maximum number of inbound HTLCs towards sender
5361  */
5362 void OpenChannel_set_max_accepted_htlcs(struct LDKOpenChannel *this_ptr, uint16_t val);
5363
5364 /**
5365  * The sender's key controlling the funding transaction
5366  */
5367 struct LDKPublicKey OpenChannel_get_funding_pubkey(const struct LDKOpenChannel *this_ptr);
5368
5369 /**
5370  * The sender's key controlling the funding transaction
5371  */
5372 void OpenChannel_set_funding_pubkey(struct LDKOpenChannel *this_ptr, struct LDKPublicKey val);
5373
5374 /**
5375  * Used to derive a revocation key for transactions broadcast by counterparty
5376  */
5377 struct LDKPublicKey OpenChannel_get_revocation_basepoint(const struct LDKOpenChannel *this_ptr);
5378
5379 /**
5380  * Used to derive a revocation key for transactions broadcast by counterparty
5381  */
5382 void OpenChannel_set_revocation_basepoint(struct LDKOpenChannel *this_ptr, struct LDKPublicKey val);
5383
5384 /**
5385  * A payment key to sender for transactions broadcast by counterparty
5386  */
5387 struct LDKPublicKey OpenChannel_get_payment_point(const struct LDKOpenChannel *this_ptr);
5388
5389 /**
5390  * A payment key to sender for transactions broadcast by counterparty
5391  */
5392 void OpenChannel_set_payment_point(struct LDKOpenChannel *this_ptr, struct LDKPublicKey val);
5393
5394 /**
5395  * Used to derive a payment key to sender for transactions broadcast by sender
5396  */
5397 struct LDKPublicKey OpenChannel_get_delayed_payment_basepoint(const struct LDKOpenChannel *this_ptr);
5398
5399 /**
5400  * Used to derive a payment key to sender for transactions broadcast by sender
5401  */
5402 void OpenChannel_set_delayed_payment_basepoint(struct LDKOpenChannel *this_ptr, struct LDKPublicKey val);
5403
5404 /**
5405  * Used to derive an HTLC payment key to sender
5406  */
5407 struct LDKPublicKey OpenChannel_get_htlc_basepoint(const struct LDKOpenChannel *this_ptr);
5408
5409 /**
5410  * Used to derive an HTLC payment key to sender
5411  */
5412 void OpenChannel_set_htlc_basepoint(struct LDKOpenChannel *this_ptr, struct LDKPublicKey val);
5413
5414 /**
5415  * The first to-be-broadcast-by-sender transaction's per commitment point
5416  */
5417 struct LDKPublicKey OpenChannel_get_first_per_commitment_point(const struct LDKOpenChannel *this_ptr);
5418
5419 /**
5420  * The first to-be-broadcast-by-sender transaction's per commitment point
5421  */
5422 void OpenChannel_set_first_per_commitment_point(struct LDKOpenChannel *this_ptr, struct LDKPublicKey val);
5423
5424 /**
5425  * Channel flags
5426  */
5427 uint8_t OpenChannel_get_channel_flags(const struct LDKOpenChannel *this_ptr);
5428
5429 /**
5430  * Channel flags
5431  */
5432 void OpenChannel_set_channel_flags(struct LDKOpenChannel *this_ptr, uint8_t val);
5433
5434 void AcceptChannel_free(struct LDKAcceptChannel this_ptr);
5435
5436 struct LDKAcceptChannel AcceptChannel_clone(const struct LDKAcceptChannel *orig);
5437
5438 /**
5439  * A temporary channel ID, until the funding outpoint is announced
5440  */
5441 const uint8_t (*AcceptChannel_get_temporary_channel_id(const struct LDKAcceptChannel *this_ptr))[32];
5442
5443 /**
5444  * A temporary channel ID, until the funding outpoint is announced
5445  */
5446 void AcceptChannel_set_temporary_channel_id(struct LDKAcceptChannel *this_ptr, struct LDKThirtyTwoBytes val);
5447
5448 /**
5449  * The threshold below which outputs on transactions broadcast by sender will be omitted
5450  */
5451 uint64_t AcceptChannel_get_dust_limit_satoshis(const struct LDKAcceptChannel *this_ptr);
5452
5453 /**
5454  * The threshold below which outputs on transactions broadcast by sender will be omitted
5455  */
5456 void AcceptChannel_set_dust_limit_satoshis(struct LDKAcceptChannel *this_ptr, uint64_t val);
5457
5458 /**
5459  * The maximum inbound HTLC value in flight towards sender, in milli-satoshi
5460  */
5461 uint64_t AcceptChannel_get_max_htlc_value_in_flight_msat(const struct LDKAcceptChannel *this_ptr);
5462
5463 /**
5464  * The maximum inbound HTLC value in flight towards sender, in milli-satoshi
5465  */
5466 void AcceptChannel_set_max_htlc_value_in_flight_msat(struct LDKAcceptChannel *this_ptr, uint64_t val);
5467
5468 /**
5469  * The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
5470  */
5471 uint64_t AcceptChannel_get_channel_reserve_satoshis(const struct LDKAcceptChannel *this_ptr);
5472
5473 /**
5474  * The minimum value unencumbered by HTLCs for the counterparty to keep in the channel
5475  */
5476 void AcceptChannel_set_channel_reserve_satoshis(struct LDKAcceptChannel *this_ptr, uint64_t val);
5477
5478 /**
5479  * The minimum HTLC size incoming to sender, in milli-satoshi
5480  */
5481 uint64_t AcceptChannel_get_htlc_minimum_msat(const struct LDKAcceptChannel *this_ptr);
5482
5483 /**
5484  * The minimum HTLC size incoming to sender, in milli-satoshi
5485  */
5486 void AcceptChannel_set_htlc_minimum_msat(struct LDKAcceptChannel *this_ptr, uint64_t val);
5487
5488 /**
5489  * Minimum depth of the funding transaction before the channel is considered open
5490  */
5491 uint32_t AcceptChannel_get_minimum_depth(const struct LDKAcceptChannel *this_ptr);
5492
5493 /**
5494  * Minimum depth of the funding transaction before the channel is considered open
5495  */
5496 void AcceptChannel_set_minimum_depth(struct LDKAcceptChannel *this_ptr, uint32_t val);
5497
5498 /**
5499  * The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
5500  */
5501 uint16_t AcceptChannel_get_to_self_delay(const struct LDKAcceptChannel *this_ptr);
5502
5503 /**
5504  * The number of blocks which the counterparty will have to wait to claim on-chain funds if they broadcast a commitment transaction
5505  */
5506 void AcceptChannel_set_to_self_delay(struct LDKAcceptChannel *this_ptr, uint16_t val);
5507
5508 /**
5509  * The maximum number of inbound HTLCs towards sender
5510  */
5511 uint16_t AcceptChannel_get_max_accepted_htlcs(const struct LDKAcceptChannel *this_ptr);
5512
5513 /**
5514  * The maximum number of inbound HTLCs towards sender
5515  */
5516 void AcceptChannel_set_max_accepted_htlcs(struct LDKAcceptChannel *this_ptr, uint16_t val);
5517
5518 /**
5519  * The sender's key controlling the funding transaction
5520  */
5521 struct LDKPublicKey AcceptChannel_get_funding_pubkey(const struct LDKAcceptChannel *this_ptr);
5522
5523 /**
5524  * The sender's key controlling the funding transaction
5525  */
5526 void AcceptChannel_set_funding_pubkey(struct LDKAcceptChannel *this_ptr, struct LDKPublicKey val);
5527
5528 /**
5529  * Used to derive a revocation key for transactions broadcast by counterparty
5530  */
5531 struct LDKPublicKey AcceptChannel_get_revocation_basepoint(const struct LDKAcceptChannel *this_ptr);
5532
5533 /**
5534  * Used to derive a revocation key for transactions broadcast by counterparty
5535  */
5536 void AcceptChannel_set_revocation_basepoint(struct LDKAcceptChannel *this_ptr, struct LDKPublicKey val);
5537
5538 /**
5539  * A payment key to sender for transactions broadcast by counterparty
5540  */
5541 struct LDKPublicKey AcceptChannel_get_payment_point(const struct LDKAcceptChannel *this_ptr);
5542
5543 /**
5544  * A payment key to sender for transactions broadcast by counterparty
5545  */
5546 void AcceptChannel_set_payment_point(struct LDKAcceptChannel *this_ptr, struct LDKPublicKey val);
5547
5548 /**
5549  * Used to derive a payment key to sender for transactions broadcast by sender
5550  */
5551 struct LDKPublicKey AcceptChannel_get_delayed_payment_basepoint(const struct LDKAcceptChannel *this_ptr);
5552
5553 /**
5554  * Used to derive a payment key to sender for transactions broadcast by sender
5555  */
5556 void AcceptChannel_set_delayed_payment_basepoint(struct LDKAcceptChannel *this_ptr, struct LDKPublicKey val);
5557
5558 /**
5559  * Used to derive an HTLC payment key to sender for transactions broadcast by counterparty
5560  */
5561 struct LDKPublicKey AcceptChannel_get_htlc_basepoint(const struct LDKAcceptChannel *this_ptr);
5562
5563 /**
5564  * Used to derive an HTLC payment key to sender for transactions broadcast by counterparty
5565  */
5566 void AcceptChannel_set_htlc_basepoint(struct LDKAcceptChannel *this_ptr, struct LDKPublicKey val);
5567
5568 /**
5569  * The first to-be-broadcast-by-sender transaction's per commitment point
5570  */
5571 struct LDKPublicKey AcceptChannel_get_first_per_commitment_point(const struct LDKAcceptChannel *this_ptr);
5572
5573 /**
5574  * The first to-be-broadcast-by-sender transaction's per commitment point
5575  */
5576 void AcceptChannel_set_first_per_commitment_point(struct LDKAcceptChannel *this_ptr, struct LDKPublicKey val);
5577
5578 void FundingCreated_free(struct LDKFundingCreated this_ptr);
5579
5580 struct LDKFundingCreated FundingCreated_clone(const struct LDKFundingCreated *orig);
5581
5582 /**
5583  * A temporary channel ID, until the funding is established
5584  */
5585 const uint8_t (*FundingCreated_get_temporary_channel_id(const struct LDKFundingCreated *this_ptr))[32];
5586
5587 /**
5588  * A temporary channel ID, until the funding is established
5589  */
5590 void FundingCreated_set_temporary_channel_id(struct LDKFundingCreated *this_ptr, struct LDKThirtyTwoBytes val);
5591
5592 /**
5593  * The funding transaction ID
5594  */
5595 const uint8_t (*FundingCreated_get_funding_txid(const struct LDKFundingCreated *this_ptr))[32];
5596
5597 /**
5598  * The funding transaction ID
5599  */
5600 void FundingCreated_set_funding_txid(struct LDKFundingCreated *this_ptr, struct LDKThirtyTwoBytes val);
5601
5602 /**
5603  * The specific output index funding this channel
5604  */
5605 uint16_t FundingCreated_get_funding_output_index(const struct LDKFundingCreated *this_ptr);
5606
5607 /**
5608  * The specific output index funding this channel
5609  */
5610 void FundingCreated_set_funding_output_index(struct LDKFundingCreated *this_ptr, uint16_t val);
5611
5612 /**
5613  * The signature of the channel initiator (funder) on the funding transaction
5614  */
5615 struct LDKSignature FundingCreated_get_signature(const struct LDKFundingCreated *this_ptr);
5616
5617 /**
5618  * The signature of the channel initiator (funder) on the funding transaction
5619  */
5620 void FundingCreated_set_signature(struct LDKFundingCreated *this_ptr, struct LDKSignature val);
5621
5622 MUST_USE_RES struct LDKFundingCreated FundingCreated_new(struct LDKThirtyTwoBytes temporary_channel_id_arg, struct LDKThirtyTwoBytes funding_txid_arg, uint16_t funding_output_index_arg, struct LDKSignature signature_arg);
5623
5624 void FundingSigned_free(struct LDKFundingSigned this_ptr);
5625
5626 struct LDKFundingSigned FundingSigned_clone(const struct LDKFundingSigned *orig);
5627
5628 /**
5629  * The channel ID
5630  */
5631 const uint8_t (*FundingSigned_get_channel_id(const struct LDKFundingSigned *this_ptr))[32];
5632
5633 /**
5634  * The channel ID
5635  */
5636 void FundingSigned_set_channel_id(struct LDKFundingSigned *this_ptr, struct LDKThirtyTwoBytes val);
5637
5638 /**
5639  * The signature of the channel acceptor (fundee) on the funding transaction
5640  */
5641 struct LDKSignature FundingSigned_get_signature(const struct LDKFundingSigned *this_ptr);
5642
5643 /**
5644  * The signature of the channel acceptor (fundee) on the funding transaction
5645  */
5646 void FundingSigned_set_signature(struct LDKFundingSigned *this_ptr, struct LDKSignature val);
5647
5648 MUST_USE_RES struct LDKFundingSigned FundingSigned_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKSignature signature_arg);
5649
5650 void FundingLocked_free(struct LDKFundingLocked this_ptr);
5651
5652 struct LDKFundingLocked FundingLocked_clone(const struct LDKFundingLocked *orig);
5653
5654 /**
5655  * The channel ID
5656  */
5657 const uint8_t (*FundingLocked_get_channel_id(const struct LDKFundingLocked *this_ptr))[32];
5658
5659 /**
5660  * The channel ID
5661  */
5662 void FundingLocked_set_channel_id(struct LDKFundingLocked *this_ptr, struct LDKThirtyTwoBytes val);
5663
5664 /**
5665  * The per-commitment point of the second commitment transaction
5666  */
5667 struct LDKPublicKey FundingLocked_get_next_per_commitment_point(const struct LDKFundingLocked *this_ptr);
5668
5669 /**
5670  * The per-commitment point of the second commitment transaction
5671  */
5672 void FundingLocked_set_next_per_commitment_point(struct LDKFundingLocked *this_ptr, struct LDKPublicKey val);
5673
5674 MUST_USE_RES struct LDKFundingLocked FundingLocked_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKPublicKey next_per_commitment_point_arg);
5675
5676 void Shutdown_free(struct LDKShutdown this_ptr);
5677
5678 struct LDKShutdown Shutdown_clone(const struct LDKShutdown *orig);
5679
5680 /**
5681  * The channel ID
5682  */
5683 const uint8_t (*Shutdown_get_channel_id(const struct LDKShutdown *this_ptr))[32];
5684
5685 /**
5686  * The channel ID
5687  */
5688 void Shutdown_set_channel_id(struct LDKShutdown *this_ptr, struct LDKThirtyTwoBytes val);
5689
5690 /**
5691  * The destination of this peer's funds on closing.
5692  * Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.
5693  */
5694 struct LDKu8slice Shutdown_get_scriptpubkey(const struct LDKShutdown *this_ptr);
5695
5696 /**
5697  * The destination of this peer's funds on closing.
5698  * Must be in one of these forms: p2pkh, p2sh, p2wpkh, p2wsh.
5699  */
5700 void Shutdown_set_scriptpubkey(struct LDKShutdown *this_ptr, LDKCVec_u8Z val);
5701
5702 MUST_USE_RES struct LDKShutdown Shutdown_new(struct LDKThirtyTwoBytes channel_id_arg, LDKCVec_u8Z scriptpubkey_arg);
5703
5704 void ClosingSigned_free(struct LDKClosingSigned this_ptr);
5705
5706 struct LDKClosingSigned ClosingSigned_clone(const struct LDKClosingSigned *orig);
5707
5708 /**
5709  * The channel ID
5710  */
5711 const uint8_t (*ClosingSigned_get_channel_id(const struct LDKClosingSigned *this_ptr))[32];
5712
5713 /**
5714  * The channel ID
5715  */
5716 void ClosingSigned_set_channel_id(struct LDKClosingSigned *this_ptr, struct LDKThirtyTwoBytes val);
5717
5718 /**
5719  * The proposed total fee for the closing transaction
5720  */
5721 uint64_t ClosingSigned_get_fee_satoshis(const struct LDKClosingSigned *this_ptr);
5722
5723 /**
5724  * The proposed total fee for the closing transaction
5725  */
5726 void ClosingSigned_set_fee_satoshis(struct LDKClosingSigned *this_ptr, uint64_t val);
5727
5728 /**
5729  * A signature on the closing transaction
5730  */
5731 struct LDKSignature ClosingSigned_get_signature(const struct LDKClosingSigned *this_ptr);
5732
5733 /**
5734  * A signature on the closing transaction
5735  */
5736 void ClosingSigned_set_signature(struct LDKClosingSigned *this_ptr, struct LDKSignature val);
5737
5738 MUST_USE_RES struct LDKClosingSigned ClosingSigned_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t fee_satoshis_arg, struct LDKSignature signature_arg);
5739
5740 void UpdateAddHTLC_free(struct LDKUpdateAddHTLC this_ptr);
5741
5742 struct LDKUpdateAddHTLC UpdateAddHTLC_clone(const struct LDKUpdateAddHTLC *orig);
5743
5744 /**
5745  * The channel ID
5746  */
5747 const uint8_t (*UpdateAddHTLC_get_channel_id(const struct LDKUpdateAddHTLC *this_ptr))[32];
5748
5749 /**
5750  * The channel ID
5751  */
5752 void UpdateAddHTLC_set_channel_id(struct LDKUpdateAddHTLC *this_ptr, struct LDKThirtyTwoBytes val);
5753
5754 /**
5755  * The HTLC ID
5756  */
5757 uint64_t UpdateAddHTLC_get_htlc_id(const struct LDKUpdateAddHTLC *this_ptr);
5758
5759 /**
5760  * The HTLC ID
5761  */
5762 void UpdateAddHTLC_set_htlc_id(struct LDKUpdateAddHTLC *this_ptr, uint64_t val);
5763
5764 /**
5765  * The HTLC value in milli-satoshi
5766  */
5767 uint64_t UpdateAddHTLC_get_amount_msat(const struct LDKUpdateAddHTLC *this_ptr);
5768
5769 /**
5770  * The HTLC value in milli-satoshi
5771  */
5772 void UpdateAddHTLC_set_amount_msat(struct LDKUpdateAddHTLC *this_ptr, uint64_t val);
5773
5774 /**
5775  * The payment hash, the pre-image of which controls HTLC redemption
5776  */
5777 const uint8_t (*UpdateAddHTLC_get_payment_hash(const struct LDKUpdateAddHTLC *this_ptr))[32];
5778
5779 /**
5780  * The payment hash, the pre-image of which controls HTLC redemption
5781  */
5782 void UpdateAddHTLC_set_payment_hash(struct LDKUpdateAddHTLC *this_ptr, struct LDKThirtyTwoBytes val);
5783
5784 /**
5785  * The expiry height of the HTLC
5786  */
5787 uint32_t UpdateAddHTLC_get_cltv_expiry(const struct LDKUpdateAddHTLC *this_ptr);
5788
5789 /**
5790  * The expiry height of the HTLC
5791  */
5792 void UpdateAddHTLC_set_cltv_expiry(struct LDKUpdateAddHTLC *this_ptr, uint32_t val);
5793
5794 void UpdateFulfillHTLC_free(struct LDKUpdateFulfillHTLC this_ptr);
5795
5796 struct LDKUpdateFulfillHTLC UpdateFulfillHTLC_clone(const struct LDKUpdateFulfillHTLC *orig);
5797
5798 /**
5799  * The channel ID
5800  */
5801 const uint8_t (*UpdateFulfillHTLC_get_channel_id(const struct LDKUpdateFulfillHTLC *this_ptr))[32];
5802
5803 /**
5804  * The channel ID
5805  */
5806 void UpdateFulfillHTLC_set_channel_id(struct LDKUpdateFulfillHTLC *this_ptr, struct LDKThirtyTwoBytes val);
5807
5808 /**
5809  * The HTLC ID
5810  */
5811 uint64_t UpdateFulfillHTLC_get_htlc_id(const struct LDKUpdateFulfillHTLC *this_ptr);
5812
5813 /**
5814  * The HTLC ID
5815  */
5816 void UpdateFulfillHTLC_set_htlc_id(struct LDKUpdateFulfillHTLC *this_ptr, uint64_t val);
5817
5818 /**
5819  * The pre-image of the payment hash, allowing HTLC redemption
5820  */
5821 const uint8_t (*UpdateFulfillHTLC_get_payment_preimage(const struct LDKUpdateFulfillHTLC *this_ptr))[32];
5822
5823 /**
5824  * The pre-image of the payment hash, allowing HTLC redemption
5825  */
5826 void UpdateFulfillHTLC_set_payment_preimage(struct LDKUpdateFulfillHTLC *this_ptr, struct LDKThirtyTwoBytes val);
5827
5828 MUST_USE_RES struct LDKUpdateFulfillHTLC UpdateFulfillHTLC_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t htlc_id_arg, struct LDKThirtyTwoBytes payment_preimage_arg);
5829
5830 void UpdateFailHTLC_free(struct LDKUpdateFailHTLC this_ptr);
5831
5832 struct LDKUpdateFailHTLC UpdateFailHTLC_clone(const struct LDKUpdateFailHTLC *orig);
5833
5834 /**
5835  * The channel ID
5836  */
5837 const uint8_t (*UpdateFailHTLC_get_channel_id(const struct LDKUpdateFailHTLC *this_ptr))[32];
5838
5839 /**
5840  * The channel ID
5841  */
5842 void UpdateFailHTLC_set_channel_id(struct LDKUpdateFailHTLC *this_ptr, struct LDKThirtyTwoBytes val);
5843
5844 /**
5845  * The HTLC ID
5846  */
5847 uint64_t UpdateFailHTLC_get_htlc_id(const struct LDKUpdateFailHTLC *this_ptr);
5848
5849 /**
5850  * The HTLC ID
5851  */
5852 void UpdateFailHTLC_set_htlc_id(struct LDKUpdateFailHTLC *this_ptr, uint64_t val);
5853
5854 void UpdateFailMalformedHTLC_free(struct LDKUpdateFailMalformedHTLC this_ptr);
5855
5856 struct LDKUpdateFailMalformedHTLC UpdateFailMalformedHTLC_clone(const struct LDKUpdateFailMalformedHTLC *orig);
5857
5858 /**
5859  * The channel ID
5860  */
5861 const uint8_t (*UpdateFailMalformedHTLC_get_channel_id(const struct LDKUpdateFailMalformedHTLC *this_ptr))[32];
5862
5863 /**
5864  * The channel ID
5865  */
5866 void UpdateFailMalformedHTLC_set_channel_id(struct LDKUpdateFailMalformedHTLC *this_ptr, struct LDKThirtyTwoBytes val);
5867
5868 /**
5869  * The HTLC ID
5870  */
5871 uint64_t UpdateFailMalformedHTLC_get_htlc_id(const struct LDKUpdateFailMalformedHTLC *this_ptr);
5872
5873 /**
5874  * The HTLC ID
5875  */
5876 void UpdateFailMalformedHTLC_set_htlc_id(struct LDKUpdateFailMalformedHTLC *this_ptr, uint64_t val);
5877
5878 /**
5879  * The failure code
5880  */
5881 uint16_t UpdateFailMalformedHTLC_get_failure_code(const struct LDKUpdateFailMalformedHTLC *this_ptr);
5882
5883 /**
5884  * The failure code
5885  */
5886 void UpdateFailMalformedHTLC_set_failure_code(struct LDKUpdateFailMalformedHTLC *this_ptr, uint16_t val);
5887
5888 void CommitmentSigned_free(struct LDKCommitmentSigned this_ptr);
5889
5890 struct LDKCommitmentSigned CommitmentSigned_clone(const struct LDKCommitmentSigned *orig);
5891
5892 /**
5893  * The channel ID
5894  */
5895 const uint8_t (*CommitmentSigned_get_channel_id(const struct LDKCommitmentSigned *this_ptr))[32];
5896
5897 /**
5898  * The channel ID
5899  */
5900 void CommitmentSigned_set_channel_id(struct LDKCommitmentSigned *this_ptr, struct LDKThirtyTwoBytes val);
5901
5902 /**
5903  * A signature on the commitment transaction
5904  */
5905 struct LDKSignature CommitmentSigned_get_signature(const struct LDKCommitmentSigned *this_ptr);
5906
5907 /**
5908  * A signature on the commitment transaction
5909  */
5910 void CommitmentSigned_set_signature(struct LDKCommitmentSigned *this_ptr, struct LDKSignature val);
5911
5912 /**
5913  * Signatures on the HTLC transactions
5914  */
5915 void CommitmentSigned_set_htlc_signatures(struct LDKCommitmentSigned *this_ptr, LDKCVec_SignatureZ val);
5916
5917 MUST_USE_RES struct LDKCommitmentSigned CommitmentSigned_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKSignature signature_arg, LDKCVec_SignatureZ htlc_signatures_arg);
5918
5919 void RevokeAndACK_free(struct LDKRevokeAndACK this_ptr);
5920
5921 struct LDKRevokeAndACK RevokeAndACK_clone(const struct LDKRevokeAndACK *orig);
5922
5923 /**
5924  * The channel ID
5925  */
5926 const uint8_t (*RevokeAndACK_get_channel_id(const struct LDKRevokeAndACK *this_ptr))[32];
5927
5928 /**
5929  * The channel ID
5930  */
5931 void RevokeAndACK_set_channel_id(struct LDKRevokeAndACK *this_ptr, struct LDKThirtyTwoBytes val);
5932
5933 /**
5934  * The secret corresponding to the per-commitment point
5935  */
5936 const uint8_t (*RevokeAndACK_get_per_commitment_secret(const struct LDKRevokeAndACK *this_ptr))[32];
5937
5938 /**
5939  * The secret corresponding to the per-commitment point
5940  */
5941 void RevokeAndACK_set_per_commitment_secret(struct LDKRevokeAndACK *this_ptr, struct LDKThirtyTwoBytes val);
5942
5943 /**
5944  * The next sender-broadcast commitment transaction's per-commitment point
5945  */
5946 struct LDKPublicKey RevokeAndACK_get_next_per_commitment_point(const struct LDKRevokeAndACK *this_ptr);
5947
5948 /**
5949  * The next sender-broadcast commitment transaction's per-commitment point
5950  */
5951 void RevokeAndACK_set_next_per_commitment_point(struct LDKRevokeAndACK *this_ptr, struct LDKPublicKey val);
5952
5953 MUST_USE_RES struct LDKRevokeAndACK RevokeAndACK_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKThirtyTwoBytes per_commitment_secret_arg, struct LDKPublicKey next_per_commitment_point_arg);
5954
5955 void UpdateFee_free(struct LDKUpdateFee this_ptr);
5956
5957 struct LDKUpdateFee UpdateFee_clone(const struct LDKUpdateFee *orig);
5958
5959 /**
5960  * The channel ID
5961  */
5962 const uint8_t (*UpdateFee_get_channel_id(const struct LDKUpdateFee *this_ptr))[32];
5963
5964 /**
5965  * The channel ID
5966  */
5967 void UpdateFee_set_channel_id(struct LDKUpdateFee *this_ptr, struct LDKThirtyTwoBytes val);
5968
5969 /**
5970  * Fee rate per 1000-weight of the transaction
5971  */
5972 uint32_t UpdateFee_get_feerate_per_kw(const struct LDKUpdateFee *this_ptr);
5973
5974 /**
5975  * Fee rate per 1000-weight of the transaction
5976  */
5977 void UpdateFee_set_feerate_per_kw(struct LDKUpdateFee *this_ptr, uint32_t val);
5978
5979 MUST_USE_RES struct LDKUpdateFee UpdateFee_new(struct LDKThirtyTwoBytes channel_id_arg, uint32_t feerate_per_kw_arg);
5980
5981 void DataLossProtect_free(struct LDKDataLossProtect this_ptr);
5982
5983 struct LDKDataLossProtect DataLossProtect_clone(const struct LDKDataLossProtect *orig);
5984
5985 /**
5986  * Proof that the sender knows the per-commitment secret of a specific commitment transaction
5987  * belonging to the recipient
5988  */
5989 const uint8_t (*DataLossProtect_get_your_last_per_commitment_secret(const struct LDKDataLossProtect *this_ptr))[32];
5990
5991 /**
5992  * Proof that the sender knows the per-commitment secret of a specific commitment transaction
5993  * belonging to the recipient
5994  */
5995 void DataLossProtect_set_your_last_per_commitment_secret(struct LDKDataLossProtect *this_ptr, struct LDKThirtyTwoBytes val);
5996
5997 /**
5998  * The sender's per-commitment point for their current commitment transaction
5999  */
6000 struct LDKPublicKey DataLossProtect_get_my_current_per_commitment_point(const struct LDKDataLossProtect *this_ptr);
6001
6002 /**
6003  * The sender's per-commitment point for their current commitment transaction
6004  */
6005 void DataLossProtect_set_my_current_per_commitment_point(struct LDKDataLossProtect *this_ptr, struct LDKPublicKey val);
6006
6007 MUST_USE_RES struct LDKDataLossProtect DataLossProtect_new(struct LDKThirtyTwoBytes your_last_per_commitment_secret_arg, struct LDKPublicKey my_current_per_commitment_point_arg);
6008
6009 void ChannelReestablish_free(struct LDKChannelReestablish this_ptr);
6010
6011 struct LDKChannelReestablish ChannelReestablish_clone(const struct LDKChannelReestablish *orig);
6012
6013 /**
6014  * The channel ID
6015  */
6016 const uint8_t (*ChannelReestablish_get_channel_id(const struct LDKChannelReestablish *this_ptr))[32];
6017
6018 /**
6019  * The channel ID
6020  */
6021 void ChannelReestablish_set_channel_id(struct LDKChannelReestablish *this_ptr, struct LDKThirtyTwoBytes val);
6022
6023 /**
6024  * The next commitment number for the sender
6025  */
6026 uint64_t ChannelReestablish_get_next_local_commitment_number(const struct LDKChannelReestablish *this_ptr);
6027
6028 /**
6029  * The next commitment number for the sender
6030  */
6031 void ChannelReestablish_set_next_local_commitment_number(struct LDKChannelReestablish *this_ptr, uint64_t val);
6032
6033 /**
6034  * The next commitment number for the recipient
6035  */
6036 uint64_t ChannelReestablish_get_next_remote_commitment_number(const struct LDKChannelReestablish *this_ptr);
6037
6038 /**
6039  * The next commitment number for the recipient
6040  */
6041 void ChannelReestablish_set_next_remote_commitment_number(struct LDKChannelReestablish *this_ptr, uint64_t val);
6042
6043 void AnnouncementSignatures_free(struct LDKAnnouncementSignatures this_ptr);
6044
6045 struct LDKAnnouncementSignatures AnnouncementSignatures_clone(const struct LDKAnnouncementSignatures *orig);
6046
6047 /**
6048  * The channel ID
6049  */
6050 const uint8_t (*AnnouncementSignatures_get_channel_id(const struct LDKAnnouncementSignatures *this_ptr))[32];
6051
6052 /**
6053  * The channel ID
6054  */
6055 void AnnouncementSignatures_set_channel_id(struct LDKAnnouncementSignatures *this_ptr, struct LDKThirtyTwoBytes val);
6056
6057 /**
6058  * The short channel ID
6059  */
6060 uint64_t AnnouncementSignatures_get_short_channel_id(const struct LDKAnnouncementSignatures *this_ptr);
6061
6062 /**
6063  * The short channel ID
6064  */
6065 void AnnouncementSignatures_set_short_channel_id(struct LDKAnnouncementSignatures *this_ptr, uint64_t val);
6066
6067 /**
6068  * A signature by the node key
6069  */
6070 struct LDKSignature AnnouncementSignatures_get_node_signature(const struct LDKAnnouncementSignatures *this_ptr);
6071
6072 /**
6073  * A signature by the node key
6074  */
6075 void AnnouncementSignatures_set_node_signature(struct LDKAnnouncementSignatures *this_ptr, struct LDKSignature val);
6076
6077 /**
6078  * A signature by the funding key
6079  */
6080 struct LDKSignature AnnouncementSignatures_get_bitcoin_signature(const struct LDKAnnouncementSignatures *this_ptr);
6081
6082 /**
6083  * A signature by the funding key
6084  */
6085 void AnnouncementSignatures_set_bitcoin_signature(struct LDKAnnouncementSignatures *this_ptr, struct LDKSignature val);
6086
6087 MUST_USE_RES struct LDKAnnouncementSignatures AnnouncementSignatures_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t short_channel_id_arg, struct LDKSignature node_signature_arg, struct LDKSignature bitcoin_signature_arg);
6088
6089 void NetAddress_free(struct LDKNetAddress this_ptr);
6090
6091 struct LDKNetAddress NetAddress_clone(const struct LDKNetAddress *orig);
6092
6093 LDKCVec_u8Z NetAddress_write(const struct LDKNetAddress *obj);
6094
6095 void UnsignedNodeAnnouncement_free(struct LDKUnsignedNodeAnnouncement this_ptr);
6096
6097 struct LDKUnsignedNodeAnnouncement UnsignedNodeAnnouncement_clone(const struct LDKUnsignedNodeAnnouncement *orig);
6098
6099 /**
6100  * The advertised features
6101  */
6102 struct LDKNodeFeatures UnsignedNodeAnnouncement_get_features(const struct LDKUnsignedNodeAnnouncement *this_ptr);
6103
6104 /**
6105  * The advertised features
6106  */
6107 void UnsignedNodeAnnouncement_set_features(struct LDKUnsignedNodeAnnouncement *this_ptr, struct LDKNodeFeatures val);
6108
6109 /**
6110  * A strictly monotonic announcement counter, with gaps allowed
6111  */
6112 uint32_t UnsignedNodeAnnouncement_get_timestamp(const struct LDKUnsignedNodeAnnouncement *this_ptr);
6113
6114 /**
6115  * A strictly monotonic announcement counter, with gaps allowed
6116  */
6117 void UnsignedNodeAnnouncement_set_timestamp(struct LDKUnsignedNodeAnnouncement *this_ptr, uint32_t val);
6118
6119 /**
6120  * The node_id this announcement originated from (don't rebroadcast the node_announcement back
6121  * to this node).
6122  */
6123 struct LDKPublicKey UnsignedNodeAnnouncement_get_node_id(const struct LDKUnsignedNodeAnnouncement *this_ptr);
6124
6125 /**
6126  * The node_id this announcement originated from (don't rebroadcast the node_announcement back
6127  * to this node).
6128  */
6129 void UnsignedNodeAnnouncement_set_node_id(struct LDKUnsignedNodeAnnouncement *this_ptr, struct LDKPublicKey val);
6130
6131 /**
6132  * An RGB color for UI purposes
6133  */
6134 const uint8_t (*UnsignedNodeAnnouncement_get_rgb(const struct LDKUnsignedNodeAnnouncement *this_ptr))[3];
6135
6136 /**
6137  * An RGB color for UI purposes
6138  */
6139 void UnsignedNodeAnnouncement_set_rgb(struct LDKUnsignedNodeAnnouncement *this_ptr, struct LDKThreeBytes val);
6140
6141 /**
6142  * An alias, for UI purposes.  This should be sanitized before use.  There is no guarantee
6143  * of uniqueness.
6144  */
6145 const uint8_t (*UnsignedNodeAnnouncement_get_alias(const struct LDKUnsignedNodeAnnouncement *this_ptr))[32];
6146
6147 /**
6148  * An alias, for UI purposes.  This should be sanitized before use.  There is no guarantee
6149  * of uniqueness.
6150  */
6151 void UnsignedNodeAnnouncement_set_alias(struct LDKUnsignedNodeAnnouncement *this_ptr, struct LDKThirtyTwoBytes val);
6152
6153 /**
6154  * List of addresses on which this node is reachable
6155  */
6156 void UnsignedNodeAnnouncement_set_addresses(struct LDKUnsignedNodeAnnouncement *this_ptr, LDKCVec_NetAddressZ val);
6157
6158 void NodeAnnouncement_free(struct LDKNodeAnnouncement this_ptr);
6159
6160 struct LDKNodeAnnouncement NodeAnnouncement_clone(const struct LDKNodeAnnouncement *orig);
6161
6162 /**
6163  * The signature by the node key
6164  */
6165 struct LDKSignature NodeAnnouncement_get_signature(const struct LDKNodeAnnouncement *this_ptr);
6166
6167 /**
6168  * The signature by the node key
6169  */
6170 void NodeAnnouncement_set_signature(struct LDKNodeAnnouncement *this_ptr, struct LDKSignature val);
6171
6172 /**
6173  * The actual content of the announcement
6174  */
6175 struct LDKUnsignedNodeAnnouncement NodeAnnouncement_get_contents(const struct LDKNodeAnnouncement *this_ptr);
6176
6177 /**
6178  * The actual content of the announcement
6179  */
6180 void NodeAnnouncement_set_contents(struct LDKNodeAnnouncement *this_ptr, struct LDKUnsignedNodeAnnouncement val);
6181
6182 MUST_USE_RES struct LDKNodeAnnouncement NodeAnnouncement_new(struct LDKSignature signature_arg, struct LDKUnsignedNodeAnnouncement contents_arg);
6183
6184 void UnsignedChannelAnnouncement_free(struct LDKUnsignedChannelAnnouncement this_ptr);
6185
6186 struct LDKUnsignedChannelAnnouncement UnsignedChannelAnnouncement_clone(const struct LDKUnsignedChannelAnnouncement *orig);
6187
6188 /**
6189  * The advertised channel features
6190  */
6191 struct LDKChannelFeatures UnsignedChannelAnnouncement_get_features(const struct LDKUnsignedChannelAnnouncement *this_ptr);
6192
6193 /**
6194  * The advertised channel features
6195  */
6196 void UnsignedChannelAnnouncement_set_features(struct LDKUnsignedChannelAnnouncement *this_ptr, struct LDKChannelFeatures val);
6197
6198 /**
6199  * The genesis hash of the blockchain where the channel is to be opened
6200  */
6201 const uint8_t (*UnsignedChannelAnnouncement_get_chain_hash(const struct LDKUnsignedChannelAnnouncement *this_ptr))[32];
6202
6203 /**
6204  * The genesis hash of the blockchain where the channel is to be opened
6205  */
6206 void UnsignedChannelAnnouncement_set_chain_hash(struct LDKUnsignedChannelAnnouncement *this_ptr, struct LDKThirtyTwoBytes val);
6207
6208 /**
6209  * The short channel ID
6210  */
6211 uint64_t UnsignedChannelAnnouncement_get_short_channel_id(const struct LDKUnsignedChannelAnnouncement *this_ptr);
6212
6213 /**
6214  * The short channel ID
6215  */
6216 void UnsignedChannelAnnouncement_set_short_channel_id(struct LDKUnsignedChannelAnnouncement *this_ptr, uint64_t val);
6217
6218 /**
6219  * One of the two node_ids which are endpoints of this channel
6220  */
6221 struct LDKPublicKey UnsignedChannelAnnouncement_get_node_id_1(const struct LDKUnsignedChannelAnnouncement *this_ptr);
6222
6223 /**
6224  * One of the two node_ids which are endpoints of this channel
6225  */
6226 void UnsignedChannelAnnouncement_set_node_id_1(struct LDKUnsignedChannelAnnouncement *this_ptr, struct LDKPublicKey val);
6227
6228 /**
6229  * The other of the two node_ids which are endpoints of this channel
6230  */
6231 struct LDKPublicKey UnsignedChannelAnnouncement_get_node_id_2(const struct LDKUnsignedChannelAnnouncement *this_ptr);
6232
6233 /**
6234  * The other of the two node_ids which are endpoints of this channel
6235  */
6236 void UnsignedChannelAnnouncement_set_node_id_2(struct LDKUnsignedChannelAnnouncement *this_ptr, struct LDKPublicKey val);
6237
6238 /**
6239  * The funding key for the first node
6240  */
6241 struct LDKPublicKey UnsignedChannelAnnouncement_get_bitcoin_key_1(const struct LDKUnsignedChannelAnnouncement *this_ptr);
6242
6243 /**
6244  * The funding key for the first node
6245  */
6246 void UnsignedChannelAnnouncement_set_bitcoin_key_1(struct LDKUnsignedChannelAnnouncement *this_ptr, struct LDKPublicKey val);
6247
6248 /**
6249  * The funding key for the second node
6250  */
6251 struct LDKPublicKey UnsignedChannelAnnouncement_get_bitcoin_key_2(const struct LDKUnsignedChannelAnnouncement *this_ptr);
6252
6253 /**
6254  * The funding key for the second node
6255  */
6256 void UnsignedChannelAnnouncement_set_bitcoin_key_2(struct LDKUnsignedChannelAnnouncement *this_ptr, struct LDKPublicKey val);
6257
6258 void ChannelAnnouncement_free(struct LDKChannelAnnouncement this_ptr);
6259
6260 struct LDKChannelAnnouncement ChannelAnnouncement_clone(const struct LDKChannelAnnouncement *orig);
6261
6262 /**
6263  * Authentication of the announcement by the first public node
6264  */
6265 struct LDKSignature ChannelAnnouncement_get_node_signature_1(const struct LDKChannelAnnouncement *this_ptr);
6266
6267 /**
6268  * Authentication of the announcement by the first public node
6269  */
6270 void ChannelAnnouncement_set_node_signature_1(struct LDKChannelAnnouncement *this_ptr, struct LDKSignature val);
6271
6272 /**
6273  * Authentication of the announcement by the second public node
6274  */
6275 struct LDKSignature ChannelAnnouncement_get_node_signature_2(const struct LDKChannelAnnouncement *this_ptr);
6276
6277 /**
6278  * Authentication of the announcement by the second public node
6279  */
6280 void ChannelAnnouncement_set_node_signature_2(struct LDKChannelAnnouncement *this_ptr, struct LDKSignature val);
6281
6282 /**
6283  * Proof of funding UTXO ownership by the first public node
6284  */
6285 struct LDKSignature ChannelAnnouncement_get_bitcoin_signature_1(const struct LDKChannelAnnouncement *this_ptr);
6286
6287 /**
6288  * Proof of funding UTXO ownership by the first public node
6289  */
6290 void ChannelAnnouncement_set_bitcoin_signature_1(struct LDKChannelAnnouncement *this_ptr, struct LDKSignature val);
6291
6292 /**
6293  * Proof of funding UTXO ownership by the second public node
6294  */
6295 struct LDKSignature ChannelAnnouncement_get_bitcoin_signature_2(const struct LDKChannelAnnouncement *this_ptr);
6296
6297 /**
6298  * Proof of funding UTXO ownership by the second public node
6299  */
6300 void ChannelAnnouncement_set_bitcoin_signature_2(struct LDKChannelAnnouncement *this_ptr, struct LDKSignature val);
6301
6302 /**
6303  * The actual announcement
6304  */
6305 struct LDKUnsignedChannelAnnouncement ChannelAnnouncement_get_contents(const struct LDKChannelAnnouncement *this_ptr);
6306
6307 /**
6308  * The actual announcement
6309  */
6310 void ChannelAnnouncement_set_contents(struct LDKChannelAnnouncement *this_ptr, struct LDKUnsignedChannelAnnouncement val);
6311
6312 MUST_USE_RES struct LDKChannelAnnouncement ChannelAnnouncement_new(struct LDKSignature node_signature_1_arg, struct LDKSignature node_signature_2_arg, struct LDKSignature bitcoin_signature_1_arg, struct LDKSignature bitcoin_signature_2_arg, struct LDKUnsignedChannelAnnouncement contents_arg);
6313
6314 void UnsignedChannelUpdate_free(struct LDKUnsignedChannelUpdate this_ptr);
6315
6316 struct LDKUnsignedChannelUpdate UnsignedChannelUpdate_clone(const struct LDKUnsignedChannelUpdate *orig);
6317
6318 /**
6319  * The genesis hash of the blockchain where the channel is to be opened
6320  */
6321 const uint8_t (*UnsignedChannelUpdate_get_chain_hash(const struct LDKUnsignedChannelUpdate *this_ptr))[32];
6322
6323 /**
6324  * The genesis hash of the blockchain where the channel is to be opened
6325  */
6326 void UnsignedChannelUpdate_set_chain_hash(struct LDKUnsignedChannelUpdate *this_ptr, struct LDKThirtyTwoBytes val);
6327
6328 /**
6329  * The short channel ID
6330  */
6331 uint64_t UnsignedChannelUpdate_get_short_channel_id(const struct LDKUnsignedChannelUpdate *this_ptr);
6332
6333 /**
6334  * The short channel ID
6335  */
6336 void UnsignedChannelUpdate_set_short_channel_id(struct LDKUnsignedChannelUpdate *this_ptr, uint64_t val);
6337
6338 /**
6339  * A strictly monotonic announcement counter, with gaps allowed, specific to this channel
6340  */
6341 uint32_t UnsignedChannelUpdate_get_timestamp(const struct LDKUnsignedChannelUpdate *this_ptr);
6342
6343 /**
6344  * A strictly monotonic announcement counter, with gaps allowed, specific to this channel
6345  */
6346 void UnsignedChannelUpdate_set_timestamp(struct LDKUnsignedChannelUpdate *this_ptr, uint32_t val);
6347
6348 /**
6349  * Channel flags
6350  */
6351 uint8_t UnsignedChannelUpdate_get_flags(const struct LDKUnsignedChannelUpdate *this_ptr);
6352
6353 /**
6354  * Channel flags
6355  */
6356 void UnsignedChannelUpdate_set_flags(struct LDKUnsignedChannelUpdate *this_ptr, uint8_t val);
6357
6358 /**
6359  * The number of blocks to subtract from incoming HTLC cltv_expiry values
6360  */
6361 uint16_t UnsignedChannelUpdate_get_cltv_expiry_delta(const struct LDKUnsignedChannelUpdate *this_ptr);
6362
6363 /**
6364  * The number of blocks to subtract from incoming HTLC cltv_expiry values
6365  */
6366 void UnsignedChannelUpdate_set_cltv_expiry_delta(struct LDKUnsignedChannelUpdate *this_ptr, uint16_t val);
6367
6368 /**
6369  * The minimum HTLC size incoming to sender, in milli-satoshi
6370  */
6371 uint64_t UnsignedChannelUpdate_get_htlc_minimum_msat(const struct LDKUnsignedChannelUpdate *this_ptr);
6372
6373 /**
6374  * The minimum HTLC size incoming to sender, in milli-satoshi
6375  */
6376 void UnsignedChannelUpdate_set_htlc_minimum_msat(struct LDKUnsignedChannelUpdate *this_ptr, uint64_t val);
6377
6378 /**
6379  * The base HTLC fee charged by sender, in milli-satoshi
6380  */
6381 uint32_t UnsignedChannelUpdate_get_fee_base_msat(const struct LDKUnsignedChannelUpdate *this_ptr);
6382
6383 /**
6384  * The base HTLC fee charged by sender, in milli-satoshi
6385  */
6386 void UnsignedChannelUpdate_set_fee_base_msat(struct LDKUnsignedChannelUpdate *this_ptr, uint32_t val);
6387
6388 /**
6389  * The amount to fee multiplier, in micro-satoshi
6390  */
6391 uint32_t UnsignedChannelUpdate_get_fee_proportional_millionths(const struct LDKUnsignedChannelUpdate *this_ptr);
6392
6393 /**
6394  * The amount to fee multiplier, in micro-satoshi
6395  */
6396 void UnsignedChannelUpdate_set_fee_proportional_millionths(struct LDKUnsignedChannelUpdate *this_ptr, uint32_t val);
6397
6398 void ChannelUpdate_free(struct LDKChannelUpdate this_ptr);
6399
6400 struct LDKChannelUpdate ChannelUpdate_clone(const struct LDKChannelUpdate *orig);
6401
6402 /**
6403  * A signature of the channel update
6404  */
6405 struct LDKSignature ChannelUpdate_get_signature(const struct LDKChannelUpdate *this_ptr);
6406
6407 /**
6408  * A signature of the channel update
6409  */
6410 void ChannelUpdate_set_signature(struct LDKChannelUpdate *this_ptr, struct LDKSignature val);
6411
6412 /**
6413  * The actual channel update
6414  */
6415 struct LDKUnsignedChannelUpdate ChannelUpdate_get_contents(const struct LDKChannelUpdate *this_ptr);
6416
6417 /**
6418  * The actual channel update
6419  */
6420 void ChannelUpdate_set_contents(struct LDKChannelUpdate *this_ptr, struct LDKUnsignedChannelUpdate val);
6421
6422 MUST_USE_RES struct LDKChannelUpdate ChannelUpdate_new(struct LDKSignature signature_arg, struct LDKUnsignedChannelUpdate contents_arg);
6423
6424 void QueryChannelRange_free(struct LDKQueryChannelRange this_ptr);
6425
6426 struct LDKQueryChannelRange QueryChannelRange_clone(const struct LDKQueryChannelRange *orig);
6427
6428 /**
6429  * The genesis hash of the blockchain being queried
6430  */
6431 const uint8_t (*QueryChannelRange_get_chain_hash(const struct LDKQueryChannelRange *this_ptr))[32];
6432
6433 /**
6434  * The genesis hash of the blockchain being queried
6435  */
6436 void QueryChannelRange_set_chain_hash(struct LDKQueryChannelRange *this_ptr, struct LDKThirtyTwoBytes val);
6437
6438 /**
6439  * The height of the first block for the channel UTXOs being queried
6440  */
6441 uint32_t QueryChannelRange_get_first_blocknum(const struct LDKQueryChannelRange *this_ptr);
6442
6443 /**
6444  * The height of the first block for the channel UTXOs being queried
6445  */
6446 void QueryChannelRange_set_first_blocknum(struct LDKQueryChannelRange *this_ptr, uint32_t val);
6447
6448 /**
6449  * The number of blocks to include in the query results
6450  */
6451 uint32_t QueryChannelRange_get_number_of_blocks(const struct LDKQueryChannelRange *this_ptr);
6452
6453 /**
6454  * The number of blocks to include in the query results
6455  */
6456 void QueryChannelRange_set_number_of_blocks(struct LDKQueryChannelRange *this_ptr, uint32_t val);
6457
6458 MUST_USE_RES struct LDKQueryChannelRange QueryChannelRange_new(struct LDKThirtyTwoBytes chain_hash_arg, uint32_t first_blocknum_arg, uint32_t number_of_blocks_arg);
6459
6460 void ReplyChannelRange_free(struct LDKReplyChannelRange this_ptr);
6461
6462 struct LDKReplyChannelRange ReplyChannelRange_clone(const struct LDKReplyChannelRange *orig);
6463
6464 /**
6465  * The genesis hash of the blockchain being queried
6466  */
6467 const uint8_t (*ReplyChannelRange_get_chain_hash(const struct LDKReplyChannelRange *this_ptr))[32];
6468
6469 /**
6470  * The genesis hash of the blockchain being queried
6471  */
6472 void ReplyChannelRange_set_chain_hash(struct LDKReplyChannelRange *this_ptr, struct LDKThirtyTwoBytes val);
6473
6474 /**
6475  * The height of the first block in the range of the reply
6476  */
6477 uint32_t ReplyChannelRange_get_first_blocknum(const struct LDKReplyChannelRange *this_ptr);
6478
6479 /**
6480  * The height of the first block in the range of the reply
6481  */
6482 void ReplyChannelRange_set_first_blocknum(struct LDKReplyChannelRange *this_ptr, uint32_t val);
6483
6484 /**
6485  * The number of blocks included in the range of the reply
6486  */
6487 uint32_t ReplyChannelRange_get_number_of_blocks(const struct LDKReplyChannelRange *this_ptr);
6488
6489 /**
6490  * The number of blocks included in the range of the reply
6491  */
6492 void ReplyChannelRange_set_number_of_blocks(struct LDKReplyChannelRange *this_ptr, uint32_t val);
6493
6494 /**
6495  * Indicates if the query recipient maintains up-to-date channel
6496  * information for the chain_hash
6497  */
6498 bool ReplyChannelRange_get_full_information(const struct LDKReplyChannelRange *this_ptr);
6499
6500 /**
6501  * Indicates if the query recipient maintains up-to-date channel
6502  * information for the chain_hash
6503  */
6504 void ReplyChannelRange_set_full_information(struct LDKReplyChannelRange *this_ptr, bool val);
6505
6506 /**
6507  * The short_channel_ids in the channel range
6508  */
6509 void ReplyChannelRange_set_short_channel_ids(struct LDKReplyChannelRange *this_ptr, LDKCVec_u64Z val);
6510
6511 MUST_USE_RES struct LDKReplyChannelRange ReplyChannelRange_new(struct LDKThirtyTwoBytes chain_hash_arg, uint32_t first_blocknum_arg, uint32_t number_of_blocks_arg, bool full_information_arg, LDKCVec_u64Z short_channel_ids_arg);
6512
6513 void QueryShortChannelIds_free(struct LDKQueryShortChannelIds this_ptr);
6514
6515 struct LDKQueryShortChannelIds QueryShortChannelIds_clone(const struct LDKQueryShortChannelIds *orig);
6516
6517 /**
6518  * The genesis hash of the blockchain being queried
6519  */
6520 const uint8_t (*QueryShortChannelIds_get_chain_hash(const struct LDKQueryShortChannelIds *this_ptr))[32];
6521
6522 /**
6523  * The genesis hash of the blockchain being queried
6524  */
6525 void QueryShortChannelIds_set_chain_hash(struct LDKQueryShortChannelIds *this_ptr, struct LDKThirtyTwoBytes val);
6526
6527 /**
6528  * The short_channel_ids that are being queried
6529  */
6530 void QueryShortChannelIds_set_short_channel_ids(struct LDKQueryShortChannelIds *this_ptr, LDKCVec_u64Z val);
6531
6532 MUST_USE_RES struct LDKQueryShortChannelIds QueryShortChannelIds_new(struct LDKThirtyTwoBytes chain_hash_arg, LDKCVec_u64Z short_channel_ids_arg);
6533
6534 void ReplyShortChannelIdsEnd_free(struct LDKReplyShortChannelIdsEnd this_ptr);
6535
6536 struct LDKReplyShortChannelIdsEnd ReplyShortChannelIdsEnd_clone(const struct LDKReplyShortChannelIdsEnd *orig);
6537
6538 /**
6539  * The genesis hash of the blockchain that was queried
6540  */
6541 const uint8_t (*ReplyShortChannelIdsEnd_get_chain_hash(const struct LDKReplyShortChannelIdsEnd *this_ptr))[32];
6542
6543 /**
6544  * The genesis hash of the blockchain that was queried
6545  */
6546 void ReplyShortChannelIdsEnd_set_chain_hash(struct LDKReplyShortChannelIdsEnd *this_ptr, struct LDKThirtyTwoBytes val);
6547
6548 /**
6549  * Indicates if the query recipient maintains up-to-date channel
6550  * information for the chain_hash
6551  */
6552 bool ReplyShortChannelIdsEnd_get_full_information(const struct LDKReplyShortChannelIdsEnd *this_ptr);
6553
6554 /**
6555  * Indicates if the query recipient maintains up-to-date channel
6556  * information for the chain_hash
6557  */
6558 void ReplyShortChannelIdsEnd_set_full_information(struct LDKReplyShortChannelIdsEnd *this_ptr, bool val);
6559
6560 MUST_USE_RES struct LDKReplyShortChannelIdsEnd ReplyShortChannelIdsEnd_new(struct LDKThirtyTwoBytes chain_hash_arg, bool full_information_arg);
6561
6562 void GossipTimestampFilter_free(struct LDKGossipTimestampFilter this_ptr);
6563
6564 struct LDKGossipTimestampFilter GossipTimestampFilter_clone(const struct LDKGossipTimestampFilter *orig);
6565
6566 /**
6567  * The genesis hash of the blockchain for channel and node information
6568  */
6569 const uint8_t (*GossipTimestampFilter_get_chain_hash(const struct LDKGossipTimestampFilter *this_ptr))[32];
6570
6571 /**
6572  * The genesis hash of the blockchain for channel and node information
6573  */
6574 void GossipTimestampFilter_set_chain_hash(struct LDKGossipTimestampFilter *this_ptr, struct LDKThirtyTwoBytes val);
6575
6576 /**
6577  * The starting unix timestamp
6578  */
6579 uint32_t GossipTimestampFilter_get_first_timestamp(const struct LDKGossipTimestampFilter *this_ptr);
6580
6581 /**
6582  * The starting unix timestamp
6583  */
6584 void GossipTimestampFilter_set_first_timestamp(struct LDKGossipTimestampFilter *this_ptr, uint32_t val);
6585
6586 /**
6587  * The range of information in seconds
6588  */
6589 uint32_t GossipTimestampFilter_get_timestamp_range(const struct LDKGossipTimestampFilter *this_ptr);
6590
6591 /**
6592  * The range of information in seconds
6593  */
6594 void GossipTimestampFilter_set_timestamp_range(struct LDKGossipTimestampFilter *this_ptr, uint32_t val);
6595
6596 MUST_USE_RES struct LDKGossipTimestampFilter GossipTimestampFilter_new(struct LDKThirtyTwoBytes chain_hash_arg, uint32_t first_timestamp_arg, uint32_t timestamp_range_arg);
6597
6598 void ErrorAction_free(struct LDKErrorAction this_ptr);
6599
6600 struct LDKErrorAction ErrorAction_clone(const struct LDKErrorAction *orig);
6601
6602 void LightningError_free(struct LDKLightningError this_ptr);
6603
6604 /**
6605  * A human-readable message describing the error
6606  */
6607 struct LDKStr LightningError_get_err(const struct LDKLightningError *this_ptr);
6608
6609 /**
6610  * A human-readable message describing the error
6611  */
6612 void LightningError_set_err(struct LDKLightningError *this_ptr, LDKCVec_u8Z val);
6613
6614 /**
6615  * The action which should be taken against the offending peer.
6616  */
6617 struct LDKErrorAction LightningError_get_action(const struct LDKLightningError *this_ptr);
6618
6619 /**
6620  * The action which should be taken against the offending peer.
6621  */
6622 void LightningError_set_action(struct LDKLightningError *this_ptr, struct LDKErrorAction val);
6623
6624 MUST_USE_RES struct LDKLightningError LightningError_new(LDKCVec_u8Z err_arg, struct LDKErrorAction action_arg);
6625
6626 void CommitmentUpdate_free(struct LDKCommitmentUpdate this_ptr);
6627
6628 struct LDKCommitmentUpdate CommitmentUpdate_clone(const struct LDKCommitmentUpdate *orig);
6629
6630 /**
6631  * update_add_htlc messages which should be sent
6632  */
6633 void CommitmentUpdate_set_update_add_htlcs(struct LDKCommitmentUpdate *this_ptr, LDKCVec_UpdateAddHTLCZ val);
6634
6635 /**
6636  * update_fulfill_htlc messages which should be sent
6637  */
6638 void CommitmentUpdate_set_update_fulfill_htlcs(struct LDKCommitmentUpdate *this_ptr, LDKCVec_UpdateFulfillHTLCZ val);
6639
6640 /**
6641  * update_fail_htlc messages which should be sent
6642  */
6643 void CommitmentUpdate_set_update_fail_htlcs(struct LDKCommitmentUpdate *this_ptr, LDKCVec_UpdateFailHTLCZ val);
6644
6645 /**
6646  * update_fail_malformed_htlc messages which should be sent
6647  */
6648 void CommitmentUpdate_set_update_fail_malformed_htlcs(struct LDKCommitmentUpdate *this_ptr, LDKCVec_UpdateFailMalformedHTLCZ val);
6649
6650 /**
6651  * An update_fee message which should be sent
6652  */
6653 struct LDKUpdateFee CommitmentUpdate_get_update_fee(const struct LDKCommitmentUpdate *this_ptr);
6654
6655 /**
6656  * An update_fee message which should be sent
6657  */
6658 void CommitmentUpdate_set_update_fee(struct LDKCommitmentUpdate *this_ptr, struct LDKUpdateFee val);
6659
6660 /**
6661  * Finally, the commitment_signed message which should be sent
6662  */
6663 struct LDKCommitmentSigned CommitmentUpdate_get_commitment_signed(const struct LDKCommitmentUpdate *this_ptr);
6664
6665 /**
6666  * Finally, the commitment_signed message which should be sent
6667  */
6668 void CommitmentUpdate_set_commitment_signed(struct LDKCommitmentUpdate *this_ptr, struct LDKCommitmentSigned val);
6669
6670 MUST_USE_RES struct 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, struct LDKUpdateFee update_fee_arg, struct LDKCommitmentSigned commitment_signed_arg);
6671
6672 void HTLCFailChannelUpdate_free(struct LDKHTLCFailChannelUpdate this_ptr);
6673
6674 struct LDKHTLCFailChannelUpdate HTLCFailChannelUpdate_clone(const struct LDKHTLCFailChannelUpdate *orig);
6675
6676 /**
6677  * Calls the free function if one is set
6678  */
6679 void ChannelMessageHandler_free(struct LDKChannelMessageHandler this_ptr);
6680
6681 /**
6682  * Calls the free function if one is set
6683  */
6684 void RoutingMessageHandler_free(struct LDKRoutingMessageHandler this_ptr);
6685
6686 LDKCVec_u8Z AcceptChannel_write(const struct LDKAcceptChannel *obj);
6687
6688 struct LDKAcceptChannel AcceptChannel_read(struct LDKu8slice ser);
6689
6690 LDKCVec_u8Z AnnouncementSignatures_write(const struct LDKAnnouncementSignatures *obj);
6691
6692 struct LDKAnnouncementSignatures AnnouncementSignatures_read(struct LDKu8slice ser);
6693
6694 LDKCVec_u8Z ChannelReestablish_write(const struct LDKChannelReestablish *obj);
6695
6696 LDKCResult_ChannelReestablishDecodeErrorZ ChannelReestablish_read(struct LDKu8slice ser);
6697
6698 LDKCVec_u8Z ClosingSigned_write(const struct LDKClosingSigned *obj);
6699
6700 struct LDKClosingSigned ClosingSigned_read(struct LDKu8slice ser);
6701
6702 LDKCVec_u8Z CommitmentSigned_write(const struct LDKCommitmentSigned *obj);
6703
6704 struct LDKCommitmentSigned CommitmentSigned_read(struct LDKu8slice ser);
6705
6706 LDKCVec_u8Z FundingCreated_write(const struct LDKFundingCreated *obj);
6707
6708 struct LDKFundingCreated FundingCreated_read(struct LDKu8slice ser);
6709
6710 LDKCVec_u8Z FundingSigned_write(const struct LDKFundingSigned *obj);
6711
6712 struct LDKFundingSigned FundingSigned_read(struct LDKu8slice ser);
6713
6714 LDKCVec_u8Z FundingLocked_write(const struct LDKFundingLocked *obj);
6715
6716 struct LDKFundingLocked FundingLocked_read(struct LDKu8slice ser);
6717
6718 LDKCVec_u8Z Init_write(const struct LDKInit *obj);
6719
6720 LDKCResult_InitDecodeErrorZ Init_read(struct LDKu8slice ser);
6721
6722 LDKCVec_u8Z OpenChannel_write(const struct LDKOpenChannel *obj);
6723
6724 struct LDKOpenChannel OpenChannel_read(struct LDKu8slice ser);
6725
6726 LDKCVec_u8Z RevokeAndACK_write(const struct LDKRevokeAndACK *obj);
6727
6728 struct LDKRevokeAndACK RevokeAndACK_read(struct LDKu8slice ser);
6729
6730 LDKCVec_u8Z Shutdown_write(const struct LDKShutdown *obj);
6731
6732 struct LDKShutdown Shutdown_read(struct LDKu8slice ser);
6733
6734 LDKCVec_u8Z UpdateFailHTLC_write(const struct LDKUpdateFailHTLC *obj);
6735
6736 struct LDKUpdateFailHTLC UpdateFailHTLC_read(struct LDKu8slice ser);
6737
6738 LDKCVec_u8Z UpdateFailMalformedHTLC_write(const struct LDKUpdateFailMalformedHTLC *obj);
6739
6740 struct LDKUpdateFailMalformedHTLC UpdateFailMalformedHTLC_read(struct LDKu8slice ser);
6741
6742 LDKCVec_u8Z UpdateFee_write(const struct LDKUpdateFee *obj);
6743
6744 struct LDKUpdateFee UpdateFee_read(struct LDKu8slice ser);
6745
6746 LDKCVec_u8Z UpdateFulfillHTLC_write(const struct LDKUpdateFulfillHTLC *obj);
6747
6748 struct LDKUpdateFulfillHTLC UpdateFulfillHTLC_read(struct LDKu8slice ser);
6749
6750 LDKCVec_u8Z UpdateAddHTLC_write(const struct LDKUpdateAddHTLC *obj);
6751
6752 struct LDKUpdateAddHTLC UpdateAddHTLC_read(struct LDKu8slice ser);
6753
6754 LDKCVec_u8Z Ping_write(const struct LDKPing *obj);
6755
6756 LDKCResult_PingDecodeErrorZ Ping_read(struct LDKu8slice ser);
6757
6758 LDKCVec_u8Z Pong_write(const struct LDKPong *obj);
6759
6760 LDKCResult_PongDecodeErrorZ Pong_read(struct LDKu8slice ser);
6761
6762 LDKCVec_u8Z UnsignedChannelAnnouncement_write(const struct LDKUnsignedChannelAnnouncement *obj);
6763
6764 LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ UnsignedChannelAnnouncement_read(struct LDKu8slice ser);
6765
6766 LDKCVec_u8Z ChannelAnnouncement_write(const struct LDKChannelAnnouncement *obj);
6767
6768 struct LDKChannelAnnouncement ChannelAnnouncement_read(struct LDKu8slice ser);
6769
6770 LDKCVec_u8Z UnsignedChannelUpdate_write(const struct LDKUnsignedChannelUpdate *obj);
6771
6772 LDKCResult_UnsignedChannelUpdateDecodeErrorZ UnsignedChannelUpdate_read(struct LDKu8slice ser);
6773
6774 LDKCVec_u8Z ChannelUpdate_write(const struct LDKChannelUpdate *obj);
6775
6776 struct LDKChannelUpdate ChannelUpdate_read(struct LDKu8slice ser);
6777
6778 LDKCVec_u8Z ErrorMessage_write(const struct LDKErrorMessage *obj);
6779
6780 LDKCResult_ErrorMessageDecodeErrorZ ErrorMessage_read(struct LDKu8slice ser);
6781
6782 LDKCVec_u8Z UnsignedNodeAnnouncement_write(const struct LDKUnsignedNodeAnnouncement *obj);
6783
6784 LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ UnsignedNodeAnnouncement_read(struct LDKu8slice ser);
6785
6786 LDKCVec_u8Z NodeAnnouncement_write(const struct LDKNodeAnnouncement *obj);
6787
6788 struct LDKNodeAnnouncement NodeAnnouncement_read(struct LDKu8slice ser);
6789
6790 LDKCResult_QueryShortChannelIdsDecodeErrorZ QueryShortChannelIds_read(struct LDKu8slice ser);
6791
6792 LDKCVec_u8Z QueryShortChannelIds_write(const struct LDKQueryShortChannelIds *obj);
6793
6794 LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ ReplyShortChannelIdsEnd_read(struct LDKu8slice ser);
6795
6796 LDKCVec_u8Z ReplyShortChannelIdsEnd_write(const struct LDKReplyShortChannelIdsEnd *obj);
6797
6798 LDKCResult_QueryChannelRangeDecodeErrorZ QueryChannelRange_read(struct LDKu8slice ser);
6799
6800 LDKCVec_u8Z QueryChannelRange_write(const struct LDKQueryChannelRange *obj);
6801
6802 LDKCResult_ReplyChannelRangeDecodeErrorZ ReplyChannelRange_read(struct LDKu8slice ser);
6803
6804 LDKCVec_u8Z ReplyChannelRange_write(const struct LDKReplyChannelRange *obj);
6805
6806 LDKCResult_GossipTimestampFilterDecodeErrorZ GossipTimestampFilter_read(struct LDKu8slice ser);
6807
6808 LDKCVec_u8Z GossipTimestampFilter_write(const struct LDKGossipTimestampFilter *obj);
6809
6810 void MessageHandler_free(struct LDKMessageHandler this_ptr);
6811
6812 /**
6813  * A message handler which handles messages specific to channels. Usually this is just a
6814  * ChannelManager object.
6815  */
6816 const struct LDKChannelMessageHandler *MessageHandler_get_chan_handler(const struct LDKMessageHandler *this_ptr);
6817
6818 /**
6819  * A message handler which handles messages specific to channels. Usually this is just a
6820  * ChannelManager object.
6821  */
6822 void MessageHandler_set_chan_handler(struct LDKMessageHandler *this_ptr, struct LDKChannelMessageHandler val);
6823
6824 /**
6825  * A message handler which handles messages updating our knowledge of the network channel
6826  * graph. Usually this is just a NetGraphMsgHandlerMonitor object.
6827  */
6828 const struct LDKRoutingMessageHandler *MessageHandler_get_route_handler(const struct LDKMessageHandler *this_ptr);
6829
6830 /**
6831  * A message handler which handles messages updating our knowledge of the network channel
6832  * graph. Usually this is just a NetGraphMsgHandlerMonitor object.
6833  */
6834 void MessageHandler_set_route_handler(struct LDKMessageHandler *this_ptr, struct LDKRoutingMessageHandler val);
6835
6836 MUST_USE_RES struct LDKMessageHandler MessageHandler_new(struct LDKChannelMessageHandler chan_handler_arg, struct LDKRoutingMessageHandler route_handler_arg);
6837
6838 struct LDKSocketDescriptor SocketDescriptor_clone(const struct LDKSocketDescriptor *orig);
6839
6840 /**
6841  * Calls the free function if one is set
6842  */
6843 void SocketDescriptor_free(struct LDKSocketDescriptor this_ptr);
6844
6845 void PeerHandleError_free(struct LDKPeerHandleError this_ptr);
6846
6847 /**
6848  * Used to indicate that we probably can't make any future connections to this peer, implying
6849  * we should go ahead and force-close any channels we have with it.
6850  */
6851 bool PeerHandleError_get_no_connection_possible(const struct LDKPeerHandleError *this_ptr);
6852
6853 /**
6854  * Used to indicate that we probably can't make any future connections to this peer, implying
6855  * we should go ahead and force-close any channels we have with it.
6856  */
6857 void PeerHandleError_set_no_connection_possible(struct LDKPeerHandleError *this_ptr, bool val);
6858
6859 MUST_USE_RES struct LDKPeerHandleError PeerHandleError_new(bool no_connection_possible_arg);
6860
6861 void PeerManager_free(struct LDKPeerManager this_ptr);
6862
6863 /**
6864  * Constructs a new PeerManager with the given message handlers and node_id secret key
6865  * ephemeral_random_data is used to derive per-connection ephemeral keys and must be
6866  * cryptographically secure random bytes.
6867  */
6868 MUST_USE_RES struct LDKPeerManager PeerManager_new(struct LDKMessageHandler message_handler, struct LDKSecretKey our_node_secret, const uint8_t (*ephemeral_random_data)[32], struct LDKLogger logger);
6869
6870 /**
6871  * Get the list of node ids for peers which have completed the initial handshake.
6872  *
6873  * For outbound connections, this will be the same as the their_node_id parameter passed in to
6874  * new_outbound_connection, however entries will only appear once the initial handshake has
6875  * completed and we are sure the remote peer has the private key for the given node_id.
6876  */
6877 MUST_USE_RES LDKCVec_PublicKeyZ PeerManager_get_peer_node_ids(const struct LDKPeerManager *this_arg);
6878
6879 /**
6880  * Indicates a new outbound connection has been established to a node with the given node_id.
6881  * Note that if an Err is returned here you MUST NOT call socket_disconnected for the new
6882  * descriptor but must disconnect the connection immediately.
6883  *
6884  * Returns a small number of bytes to send to the remote node (currently always 50).
6885  *
6886  * Panics if descriptor is duplicative with some other descriptor which has not yet had a
6887  * socket_disconnected().
6888  */
6889 MUST_USE_RES LDKCResult_CVec_u8ZPeerHandleErrorZ PeerManager_new_outbound_connection(const struct LDKPeerManager *this_arg, struct LDKPublicKey their_node_id, struct LDKSocketDescriptor descriptor);
6890
6891 /**
6892  * Indicates a new inbound connection has been established.
6893  *
6894  * May refuse the connection by returning an Err, but will never write bytes to the remote end
6895  * (outbound connector always speaks first). Note that if an Err is returned here you MUST NOT
6896  * call socket_disconnected for the new descriptor but must disconnect the connection
6897  * immediately.
6898  *
6899  * Panics if descriptor is duplicative with some other descriptor which has not yet had
6900  * socket_disconnected called.
6901  */
6902 MUST_USE_RES LDKCResult_NonePeerHandleErrorZ PeerManager_new_inbound_connection(const struct LDKPeerManager *this_arg, struct LDKSocketDescriptor descriptor);
6903
6904 /**
6905  * Indicates that there is room to write data to the given socket descriptor.
6906  *
6907  * May return an Err to indicate that the connection should be closed.
6908  *
6909  * Will most likely call send_data on the descriptor passed in (or the descriptor handed into
6910  * new_*\\_connection) before returning. Thus, be very careful with reentrancy issues! The
6911  * invariants around calling write_buffer_space_avail in case a write did not fully complete
6912  * must still hold - be ready to call write_buffer_space_avail again if a write call generated
6913  * here isn't sufficient! Panics if the descriptor was not previously registered in a
6914  * new_\\*_connection event.
6915  */
6916 MUST_USE_RES LDKCResult_NonePeerHandleErrorZ PeerManager_write_buffer_space_avail(const struct LDKPeerManager *this_arg, struct LDKSocketDescriptor *descriptor);
6917
6918 /**
6919  * Indicates that data was read from the given socket descriptor.
6920  *
6921  * May return an Err to indicate that the connection should be closed.
6922  *
6923  * Will *not* call back into send_data on any descriptors to avoid reentrancy complexity.
6924  * Thus, however, you almost certainly want to call process_events() after any read_event to
6925  * generate send_data calls to handle responses.
6926  *
6927  * If Ok(true) is returned, further read_events should not be triggered until a send_data call
6928  * on this file descriptor has resume_read set (preventing DoS issues in the send buffer).
6929  *
6930  * Panics if the descriptor was not previously registered in a new_*_connection event.
6931  */
6932 MUST_USE_RES LDKCResult_boolPeerHandleErrorZ PeerManager_read_event(const struct LDKPeerManager *this_arg, struct LDKSocketDescriptor *peer_descriptor, struct LDKu8slice data);
6933
6934 /**
6935  * Checks for any events generated by our handlers and processes them. Includes sending most
6936  * response messages as well as messages generated by calls to handler functions directly (eg
6937  * functions like ChannelManager::process_pending_htlc_forward or send_payment).
6938  */
6939 void PeerManager_process_events(const struct LDKPeerManager *this_arg);
6940
6941 /**
6942  * Indicates that the given socket descriptor's connection is now closed.
6943  *
6944  * This must only be called if the socket has been disconnected by the peer or your own
6945  * decision to disconnect it and must NOT be called in any case where other parts of this
6946  * library (eg PeerHandleError, explicit disconnect_socket calls) instruct you to disconnect
6947  * the peer.
6948  *
6949  * Panics if the descriptor was not previously registered in a successful new_*_connection event.
6950  */
6951 void PeerManager_socket_disconnected(const struct LDKPeerManager *this_arg, const struct LDKSocketDescriptor *descriptor);
6952
6953 /**
6954  * This function should be called roughly once every 30 seconds.
6955  * It will send pings to each peer and disconnect those which did not respond to the last round of pings.
6956  * Will most likely call send_data on all of the registered descriptors, thus, be very careful with reentrancy issues!
6957  */
6958 void PeerManager_timer_tick_occured(const struct LDKPeerManager *this_arg);
6959
6960 /**
6961  * Build the commitment secret from the seed and the commitment number
6962  */
6963 struct LDKThirtyTwoBytes build_commitment_secret(const uint8_t (*commitment_seed)[32], uint64_t idx);
6964
6965 /**
6966  * Derives a per-commitment-transaction private key (eg an htlc key or delayed_payment key)
6967  * from the base secret and the per_commitment_point.
6968  *
6969  * Note that this is infallible iff we trust that at least one of the two input keys are randomly
6970  * generated (ie our own).
6971  */
6972 LDKCResult_SecretKeySecpErrorZ derive_private_key(struct LDKPublicKey per_commitment_point, const uint8_t (*base_secret)[32]);
6973
6974 /**
6975  * Derives a per-commitment-transaction public key (eg an htlc key or a delayed_payment key)
6976  * from the base point and the per_commitment_key. This is the public equivalent of
6977  * derive_private_key - using only public keys to derive a public key instead of private keys.
6978  *
6979  * Note that this is infallible iff we trust that at least one of the two input keys are randomly
6980  * generated (ie our own).
6981  */
6982 LDKCResult_PublicKeySecpErrorZ derive_public_key(struct LDKPublicKey per_commitment_point, struct LDKPublicKey base_point);
6983
6984 /**
6985  * Derives a per-commitment-transaction revocation key from its constituent parts.
6986  *
6987  * Only the cheating participant owns a valid witness to propagate a revoked
6988  * commitment transaction, thus per_commitment_secret always come from cheater
6989  * and revocation_base_secret always come from punisher, which is the broadcaster
6990  * of the transaction spending with this key knowledge.
6991  *
6992  * Note that this is infallible iff we trust that at least one of the two input keys are randomly
6993  * generated (ie our own).
6994  */
6995 LDKCResult_SecretKeySecpErrorZ derive_private_revocation_key(const uint8_t (*per_commitment_secret)[32], const uint8_t (*countersignatory_revocation_base_secret)[32]);
6996
6997 /**
6998  * Derives a per-commitment-transaction revocation public key from its constituent parts. This is
6999  * the public equivalend of derive_private_revocation_key - using only public keys to derive a
7000  * public key instead of private keys.
7001  *
7002  * Only the cheating participant owns a valid witness to propagate a revoked
7003  * commitment transaction, thus per_commitment_point always come from cheater
7004  * and revocation_base_point always come from punisher, which is the broadcaster
7005  * of the transaction spending with this key knowledge.
7006  *
7007  * Note that this is infallible iff we trust that at least one of the two input keys are randomly
7008  * generated (ie our own).
7009  */
7010 LDKCResult_PublicKeySecpErrorZ derive_public_revocation_key(struct LDKPublicKey per_commitment_point, struct LDKPublicKey countersignatory_revocation_base_point);
7011
7012 void TxCreationKeys_free(struct LDKTxCreationKeys this_ptr);
7013
7014 struct LDKTxCreationKeys TxCreationKeys_clone(const struct LDKTxCreationKeys *orig);
7015
7016 /**
7017  * The broadcaster's per-commitment public key which was used to derive the other keys.
7018  */
7019 struct LDKPublicKey TxCreationKeys_get_per_commitment_point(const struct LDKTxCreationKeys *this_ptr);
7020
7021 /**
7022  * The broadcaster's per-commitment public key which was used to derive the other keys.
7023  */
7024 void TxCreationKeys_set_per_commitment_point(struct LDKTxCreationKeys *this_ptr, struct LDKPublicKey val);
7025
7026 /**
7027  * The revocation key which is used to allow the broadcaster of the commitment
7028  * transaction to provide their counterparty the ability to punish them if they broadcast
7029  * an old state.
7030  */
7031 struct LDKPublicKey TxCreationKeys_get_revocation_key(const struct LDKTxCreationKeys *this_ptr);
7032
7033 /**
7034  * The revocation key which is used to allow the broadcaster of the commitment
7035  * transaction to provide their counterparty the ability to punish them if they broadcast
7036  * an old state.
7037  */
7038 void TxCreationKeys_set_revocation_key(struct LDKTxCreationKeys *this_ptr, struct LDKPublicKey val);
7039
7040 /**
7041  * Broadcaster's HTLC Key
7042  */
7043 struct LDKPublicKey TxCreationKeys_get_broadcaster_htlc_key(const struct LDKTxCreationKeys *this_ptr);
7044
7045 /**
7046  * Broadcaster's HTLC Key
7047  */
7048 void TxCreationKeys_set_broadcaster_htlc_key(struct LDKTxCreationKeys *this_ptr, struct LDKPublicKey val);
7049
7050 /**
7051  * Countersignatory's HTLC Key
7052  */
7053 struct LDKPublicKey TxCreationKeys_get_countersignatory_htlc_key(const struct LDKTxCreationKeys *this_ptr);
7054
7055 /**
7056  * Countersignatory's HTLC Key
7057  */
7058 void TxCreationKeys_set_countersignatory_htlc_key(struct LDKTxCreationKeys *this_ptr, struct LDKPublicKey val);
7059
7060 /**
7061  * Broadcaster's Payment Key (which isn't allowed to be spent from for some delay)
7062  */
7063 struct LDKPublicKey TxCreationKeys_get_broadcaster_delayed_payment_key(const struct LDKTxCreationKeys *this_ptr);
7064
7065 /**
7066  * Broadcaster's Payment Key (which isn't allowed to be spent from for some delay)
7067  */
7068 void TxCreationKeys_set_broadcaster_delayed_payment_key(struct LDKTxCreationKeys *this_ptr, struct LDKPublicKey val);
7069
7070 MUST_USE_RES struct LDKTxCreationKeys TxCreationKeys_new(struct LDKPublicKey per_commitment_point_arg, struct LDKPublicKey revocation_key_arg, struct LDKPublicKey broadcaster_htlc_key_arg, struct LDKPublicKey countersignatory_htlc_key_arg, struct LDKPublicKey broadcaster_delayed_payment_key_arg);
7071
7072 LDKCVec_u8Z TxCreationKeys_write(const struct LDKTxCreationKeys *obj);
7073
7074 struct LDKTxCreationKeys TxCreationKeys_read(struct LDKu8slice ser);
7075
7076 void ChannelPublicKeys_free(struct LDKChannelPublicKeys this_ptr);
7077
7078 struct LDKChannelPublicKeys ChannelPublicKeys_clone(const struct LDKChannelPublicKeys *orig);
7079
7080 /**
7081  * The public key which is used to sign all commitment transactions, as it appears in the
7082  * on-chain channel lock-in 2-of-2 multisig output.
7083  */
7084 struct LDKPublicKey ChannelPublicKeys_get_funding_pubkey(const struct LDKChannelPublicKeys *this_ptr);
7085
7086 /**
7087  * The public key which is used to sign all commitment transactions, as it appears in the
7088  * on-chain channel lock-in 2-of-2 multisig output.
7089  */
7090 void ChannelPublicKeys_set_funding_pubkey(struct LDKChannelPublicKeys *this_ptr, struct LDKPublicKey val);
7091
7092 /**
7093  * The base point which is used (with derive_public_revocation_key) to derive per-commitment
7094  * revocation keys. This is combined with the per-commitment-secret generated by the
7095  * counterparty to create a secret which the counterparty can reveal to revoke previous
7096  * states.
7097  */
7098 struct LDKPublicKey ChannelPublicKeys_get_revocation_basepoint(const struct LDKChannelPublicKeys *this_ptr);
7099
7100 /**
7101  * The base point which is used (with derive_public_revocation_key) to derive per-commitment
7102  * revocation keys. This is combined with the per-commitment-secret generated by the
7103  * counterparty to create a secret which the counterparty can reveal to revoke previous
7104  * states.
7105  */
7106 void ChannelPublicKeys_set_revocation_basepoint(struct LDKChannelPublicKeys *this_ptr, struct LDKPublicKey val);
7107
7108 /**
7109  * The public key on which the non-broadcaster (ie the countersignatory) receives an immediately
7110  * spendable primary channel balance on the broadcaster's commitment transaction. This key is
7111  * static across every commitment transaction.
7112  */
7113 struct LDKPublicKey ChannelPublicKeys_get_payment_point(const struct LDKChannelPublicKeys *this_ptr);
7114
7115 /**
7116  * The public key on which the non-broadcaster (ie the countersignatory) receives an immediately
7117  * spendable primary channel balance on the broadcaster's commitment transaction. This key is
7118  * static across every commitment transaction.
7119  */
7120 void ChannelPublicKeys_set_payment_point(struct LDKChannelPublicKeys *this_ptr, struct LDKPublicKey val);
7121
7122 /**
7123  * The base point which is used (with derive_public_key) to derive a per-commitment payment
7124  * public key which receives non-HTLC-encumbered funds which are only available for spending
7125  * after some delay (or can be claimed via the revocation path).
7126  */
7127 struct LDKPublicKey ChannelPublicKeys_get_delayed_payment_basepoint(const struct LDKChannelPublicKeys *this_ptr);
7128
7129 /**
7130  * The base point which is used (with derive_public_key) to derive a per-commitment payment
7131  * public key which receives non-HTLC-encumbered funds which are only available for spending
7132  * after some delay (or can be claimed via the revocation path).
7133  */
7134 void ChannelPublicKeys_set_delayed_payment_basepoint(struct LDKChannelPublicKeys *this_ptr, struct LDKPublicKey val);
7135
7136 /**
7137  * The base point which is used (with derive_public_key) to derive a per-commitment public key
7138  * which is used to encumber HTLC-in-flight outputs.
7139  */
7140 struct LDKPublicKey ChannelPublicKeys_get_htlc_basepoint(const struct LDKChannelPublicKeys *this_ptr);
7141
7142 /**
7143  * The base point which is used (with derive_public_key) to derive a per-commitment public key
7144  * which is used to encumber HTLC-in-flight outputs.
7145  */
7146 void ChannelPublicKeys_set_htlc_basepoint(struct LDKChannelPublicKeys *this_ptr, struct LDKPublicKey val);
7147
7148 MUST_USE_RES struct LDKChannelPublicKeys ChannelPublicKeys_new(struct LDKPublicKey funding_pubkey_arg, struct LDKPublicKey revocation_basepoint_arg, struct LDKPublicKey payment_point_arg, struct LDKPublicKey delayed_payment_basepoint_arg, struct LDKPublicKey htlc_basepoint_arg);
7149
7150 LDKCVec_u8Z ChannelPublicKeys_write(const struct LDKChannelPublicKeys *obj);
7151
7152 struct LDKChannelPublicKeys ChannelPublicKeys_read(struct LDKu8slice ser);
7153
7154 /**
7155  * Create per-state keys from channel base points and the per-commitment point.
7156  * Key set is asymmetric and can't be used as part of counter-signatory set of transactions.
7157  */
7158 MUST_USE_RES LDKCResult_TxCreationKeysSecpErrorZ TxCreationKeys_derive_new(struct LDKPublicKey per_commitment_point, struct LDKPublicKey broadcaster_delayed_payment_base, struct LDKPublicKey broadcaster_htlc_base, struct LDKPublicKey countersignatory_revocation_base, struct LDKPublicKey countersignatory_htlc_base);
7159
7160 /**
7161  * Generate per-state keys from channel static keys.
7162  * Key set is asymmetric and can't be used as part of counter-signatory set of transactions.
7163  */
7164 MUST_USE_RES LDKCResult_TxCreationKeysSecpErrorZ TxCreationKeys_from_channel_static_keys(struct LDKPublicKey per_commitment_point, const struct LDKChannelPublicKeys *broadcaster_keys, const struct LDKChannelPublicKeys *countersignatory_keys);
7165
7166 /**
7167  * A script either spendable by the revocation
7168  * key or the broadcaster_delayed_payment_key and satisfying the relative-locktime OP_CSV constrain.
7169  * Encumbering a `to_holder` output on a commitment transaction or 2nd-stage HTLC transactions.
7170  */
7171 LDKCVec_u8Z get_revokeable_redeemscript(struct LDKPublicKey revocation_key, uint16_t contest_delay, struct LDKPublicKey broadcaster_delayed_payment_key);
7172
7173 void HTLCOutputInCommitment_free(struct LDKHTLCOutputInCommitment this_ptr);
7174
7175 struct LDKHTLCOutputInCommitment HTLCOutputInCommitment_clone(const struct LDKHTLCOutputInCommitment *orig);
7176
7177 /**
7178  * Whether the HTLC was \"offered\" (ie outbound in relation to this commitment transaction).
7179  * Note that this is not the same as whether it is ountbound *from us*. To determine that you
7180  * need to compare this value to whether the commitment transaction in question is that of
7181  * the counterparty or our own.
7182  */
7183 bool HTLCOutputInCommitment_get_offered(const struct LDKHTLCOutputInCommitment *this_ptr);
7184
7185 /**
7186  * Whether the HTLC was \"offered\" (ie outbound in relation to this commitment transaction).
7187  * Note that this is not the same as whether it is ountbound *from us*. To determine that you
7188  * need to compare this value to whether the commitment transaction in question is that of
7189  * the counterparty or our own.
7190  */
7191 void HTLCOutputInCommitment_set_offered(struct LDKHTLCOutputInCommitment *this_ptr, bool val);
7192
7193 /**
7194  * The value, in msat, of the HTLC. The value as it appears in the commitment transaction is
7195  * this divided by 1000.
7196  */
7197 uint64_t HTLCOutputInCommitment_get_amount_msat(const struct LDKHTLCOutputInCommitment *this_ptr);
7198
7199 /**
7200  * The value, in msat, of the HTLC. The value as it appears in the commitment transaction is
7201  * this divided by 1000.
7202  */
7203 void HTLCOutputInCommitment_set_amount_msat(struct LDKHTLCOutputInCommitment *this_ptr, uint64_t val);
7204
7205 /**
7206  * The CLTV lock-time at which this HTLC expires.
7207  */
7208 uint32_t HTLCOutputInCommitment_get_cltv_expiry(const struct LDKHTLCOutputInCommitment *this_ptr);
7209
7210 /**
7211  * The CLTV lock-time at which this HTLC expires.
7212  */
7213 void HTLCOutputInCommitment_set_cltv_expiry(struct LDKHTLCOutputInCommitment *this_ptr, uint32_t val);
7214
7215 /**
7216  * The hash of the preimage which unlocks this HTLC.
7217  */
7218 const uint8_t (*HTLCOutputInCommitment_get_payment_hash(const struct LDKHTLCOutputInCommitment *this_ptr))[32];
7219
7220 /**
7221  * The hash of the preimage which unlocks this HTLC.
7222  */
7223 void HTLCOutputInCommitment_set_payment_hash(struct LDKHTLCOutputInCommitment *this_ptr, struct LDKThirtyTwoBytes val);
7224
7225 LDKCVec_u8Z HTLCOutputInCommitment_write(const struct LDKHTLCOutputInCommitment *obj);
7226
7227 struct LDKHTLCOutputInCommitment HTLCOutputInCommitment_read(struct LDKu8slice ser);
7228
7229 /**
7230  * Gets the witness redeemscript for an HTLC output in a commitment transaction. Note that htlc
7231  * does not need to have its previous_output_index filled.
7232  */
7233 LDKCVec_u8Z get_htlc_redeemscript(const struct LDKHTLCOutputInCommitment *htlc, const struct LDKTxCreationKeys *keys);
7234
7235 /**
7236  * Gets the redeemscript for a funding output from the two funding public keys.
7237  * Note that the order of funding public keys does not matter.
7238  */
7239 LDKCVec_u8Z make_funding_redeemscript(struct LDKPublicKey broadcaster, struct LDKPublicKey countersignatory);
7240
7241 /**
7242  * panics if htlc.transaction_output_index.is_none()!
7243  */
7244 struct LDKTransaction build_htlc_transaction(const uint8_t (*prev_hash)[32], uint32_t feerate_per_kw, uint16_t contest_delay, const struct LDKHTLCOutputInCommitment *htlc, struct LDKPublicKey broadcaster_delayed_payment_key, struct LDKPublicKey revocation_key);
7245
7246 void ChannelTransactionParameters_free(struct LDKChannelTransactionParameters this_ptr);
7247
7248 struct LDKChannelTransactionParameters ChannelTransactionParameters_clone(const struct LDKChannelTransactionParameters *orig);
7249
7250 /**
7251  * Holder public keys
7252  */
7253 struct LDKChannelPublicKeys ChannelTransactionParameters_get_holder_pubkeys(const struct LDKChannelTransactionParameters *this_ptr);
7254
7255 /**
7256  * Holder public keys
7257  */
7258 void ChannelTransactionParameters_set_holder_pubkeys(struct LDKChannelTransactionParameters *this_ptr, struct LDKChannelPublicKeys val);
7259
7260 /**
7261  * The contest delay selected by the holder, which applies to counterparty-broadcast transactions
7262  */
7263 uint16_t ChannelTransactionParameters_get_holder_selected_contest_delay(const struct LDKChannelTransactionParameters *this_ptr);
7264
7265 /**
7266  * The contest delay selected by the holder, which applies to counterparty-broadcast transactions
7267  */
7268 void ChannelTransactionParameters_set_holder_selected_contest_delay(struct LDKChannelTransactionParameters *this_ptr, uint16_t val);
7269
7270 /**
7271  * Whether the holder is the initiator of this channel.
7272  * This is an input to the commitment number obscure factor computation.
7273  */
7274 bool ChannelTransactionParameters_get_is_outbound_from_holder(const struct LDKChannelTransactionParameters *this_ptr);
7275
7276 /**
7277  * Whether the holder is the initiator of this channel.
7278  * This is an input to the commitment number obscure factor computation.
7279  */
7280 void ChannelTransactionParameters_set_is_outbound_from_holder(struct LDKChannelTransactionParameters *this_ptr, bool val);
7281
7282 /**
7283  * The late-bound counterparty channel transaction parameters.
7284  * These parameters are populated at the point in the protocol where the counterparty provides them.
7285  */
7286 struct LDKCounterpartyChannelTransactionParameters ChannelTransactionParameters_get_counterparty_parameters(const struct LDKChannelTransactionParameters *this_ptr);
7287
7288 /**
7289  * The late-bound counterparty channel transaction parameters.
7290  * These parameters are populated at the point in the protocol where the counterparty provides them.
7291  */
7292 void ChannelTransactionParameters_set_counterparty_parameters(struct LDKChannelTransactionParameters *this_ptr, struct LDKCounterpartyChannelTransactionParameters val);
7293
7294 /**
7295  * The late-bound funding outpoint
7296  */
7297 struct LDKOutPoint ChannelTransactionParameters_get_funding_outpoint(const struct LDKChannelTransactionParameters *this_ptr);
7298
7299 /**
7300  * The late-bound funding outpoint
7301  */
7302 void ChannelTransactionParameters_set_funding_outpoint(struct LDKChannelTransactionParameters *this_ptr, struct LDKOutPoint val);
7303
7304 MUST_USE_RES struct LDKChannelTransactionParameters ChannelTransactionParameters_new(struct LDKChannelPublicKeys holder_pubkeys_arg, uint16_t holder_selected_contest_delay_arg, bool is_outbound_from_holder_arg, struct LDKCounterpartyChannelTransactionParameters counterparty_parameters_arg, struct LDKOutPoint funding_outpoint_arg);
7305
7306 void CounterpartyChannelTransactionParameters_free(struct LDKCounterpartyChannelTransactionParameters this_ptr);
7307
7308 struct LDKCounterpartyChannelTransactionParameters CounterpartyChannelTransactionParameters_clone(const struct LDKCounterpartyChannelTransactionParameters *orig);
7309
7310 /**
7311  * Counter-party public keys
7312  */
7313 struct LDKChannelPublicKeys CounterpartyChannelTransactionParameters_get_pubkeys(const struct LDKCounterpartyChannelTransactionParameters *this_ptr);
7314
7315 /**
7316  * Counter-party public keys
7317  */
7318 void CounterpartyChannelTransactionParameters_set_pubkeys(struct LDKCounterpartyChannelTransactionParameters *this_ptr, struct LDKChannelPublicKeys val);
7319
7320 /**
7321  * The contest delay selected by the counterparty, which applies to holder-broadcast transactions
7322  */
7323 uint16_t CounterpartyChannelTransactionParameters_get_selected_contest_delay(const struct LDKCounterpartyChannelTransactionParameters *this_ptr);
7324
7325 /**
7326  * The contest delay selected by the counterparty, which applies to holder-broadcast transactions
7327  */
7328 void CounterpartyChannelTransactionParameters_set_selected_contest_delay(struct LDKCounterpartyChannelTransactionParameters *this_ptr, uint16_t val);
7329
7330 MUST_USE_RES struct LDKCounterpartyChannelTransactionParameters CounterpartyChannelTransactionParameters_new(struct LDKChannelPublicKeys pubkeys_arg, uint16_t selected_contest_delay_arg);
7331
7332 /**
7333  * Whether the late bound parameters are populated.
7334  */
7335 MUST_USE_RES bool ChannelTransactionParameters_is_populated(const struct LDKChannelTransactionParameters *this_arg);
7336
7337 /**
7338  * Convert the holder/counterparty parameters to broadcaster/countersignatory-organized parameters,
7339  * given that the holder is the broadcaster.
7340  *
7341  * self.is_populated() must be true before calling this function.
7342  */
7343 MUST_USE_RES struct LDKDirectedChannelTransactionParameters ChannelTransactionParameters_as_holder_broadcastable(const struct LDKChannelTransactionParameters *this_arg);
7344
7345 /**
7346  * Convert the holder/counterparty parameters to broadcaster/countersignatory-organized parameters,
7347  * given that the counterparty is the broadcaster.
7348  *
7349  * self.is_populated() must be true before calling this function.
7350  */
7351 MUST_USE_RES struct LDKDirectedChannelTransactionParameters ChannelTransactionParameters_as_counterparty_broadcastable(const struct LDKChannelTransactionParameters *this_arg);
7352
7353 LDKCVec_u8Z CounterpartyChannelTransactionParameters_write(const struct LDKCounterpartyChannelTransactionParameters *obj);
7354
7355 struct LDKCounterpartyChannelTransactionParameters CounterpartyChannelTransactionParameters_read(struct LDKu8slice ser);
7356
7357 LDKCVec_u8Z ChannelTransactionParameters_write(const struct LDKChannelTransactionParameters *obj);
7358
7359 struct LDKChannelTransactionParameters ChannelTransactionParameters_read(struct LDKu8slice ser);
7360
7361 void DirectedChannelTransactionParameters_free(struct LDKDirectedChannelTransactionParameters this_ptr);
7362
7363 /**
7364  * Get the channel pubkeys for the broadcaster
7365  */
7366 MUST_USE_RES struct LDKChannelPublicKeys DirectedChannelTransactionParameters_broadcaster_pubkeys(const struct LDKDirectedChannelTransactionParameters *this_arg);
7367
7368 /**
7369  * Get the channel pubkeys for the countersignatory
7370  */
7371 MUST_USE_RES struct LDKChannelPublicKeys DirectedChannelTransactionParameters_countersignatory_pubkeys(const struct LDKDirectedChannelTransactionParameters *this_arg);
7372
7373 /**
7374  * Get the contest delay applicable to the transactions.
7375  * Note that the contest delay was selected by the countersignatory.
7376  */
7377 MUST_USE_RES uint16_t DirectedChannelTransactionParameters_contest_delay(const struct LDKDirectedChannelTransactionParameters *this_arg);
7378
7379 /**
7380  * Whether the channel is outbound from the broadcaster.
7381  *
7382  * The boolean representing the side that initiated the channel is
7383  * an input to the commitment number obscure factor computation.
7384  */
7385 MUST_USE_RES bool DirectedChannelTransactionParameters_is_outbound(const struct LDKDirectedChannelTransactionParameters *this_arg);
7386
7387 /**
7388  * The funding outpoint
7389  */
7390 MUST_USE_RES struct LDKOutPoint DirectedChannelTransactionParameters_funding_outpoint(const struct LDKDirectedChannelTransactionParameters *this_arg);
7391
7392 void HolderCommitmentTransaction_free(struct LDKHolderCommitmentTransaction this_ptr);
7393
7394 struct LDKHolderCommitmentTransaction HolderCommitmentTransaction_clone(const struct LDKHolderCommitmentTransaction *orig);
7395
7396 /**
7397  * Our counterparty's signature for the transaction
7398  */
7399 struct LDKSignature HolderCommitmentTransaction_get_counterparty_sig(const struct LDKHolderCommitmentTransaction *this_ptr);
7400
7401 /**
7402  * Our counterparty's signature for the transaction
7403  */
7404 void HolderCommitmentTransaction_set_counterparty_sig(struct LDKHolderCommitmentTransaction *this_ptr, struct LDKSignature val);
7405
7406 /**
7407  * All non-dust counterparty HTLC signatures, in the order they appear in the transaction
7408  */
7409 void HolderCommitmentTransaction_set_counterparty_htlc_sigs(struct LDKHolderCommitmentTransaction *this_ptr, LDKCVec_SignatureZ val);
7410
7411 LDKCVec_u8Z HolderCommitmentTransaction_write(const struct LDKHolderCommitmentTransaction *obj);
7412
7413 struct LDKHolderCommitmentTransaction HolderCommitmentTransaction_read(struct LDKu8slice ser);
7414
7415 /**
7416  * Create a new holder transaction with the given counterparty signatures.
7417  * The funding keys are used to figure out which signature should go first when building the transaction for broadcast.
7418  */
7419 MUST_USE_RES struct LDKHolderCommitmentTransaction HolderCommitmentTransaction_new(struct LDKCommitmentTransaction commitment_tx, struct LDKSignature counterparty_sig, LDKCVec_SignatureZ counterparty_htlc_sigs, struct LDKPublicKey holder_funding_key, struct LDKPublicKey counterparty_funding_key);
7420
7421 void BuiltCommitmentTransaction_free(struct LDKBuiltCommitmentTransaction this_ptr);
7422
7423 struct LDKBuiltCommitmentTransaction BuiltCommitmentTransaction_clone(const struct LDKBuiltCommitmentTransaction *orig);
7424
7425 /**
7426  * The commitment transaction
7427  */
7428 struct LDKTransaction BuiltCommitmentTransaction_get_transaction(const struct LDKBuiltCommitmentTransaction *this_ptr);
7429
7430 /**
7431  * The commitment transaction
7432  */
7433 void BuiltCommitmentTransaction_set_transaction(struct LDKBuiltCommitmentTransaction *this_ptr, struct LDKTransaction val);
7434
7435 /**
7436  * The txid for the commitment transaction.
7437  *
7438  * This is provided as a performance optimization, instead of calling transaction.txid()
7439  * multiple times.
7440  */
7441 const uint8_t (*BuiltCommitmentTransaction_get_txid(const struct LDKBuiltCommitmentTransaction *this_ptr))[32];
7442
7443 /**
7444  * The txid for the commitment transaction.
7445  *
7446  * This is provided as a performance optimization, instead of calling transaction.txid()
7447  * multiple times.
7448  */
7449 void BuiltCommitmentTransaction_set_txid(struct LDKBuiltCommitmentTransaction *this_ptr, struct LDKThirtyTwoBytes val);
7450
7451 MUST_USE_RES struct LDKBuiltCommitmentTransaction BuiltCommitmentTransaction_new(struct LDKTransaction transaction_arg, struct LDKThirtyTwoBytes txid_arg);
7452
7453 LDKCVec_u8Z BuiltCommitmentTransaction_write(const struct LDKBuiltCommitmentTransaction *obj);
7454
7455 struct LDKBuiltCommitmentTransaction BuiltCommitmentTransaction_read(struct LDKu8slice ser);
7456
7457 /**
7458  * Get the SIGHASH_ALL sighash value of the transaction.
7459  *
7460  * This can be used to verify a signature.
7461  */
7462 MUST_USE_RES struct LDKThirtyTwoBytes BuiltCommitmentTransaction_get_sighash_all(const struct LDKBuiltCommitmentTransaction *this_arg, struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
7463
7464 /**
7465  * Sign a transaction, either because we are counter-signing the counterparty's transaction or
7466  * because we are about to broadcast a holder transaction.
7467  */
7468 MUST_USE_RES struct LDKSignature BuiltCommitmentTransaction_sign(const struct LDKBuiltCommitmentTransaction *this_arg, const uint8_t (*funding_key)[32], struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
7469
7470 void CommitmentTransaction_free(struct LDKCommitmentTransaction this_ptr);
7471
7472 struct LDKCommitmentTransaction CommitmentTransaction_clone(const struct LDKCommitmentTransaction *orig);
7473
7474 LDKCVec_u8Z CommitmentTransaction_write(const struct LDKCommitmentTransaction *obj);
7475
7476 struct LDKCommitmentTransaction CommitmentTransaction_read(struct LDKu8slice ser);
7477
7478 /**
7479  * The backwards-counting commitment number
7480  */
7481 MUST_USE_RES uint64_t CommitmentTransaction_commitment_number(const struct LDKCommitmentTransaction *this_arg);
7482
7483 /**
7484  * The value to be sent to the broadcaster
7485  */
7486 MUST_USE_RES uint64_t CommitmentTransaction_to_broadcaster_value_sat(const struct LDKCommitmentTransaction *this_arg);
7487
7488 /**
7489  * The value to be sent to the counterparty
7490  */
7491 MUST_USE_RES uint64_t CommitmentTransaction_to_countersignatory_value_sat(const struct LDKCommitmentTransaction *this_arg);
7492
7493 /**
7494  * The feerate paid per 1000-weight-unit in this commitment transaction.
7495  */
7496 MUST_USE_RES uint32_t CommitmentTransaction_feerate_per_kw(const struct LDKCommitmentTransaction *this_arg);
7497
7498 /**
7499  * Trust our pre-built transaction and derived transaction creation public keys.
7500  *
7501  * Applies a wrapper which allows access to these fields.
7502  *
7503  * This should only be used if you fully trust the builder of this object.  It should not
7504  *\tbe used by an external signer - instead use the verify function.
7505  */
7506 MUST_USE_RES struct LDKTrustedCommitmentTransaction CommitmentTransaction_trust(const struct LDKCommitmentTransaction *this_arg);
7507
7508 /**
7509  * Verify our pre-built transaction and derived transaction creation public keys.
7510  *
7511  * Applies a wrapper which allows access to these fields.
7512  *
7513  * An external validating signer must call this method before signing
7514  * or using the built transaction.
7515  */
7516 MUST_USE_RES LDKCResult_TrustedCommitmentTransactionNoneZ CommitmentTransaction_verify(const struct LDKCommitmentTransaction *this_arg, const struct LDKDirectedChannelTransactionParameters *channel_parameters, const struct LDKChannelPublicKeys *broadcaster_keys, const struct LDKChannelPublicKeys *countersignatory_keys);
7517
7518 void TrustedCommitmentTransaction_free(struct LDKTrustedCommitmentTransaction this_ptr);
7519
7520 /**
7521  * The transaction ID of the built Bitcoin transaction
7522  */
7523 MUST_USE_RES struct LDKThirtyTwoBytes TrustedCommitmentTransaction_txid(const struct LDKTrustedCommitmentTransaction *this_arg);
7524
7525 /**
7526  * The pre-built Bitcoin commitment transaction
7527  */
7528 MUST_USE_RES struct LDKBuiltCommitmentTransaction TrustedCommitmentTransaction_built_transaction(const struct LDKTrustedCommitmentTransaction *this_arg);
7529
7530 /**
7531  * The pre-calculated transaction creation public keys.
7532  */
7533 MUST_USE_RES struct LDKTxCreationKeys TrustedCommitmentTransaction_keys(const struct LDKTrustedCommitmentTransaction *this_arg);
7534
7535 /**
7536  * Get a signature for each HTLC which was included in the commitment transaction (ie for
7537  * which HTLCOutputInCommitment::transaction_output_index.is_some()).
7538  *
7539  * The returned Vec has one entry for each HTLC, and in the same order.
7540  */
7541 MUST_USE_RES LDKCResult_CVec_SignatureZNoneZ TrustedCommitmentTransaction_get_htlc_sigs(const struct LDKTrustedCommitmentTransaction *this_arg, const uint8_t (*htlc_base_key)[32], const struct LDKDirectedChannelTransactionParameters *channel_parameters);
7542
7543 /**
7544  * Get the transaction number obscure factor
7545  */
7546 uint64_t get_commitment_transaction_number_obscure_factor(struct LDKPublicKey broadcaster_payment_basepoint, struct LDKPublicKey countersignatory_payment_basepoint, bool outbound_from_broadcaster);
7547
7548 void InitFeatures_free(struct LDKInitFeatures this_ptr);
7549
7550 void NodeFeatures_free(struct LDKNodeFeatures this_ptr);
7551
7552 void ChannelFeatures_free(struct LDKChannelFeatures this_ptr);
7553
7554 void RouteHop_free(struct LDKRouteHop this_ptr);
7555
7556 struct LDKRouteHop RouteHop_clone(const struct LDKRouteHop *orig);
7557
7558 /**
7559  * The node_id of the node at this hop.
7560  */
7561 struct LDKPublicKey RouteHop_get_pubkey(const struct LDKRouteHop *this_ptr);
7562
7563 /**
7564  * The node_id of the node at this hop.
7565  */
7566 void RouteHop_set_pubkey(struct LDKRouteHop *this_ptr, struct LDKPublicKey val);
7567
7568 /**
7569  * The node_announcement features of the node at this hop. For the last hop, these may be
7570  * amended to match the features present in the invoice this node generated.
7571  */
7572 struct LDKNodeFeatures RouteHop_get_node_features(const struct LDKRouteHop *this_ptr);
7573
7574 /**
7575  * The node_announcement features of the node at this hop. For the last hop, these may be
7576  * amended to match the features present in the invoice this node generated.
7577  */
7578 void RouteHop_set_node_features(struct LDKRouteHop *this_ptr, struct LDKNodeFeatures val);
7579
7580 /**
7581  * The channel that should be used from the previous hop to reach this node.
7582  */
7583 uint64_t RouteHop_get_short_channel_id(const struct LDKRouteHop *this_ptr);
7584
7585 /**
7586  * The channel that should be used from the previous hop to reach this node.
7587  */
7588 void RouteHop_set_short_channel_id(struct LDKRouteHop *this_ptr, uint64_t val);
7589
7590 /**
7591  * The channel_announcement features of the channel that should be used from the previous hop
7592  * to reach this node.
7593  */
7594 struct LDKChannelFeatures RouteHop_get_channel_features(const struct LDKRouteHop *this_ptr);
7595
7596 /**
7597  * The channel_announcement features of the channel that should be used from the previous hop
7598  * to reach this node.
7599  */
7600 void RouteHop_set_channel_features(struct LDKRouteHop *this_ptr, struct LDKChannelFeatures val);
7601
7602 /**
7603  * The fee taken on this hop. For the last hop, this should be the full value of the payment.
7604  */
7605 uint64_t RouteHop_get_fee_msat(const struct LDKRouteHop *this_ptr);
7606
7607 /**
7608  * The fee taken on this hop. For the last hop, this should be the full value of the payment.
7609  */
7610 void RouteHop_set_fee_msat(struct LDKRouteHop *this_ptr, uint64_t val);
7611
7612 /**
7613  * The CLTV delta added for this hop. For the last hop, this should be the full CLTV value
7614  * expected at the destination, in excess of the current block height.
7615  */
7616 uint32_t RouteHop_get_cltv_expiry_delta(const struct LDKRouteHop *this_ptr);
7617
7618 /**
7619  * The CLTV delta added for this hop. For the last hop, this should be the full CLTV value
7620  * expected at the destination, in excess of the current block height.
7621  */
7622 void RouteHop_set_cltv_expiry_delta(struct LDKRouteHop *this_ptr, uint32_t val);
7623
7624 MUST_USE_RES struct LDKRouteHop RouteHop_new(struct LDKPublicKey pubkey_arg, struct LDKNodeFeatures node_features_arg, uint64_t short_channel_id_arg, struct LDKChannelFeatures channel_features_arg, uint64_t fee_msat_arg, uint32_t cltv_expiry_delta_arg);
7625
7626 void Route_free(struct LDKRoute this_ptr);
7627
7628 struct LDKRoute Route_clone(const struct LDKRoute *orig);
7629
7630 /**
7631  * The list of routes taken for a single (potentially-)multi-part payment. The pubkey of the
7632  * last RouteHop in each path must be the same.
7633  * Each entry represents a list of hops, NOT INCLUDING our own, where the last hop is the
7634  * destination. Thus, this must always be at least length one. While the maximum length of any
7635  * given path is variable, keeping the length of any path to less than 20 should currently
7636  * ensure it is viable.
7637  */
7638 void Route_set_paths(struct LDKRoute *this_ptr, LDKCVec_CVec_RouteHopZZ val);
7639
7640 MUST_USE_RES struct LDKRoute Route_new(LDKCVec_CVec_RouteHopZZ paths_arg);
7641
7642 LDKCVec_u8Z Route_write(const struct LDKRoute *obj);
7643
7644 LDKCResult_RouteDecodeErrorZ Route_read(struct LDKu8slice ser);
7645
7646 void RouteHint_free(struct LDKRouteHint this_ptr);
7647
7648 struct LDKRouteHint RouteHint_clone(const struct LDKRouteHint *orig);
7649
7650 /**
7651  * The node_id of the non-target end of the route
7652  */
7653 struct LDKPublicKey RouteHint_get_src_node_id(const struct LDKRouteHint *this_ptr);
7654
7655 /**
7656  * The node_id of the non-target end of the route
7657  */
7658 void RouteHint_set_src_node_id(struct LDKRouteHint *this_ptr, struct LDKPublicKey val);
7659
7660 /**
7661  * The short_channel_id of this channel
7662  */
7663 uint64_t RouteHint_get_short_channel_id(const struct LDKRouteHint *this_ptr);
7664
7665 /**
7666  * The short_channel_id of this channel
7667  */
7668 void RouteHint_set_short_channel_id(struct LDKRouteHint *this_ptr, uint64_t val);
7669
7670 /**
7671  * The fees which must be paid to use this channel
7672  */
7673 struct LDKRoutingFees RouteHint_get_fees(const struct LDKRouteHint *this_ptr);
7674
7675 /**
7676  * The fees which must be paid to use this channel
7677  */
7678 void RouteHint_set_fees(struct LDKRouteHint *this_ptr, struct LDKRoutingFees val);
7679
7680 /**
7681  * The difference in CLTV values between this node and the next node.
7682  */
7683 uint16_t RouteHint_get_cltv_expiry_delta(const struct LDKRouteHint *this_ptr);
7684
7685 /**
7686  * The difference in CLTV values between this node and the next node.
7687  */
7688 void RouteHint_set_cltv_expiry_delta(struct LDKRouteHint *this_ptr, uint16_t val);
7689
7690 /**
7691  * The minimum value, in msat, which must be relayed to the next hop.
7692  */
7693 uint64_t RouteHint_get_htlc_minimum_msat(const struct LDKRouteHint *this_ptr);
7694
7695 /**
7696  * The minimum value, in msat, which must be relayed to the next hop.
7697  */
7698 void RouteHint_set_htlc_minimum_msat(struct LDKRouteHint *this_ptr, uint64_t val);
7699
7700 MUST_USE_RES struct LDKRouteHint RouteHint_new(struct LDKPublicKey src_node_id_arg, uint64_t short_channel_id_arg, struct LDKRoutingFees fees_arg, uint16_t cltv_expiry_delta_arg, uint64_t htlc_minimum_msat_arg);
7701
7702 /**
7703  * Gets a route from us to the given target node.
7704  *
7705  * Extra routing hops between known nodes and the target will be used if they are included in
7706  * last_hops.
7707  *
7708  * If some channels aren't announced, it may be useful to fill in a first_hops with the
7709  * results from a local ChannelManager::list_usable_channels() call. If it is filled in, our
7710  * view of our local channels (from net_graph_msg_handler) will be ignored, and only those in first_hops
7711  * will be used.
7712  *
7713  * Panics if first_hops contains channels without short_channel_ids
7714  * (ChannelManager::list_usable_channels will never include such channels).
7715  *
7716  * The fees on channels from us to next-hops are ignored (as they are assumed to all be
7717  * equal), however the enabled/disabled bit on such channels as well as the htlc_minimum_msat
7718  * *is* checked as they may change based on the receiving node.
7719  */
7720 LDKCResult_RouteLightningErrorZ get_route(struct LDKPublicKey our_node_id, const struct LDKNetworkGraph *network, struct LDKPublicKey target, LDKCVec_ChannelDetailsZ *first_hops, LDKCVec_RouteHintZ last_hops, uint64_t final_value_msat, uint32_t final_cltv, struct LDKLogger logger);
7721
7722 void NetworkGraph_free(struct LDKNetworkGraph this_ptr);
7723
7724 void LockedNetworkGraph_free(struct LDKLockedNetworkGraph this_ptr);
7725
7726 void NetGraphMsgHandler_free(struct LDKNetGraphMsgHandler this_ptr);
7727
7728 /**
7729  * Creates a new tracker of the actual state of the network of channels and nodes,
7730  * assuming a fresh network graph.
7731  * Chain monitor is used to make sure announced channels exist on-chain,
7732  * channel data is correct, and that the announcement is signed with
7733  * channel owners' keys.
7734  */
7735 MUST_USE_RES struct LDKNetGraphMsgHandler NetGraphMsgHandler_new(struct LDKThirtyTwoBytes genesis_hash, struct LDKAccess *chain_access, struct LDKLogger logger);
7736
7737 /**
7738  * Creates a new tracker of the actual state of the network of channels and nodes,
7739  * assuming an existing Network Graph.
7740  */
7741 MUST_USE_RES struct LDKNetGraphMsgHandler NetGraphMsgHandler_from_net_graph(struct LDKAccess *chain_access, struct LDKLogger logger, struct LDKNetworkGraph network_graph);
7742
7743 /**
7744  * Take a read lock on the network_graph and return it in the C-bindings
7745  * newtype helper. This is likely only useful when called via the C
7746  * bindings as you can call `self.network_graph.read().unwrap()` in Rust
7747  * yourself.
7748  */
7749 MUST_USE_RES struct LDKLockedNetworkGraph NetGraphMsgHandler_read_locked_graph(const struct LDKNetGraphMsgHandler *this_arg);
7750
7751 /**
7752  * Get a reference to the NetworkGraph which this read-lock contains.
7753  */
7754 MUST_USE_RES struct LDKNetworkGraph LockedNetworkGraph_graph(const struct LDKLockedNetworkGraph *this_arg);
7755
7756 struct LDKRoutingMessageHandler NetGraphMsgHandler_as_RoutingMessageHandler(const struct LDKNetGraphMsgHandler *this_arg);
7757
7758 struct LDKMessageSendEventsProvider NetGraphMsgHandler_as_MessageSendEventsProvider(const struct LDKNetGraphMsgHandler *this_arg);
7759
7760 void DirectionalChannelInfo_free(struct LDKDirectionalChannelInfo this_ptr);
7761
7762 /**
7763  * When the last update to the channel direction was issued.
7764  * Value is opaque, as set in the announcement.
7765  */
7766 uint32_t DirectionalChannelInfo_get_last_update(const struct LDKDirectionalChannelInfo *this_ptr);
7767
7768 /**
7769  * When the last update to the channel direction was issued.
7770  * Value is opaque, as set in the announcement.
7771  */
7772 void DirectionalChannelInfo_set_last_update(struct LDKDirectionalChannelInfo *this_ptr, uint32_t val);
7773
7774 /**
7775  * Whether the channel can be currently used for payments (in this one direction).
7776  */
7777 bool DirectionalChannelInfo_get_enabled(const struct LDKDirectionalChannelInfo *this_ptr);
7778
7779 /**
7780  * Whether the channel can be currently used for payments (in this one direction).
7781  */
7782 void DirectionalChannelInfo_set_enabled(struct LDKDirectionalChannelInfo *this_ptr, bool val);
7783
7784 /**
7785  * The difference in CLTV values that you must have when routing through this channel.
7786  */
7787 uint16_t DirectionalChannelInfo_get_cltv_expiry_delta(const struct LDKDirectionalChannelInfo *this_ptr);
7788
7789 /**
7790  * The difference in CLTV values that you must have when routing through this channel.
7791  */
7792 void DirectionalChannelInfo_set_cltv_expiry_delta(struct LDKDirectionalChannelInfo *this_ptr, uint16_t val);
7793
7794 /**
7795  * The minimum value, which must be relayed to the next hop via the channel
7796  */
7797 uint64_t DirectionalChannelInfo_get_htlc_minimum_msat(const struct LDKDirectionalChannelInfo *this_ptr);
7798
7799 /**
7800  * The minimum value, which must be relayed to the next hop via the channel
7801  */
7802 void DirectionalChannelInfo_set_htlc_minimum_msat(struct LDKDirectionalChannelInfo *this_ptr, uint64_t val);
7803
7804 /**
7805  * Fees charged when the channel is used for routing
7806  */
7807 struct LDKRoutingFees DirectionalChannelInfo_get_fees(const struct LDKDirectionalChannelInfo *this_ptr);
7808
7809 /**
7810  * Fees charged when the channel is used for routing
7811  */
7812 void DirectionalChannelInfo_set_fees(struct LDKDirectionalChannelInfo *this_ptr, struct LDKRoutingFees val);
7813
7814 /**
7815  * Most recent update for the channel received from the network
7816  * Mostly redundant with the data we store in fields explicitly.
7817  * Everything else is useful only for sending out for initial routing sync.
7818  * Not stored if contains excess data to prevent DoS.
7819  */
7820 struct LDKChannelUpdate DirectionalChannelInfo_get_last_update_message(const struct LDKDirectionalChannelInfo *this_ptr);
7821
7822 /**
7823  * Most recent update for the channel received from the network
7824  * Mostly redundant with the data we store in fields explicitly.
7825  * Everything else is useful only for sending out for initial routing sync.
7826  * Not stored if contains excess data to prevent DoS.
7827  */
7828 void DirectionalChannelInfo_set_last_update_message(struct LDKDirectionalChannelInfo *this_ptr, struct LDKChannelUpdate val);
7829
7830 LDKCVec_u8Z DirectionalChannelInfo_write(const struct LDKDirectionalChannelInfo *obj);
7831
7832 struct LDKDirectionalChannelInfo DirectionalChannelInfo_read(struct LDKu8slice ser);
7833
7834 void ChannelInfo_free(struct LDKChannelInfo this_ptr);
7835
7836 /**
7837  * Protocol features of a channel communicated during its announcement
7838  */
7839 struct LDKChannelFeatures ChannelInfo_get_features(const struct LDKChannelInfo *this_ptr);
7840
7841 /**
7842  * Protocol features of a channel communicated during its announcement
7843  */
7844 void ChannelInfo_set_features(struct LDKChannelInfo *this_ptr, struct LDKChannelFeatures val);
7845
7846 /**
7847  * Source node of the first direction of a channel
7848  */
7849 struct LDKPublicKey ChannelInfo_get_node_one(const struct LDKChannelInfo *this_ptr);
7850
7851 /**
7852  * Source node of the first direction of a channel
7853  */
7854 void ChannelInfo_set_node_one(struct LDKChannelInfo *this_ptr, struct LDKPublicKey val);
7855
7856 /**
7857  * Details about the first direction of a channel
7858  */
7859 struct LDKDirectionalChannelInfo ChannelInfo_get_one_to_two(const struct LDKChannelInfo *this_ptr);
7860
7861 /**
7862  * Details about the first direction of a channel
7863  */
7864 void ChannelInfo_set_one_to_two(struct LDKChannelInfo *this_ptr, struct LDKDirectionalChannelInfo val);
7865
7866 /**
7867  * Source node of the second direction of a channel
7868  */
7869 struct LDKPublicKey ChannelInfo_get_node_two(const struct LDKChannelInfo *this_ptr);
7870
7871 /**
7872  * Source node of the second direction of a channel
7873  */
7874 void ChannelInfo_set_node_two(struct LDKChannelInfo *this_ptr, struct LDKPublicKey val);
7875
7876 /**
7877  * Details about the second direction of a channel
7878  */
7879 struct LDKDirectionalChannelInfo ChannelInfo_get_two_to_one(const struct LDKChannelInfo *this_ptr);
7880
7881 /**
7882  * Details about the second direction of a channel
7883  */
7884 void ChannelInfo_set_two_to_one(struct LDKChannelInfo *this_ptr, struct LDKDirectionalChannelInfo val);
7885
7886 /**
7887  * An initial announcement of the channel
7888  * Mostly redundant with the data we store in fields explicitly.
7889  * Everything else is useful only for sending out for initial routing sync.
7890  * Not stored if contains excess data to prevent DoS.
7891  */
7892 struct LDKChannelAnnouncement ChannelInfo_get_announcement_message(const struct LDKChannelInfo *this_ptr);
7893
7894 /**
7895  * An initial announcement of the channel
7896  * Mostly redundant with the data we store in fields explicitly.
7897  * Everything else is useful only for sending out for initial routing sync.
7898  * Not stored if contains excess data to prevent DoS.
7899  */
7900 void ChannelInfo_set_announcement_message(struct LDKChannelInfo *this_ptr, struct LDKChannelAnnouncement val);
7901
7902 LDKCVec_u8Z ChannelInfo_write(const struct LDKChannelInfo *obj);
7903
7904 struct LDKChannelInfo ChannelInfo_read(struct LDKu8slice ser);
7905
7906 void RoutingFees_free(struct LDKRoutingFees this_ptr);
7907
7908 struct LDKRoutingFees RoutingFees_clone(const struct LDKRoutingFees *orig);
7909
7910 /**
7911  * Flat routing fee in satoshis
7912  */
7913 uint32_t RoutingFees_get_base_msat(const struct LDKRoutingFees *this_ptr);
7914
7915 /**
7916  * Flat routing fee in satoshis
7917  */
7918 void RoutingFees_set_base_msat(struct LDKRoutingFees *this_ptr, uint32_t val);
7919
7920 /**
7921  * Liquidity-based routing fee in millionths of a routed amount.
7922  * In other words, 10000 is 1%.
7923  */
7924 uint32_t RoutingFees_get_proportional_millionths(const struct LDKRoutingFees *this_ptr);
7925
7926 /**
7927  * Liquidity-based routing fee in millionths of a routed amount.
7928  * In other words, 10000 is 1%.
7929  */
7930 void RoutingFees_set_proportional_millionths(struct LDKRoutingFees *this_ptr, uint32_t val);
7931
7932 MUST_USE_RES struct LDKRoutingFees RoutingFees_new(uint32_t base_msat_arg, uint32_t proportional_millionths_arg);
7933
7934 LDKCResult_RoutingFeesDecodeErrorZ RoutingFees_read(struct LDKu8slice ser);
7935
7936 LDKCVec_u8Z RoutingFees_write(const struct LDKRoutingFees *obj);
7937
7938 void NodeAnnouncementInfo_free(struct LDKNodeAnnouncementInfo this_ptr);
7939
7940 /**
7941  * Protocol features the node announced support for
7942  */
7943 struct LDKNodeFeatures NodeAnnouncementInfo_get_features(const struct LDKNodeAnnouncementInfo *this_ptr);
7944
7945 /**
7946  * Protocol features the node announced support for
7947  */
7948 void NodeAnnouncementInfo_set_features(struct LDKNodeAnnouncementInfo *this_ptr, struct LDKNodeFeatures val);
7949
7950 /**
7951  * When the last known update to the node state was issued.
7952  * Value is opaque, as set in the announcement.
7953  */
7954 uint32_t NodeAnnouncementInfo_get_last_update(const struct LDKNodeAnnouncementInfo *this_ptr);
7955
7956 /**
7957  * When the last known update to the node state was issued.
7958  * Value is opaque, as set in the announcement.
7959  */
7960 void NodeAnnouncementInfo_set_last_update(struct LDKNodeAnnouncementInfo *this_ptr, uint32_t val);
7961
7962 /**
7963  * Color assigned to the node
7964  */
7965 const uint8_t (*NodeAnnouncementInfo_get_rgb(const struct LDKNodeAnnouncementInfo *this_ptr))[3];
7966
7967 /**
7968  * Color assigned to the node
7969  */
7970 void NodeAnnouncementInfo_set_rgb(struct LDKNodeAnnouncementInfo *this_ptr, struct LDKThreeBytes val);
7971
7972 /**
7973  * Moniker assigned to the node.
7974  * May be invalid or malicious (eg control chars),
7975  * should not be exposed to the user.
7976  */
7977 const uint8_t (*NodeAnnouncementInfo_get_alias(const struct LDKNodeAnnouncementInfo *this_ptr))[32];
7978
7979 /**
7980  * Moniker assigned to the node.
7981  * May be invalid or malicious (eg control chars),
7982  * should not be exposed to the user.
7983  */
7984 void NodeAnnouncementInfo_set_alias(struct LDKNodeAnnouncementInfo *this_ptr, struct LDKThirtyTwoBytes val);
7985
7986 /**
7987  * Internet-level addresses via which one can connect to the node
7988  */
7989 void NodeAnnouncementInfo_set_addresses(struct LDKNodeAnnouncementInfo *this_ptr, LDKCVec_NetAddressZ val);
7990
7991 /**
7992  * An initial announcement of the node
7993  * Mostly redundant with the data we store in fields explicitly.
7994  * Everything else is useful only for sending out for initial routing sync.
7995  * Not stored if contains excess data to prevent DoS.
7996  */
7997 struct LDKNodeAnnouncement NodeAnnouncementInfo_get_announcement_message(const struct LDKNodeAnnouncementInfo *this_ptr);
7998
7999 /**
8000  * An initial announcement of the node
8001  * Mostly redundant with the data we store in fields explicitly.
8002  * Everything else is useful only for sending out for initial routing sync.
8003  * Not stored if contains excess data to prevent DoS.
8004  */
8005 void NodeAnnouncementInfo_set_announcement_message(struct LDKNodeAnnouncementInfo *this_ptr, struct LDKNodeAnnouncement val);
8006
8007 MUST_USE_RES struct LDKNodeAnnouncementInfo NodeAnnouncementInfo_new(struct LDKNodeFeatures features_arg, uint32_t last_update_arg, struct LDKThreeBytes rgb_arg, struct LDKThirtyTwoBytes alias_arg, LDKCVec_NetAddressZ addresses_arg, struct LDKNodeAnnouncement announcement_message_arg);
8008
8009 LDKCVec_u8Z NodeAnnouncementInfo_write(const struct LDKNodeAnnouncementInfo *obj);
8010
8011 LDKCResult_NodeAnnouncementInfoDecodeErrorZ NodeAnnouncementInfo_read(struct LDKu8slice ser);
8012
8013 void NodeInfo_free(struct LDKNodeInfo this_ptr);
8014
8015 /**
8016  * All valid channels a node has announced
8017  */
8018 void NodeInfo_set_channels(struct LDKNodeInfo *this_ptr, LDKCVec_u64Z val);
8019
8020 /**
8021  * Lowest fees enabling routing via any of the enabled, known channels to a node.
8022  * The two fields (flat and proportional fee) are independent,
8023  * meaning they don't have to refer to the same channel.
8024  */
8025 struct LDKRoutingFees NodeInfo_get_lowest_inbound_channel_fees(const struct LDKNodeInfo *this_ptr);
8026
8027 /**
8028  * Lowest fees enabling routing via any of the enabled, known channels to a node.
8029  * The two fields (flat and proportional fee) are independent,
8030  * meaning they don't have to refer to the same channel.
8031  */
8032 void NodeInfo_set_lowest_inbound_channel_fees(struct LDKNodeInfo *this_ptr, struct LDKRoutingFees val);
8033
8034 /**
8035  * More information about a node from node_announcement.
8036  * Optional because we store a Node entry after learning about it from
8037  * a channel announcement, but before receiving a node announcement.
8038  */
8039 struct LDKNodeAnnouncementInfo NodeInfo_get_announcement_info(const struct LDKNodeInfo *this_ptr);
8040
8041 /**
8042  * More information about a node from node_announcement.
8043  * Optional because we store a Node entry after learning about it from
8044  * a channel announcement, but before receiving a node announcement.
8045  */
8046 void NodeInfo_set_announcement_info(struct LDKNodeInfo *this_ptr, struct LDKNodeAnnouncementInfo val);
8047
8048 MUST_USE_RES struct LDKNodeInfo NodeInfo_new(LDKCVec_u64Z channels_arg, struct LDKRoutingFees lowest_inbound_channel_fees_arg, struct LDKNodeAnnouncementInfo announcement_info_arg);
8049
8050 LDKCVec_u8Z NodeInfo_write(const struct LDKNodeInfo *obj);
8051
8052 LDKCResult_NodeInfoDecodeErrorZ NodeInfo_read(struct LDKu8slice ser);
8053
8054 LDKCVec_u8Z NetworkGraph_write(const struct LDKNetworkGraph *obj);
8055
8056 LDKCResult_NetworkGraphDecodeErrorZ NetworkGraph_read(struct LDKu8slice ser);
8057
8058 /**
8059  * Creates a new, empty, network graph.
8060  */
8061 MUST_USE_RES struct LDKNetworkGraph NetworkGraph_new(struct LDKThirtyTwoBytes genesis_hash);
8062
8063 /**
8064  * For an already known node (from channel announcements), update its stored properties from a
8065  * given node announcement.
8066  *
8067  * You probably don't want to call this directly, instead relying on a NetGraphMsgHandler's
8068  * RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
8069  * routing messages from a source using a protocol other than the lightning P2P protocol.
8070  */
8071 MUST_USE_RES LDKCResult_NoneLightningErrorZ NetworkGraph_update_node_from_announcement(struct LDKNetworkGraph *this_arg, const struct LDKNodeAnnouncement *msg);
8072
8073 /**
8074  * For an already known node (from channel announcements), update its stored properties from a
8075  * given node announcement without verifying the associated signatures. Because we aren't
8076  * given the associated signatures here we cannot relay the node announcement to any of our
8077  * peers.
8078  */
8079 MUST_USE_RES LDKCResult_NoneLightningErrorZ NetworkGraph_update_node_from_unsigned_announcement(struct LDKNetworkGraph *this_arg, const struct LDKUnsignedNodeAnnouncement *msg);
8080
8081 /**
8082  * Store or update channel info from a channel announcement.
8083  *
8084  * You probably don't want to call this directly, instead relying on a NetGraphMsgHandler's
8085  * RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
8086  * routing messages from a source using a protocol other than the lightning P2P protocol.
8087  *
8088  * If a `chain::Access` object is provided via `chain_access`, it will be called to verify
8089  * the corresponding UTXO exists on chain and is correctly-formatted.
8090  */
8091 MUST_USE_RES LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_from_announcement(struct LDKNetworkGraph *this_arg, const struct LDKChannelAnnouncement *msg, struct LDKAccess *chain_access);
8092
8093 /**
8094  * Store or update channel info from a channel announcement without verifying the associated
8095  * signatures. Because we aren't given the associated signatures here we cannot relay the
8096  * channel announcement to any of our peers.
8097  *
8098  * If a `chain::Access` object is provided via `chain_access`, it will be called to verify
8099  * the corresponding UTXO exists on chain and is correctly-formatted.
8100  */
8101 MUST_USE_RES LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_from_unsigned_announcement(struct LDKNetworkGraph *this_arg, const struct LDKUnsignedChannelAnnouncement *msg, struct LDKAccess *chain_access);
8102
8103 /**
8104  * Close a channel if a corresponding HTLC fail was sent.
8105  * If permanent, removes a channel from the local storage.
8106  * May cause the removal of nodes too, if this was their last channel.
8107  * If not permanent, makes channels unavailable for routing.
8108  */
8109 void NetworkGraph_close_channel_from_update(struct LDKNetworkGraph *this_arg, uint64_t short_channel_id, bool is_permanent);
8110
8111 /**
8112  * For an already known (from announcement) channel, update info about one of the directions
8113  * of the channel.
8114  *
8115  * You probably don't want to call this directly, instead relying on a NetGraphMsgHandler's
8116  * RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
8117  * routing messages from a source using a protocol other than the lightning P2P protocol.
8118  */
8119 MUST_USE_RES LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel(struct LDKNetworkGraph *this_arg, const struct LDKChannelUpdate *msg);
8120
8121 /**
8122  * For an already known (from announcement) channel, update info about one of the directions
8123  * of the channel without verifying the associated signatures. Because we aren't given the
8124  * associated signatures here we cannot relay the channel update to any of our peers.
8125  */
8126 MUST_USE_RES LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_unsigned(struct LDKNetworkGraph *this_arg, const struct LDKUnsignedChannelUpdate *msg);
8127
8128 /* Text to put at the end of the generated file */