]> git.bitcoin.ninja Git - rust-lightning/blob - lightning/src/events/mod.rs
01a3fef6733cfb3a7f26b0f719b5450f9d1ad468
[rust-lightning] / lightning / src / events / mod.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! Events are returned from various bits in the library which indicate some action must be taken
11 //! by the client.
12 //!
13 //! Because we don't have a built-in runtime, it's up to the client to call events at a time in the
14 //! future, as well as generate and broadcast funding transactions handle payment preimages and a
15 //! few other things.
16
17 pub mod bump_transaction;
18
19 pub use bump_transaction::BumpTransactionEvent;
20
21 use crate::sign::SpendableOutputDescriptor;
22 use crate::ln::channelmanager::{InterceptId, PaymentId, RecipientOnionFields};
23 use crate::ln::channel::FUNDING_CONF_DEADLINE_BLOCKS;
24 use crate::ln::features::ChannelTypeFeatures;
25 use crate::ln::msgs;
26 use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
27 use crate::routing::gossip::NetworkUpdate;
28 use crate::util::errors::APIError;
29 use crate::util::ser::{BigSize, FixedLengthReader, Writeable, Writer, MaybeReadable, Readable, RequiredWrapper, UpgradableRequired, WithoutLength};
30 use crate::util::string::UntrustedString;
31 use crate::routing::router::{BlindedTail, Path, RouteHop, RouteParameters};
32
33 use bitcoin::{PackedLockTime, Transaction, OutPoint};
34 use bitcoin::blockdata::script::Script;
35 use bitcoin::hashes::Hash;
36 use bitcoin::hashes::sha256::Hash as Sha256;
37 use bitcoin::secp256k1::PublicKey;
38 use crate::io;
39 use crate::prelude::*;
40 use core::time::Duration;
41 use core::ops::Deref;
42 use crate::sync::Arc;
43
44 /// Some information provided on receipt of payment depends on whether the payment received is a
45 /// spontaneous payment or a "conventional" lightning payment that's paying an invoice.
46 #[derive(Clone, Debug, PartialEq, Eq)]
47 pub enum PaymentPurpose {
48         /// Information for receiving a payment that we generated an invoice for.
49         InvoicePayment {
50                 /// The preimage to the payment_hash, if the payment hash (and secret) were fetched via
51                 /// [`ChannelManager::create_inbound_payment`]. If provided, this can be handed directly to
52                 /// [`ChannelManager::claim_funds`].
53                 ///
54                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
55                 /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
56                 payment_preimage: Option<PaymentPreimage>,
57                 /// The "payment secret". This authenticates the sender to the recipient, preventing a
58                 /// number of deanonymization attacks during the routing process.
59                 /// It is provided here for your reference, however its accuracy is enforced directly by
60                 /// [`ChannelManager`] using the values you previously provided to
61                 /// [`ChannelManager::create_inbound_payment`] or
62                 /// [`ChannelManager::create_inbound_payment_for_hash`].
63                 ///
64                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
65                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
66                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
67                 payment_secret: PaymentSecret,
68         },
69         /// Because this is a spontaneous payment, the payer generated their own preimage rather than us
70         /// (the payee) providing a preimage.
71         SpontaneousPayment(PaymentPreimage),
72 }
73
74 impl_writeable_tlv_based_enum!(PaymentPurpose,
75         (0, InvoicePayment) => {
76                 (0, payment_preimage, option),
77                 (2, payment_secret, required),
78         };
79         (2, SpontaneousPayment)
80 );
81
82 /// When the payment path failure took place and extra details about it. [`PathFailure::OnPath`] may
83 /// contain a [`NetworkUpdate`] that needs to be applied to the [`NetworkGraph`].
84 ///
85 /// [`NetworkUpdate`]: crate::routing::gossip::NetworkUpdate
86 /// [`NetworkGraph`]: crate::routing::gossip::NetworkGraph
87 #[derive(Clone, Debug, Eq, PartialEq)]
88 pub enum PathFailure {
89         /// We failed to initially send the payment and no HTLC was committed to. Contains the relevant
90         /// error.
91         InitialSend {
92                 /// The error surfaced from initial send.
93                 err: APIError,
94         },
95         /// A hop on the path failed to forward our payment.
96         OnPath {
97                 /// If present, this [`NetworkUpdate`] should be applied to the [`NetworkGraph`] so that routing
98                 /// decisions can take into account the update.
99                 ///
100                 /// [`NetworkUpdate`]: crate::routing::gossip::NetworkUpdate
101                 /// [`NetworkGraph`]: crate::routing::gossip::NetworkGraph
102                 network_update: Option<NetworkUpdate>,
103         },
104 }
105
106 impl_writeable_tlv_based_enum_upgradable!(PathFailure,
107         (0, OnPath) => {
108                 (0, network_update, upgradable_option),
109         },
110         (2, InitialSend) => {
111                 (0, err, upgradable_required),
112         },
113 );
114
115 #[derive(Clone, Debug, PartialEq, Eq)]
116 /// The reason the channel was closed. See individual variants for more details.
117 pub enum ClosureReason {
118         /// Closure generated from receiving a peer error message.
119         ///
120         /// Our counterparty may have broadcasted their latest commitment state, and we have
121         /// as well.
122         CounterpartyForceClosed {
123                 /// The error which the peer sent us.
124                 ///
125                 /// Be careful about printing the peer_msg, a well-crafted message could exploit
126                 /// a security vulnerability in the terminal emulator or the logging subsystem.
127                 /// To be safe, use `Display` on `UntrustedString`
128                 ///
129                 /// [`UntrustedString`]: crate::util::string::UntrustedString
130                 peer_msg: UntrustedString,
131         },
132         /// Closure generated from [`ChannelManager::force_close_channel`], called by the user.
133         ///
134         /// [`ChannelManager::force_close_channel`]: crate::ln::channelmanager::ChannelManager::force_close_channel.
135         HolderForceClosed,
136         /// The channel was closed after negotiating a cooperative close and we've now broadcasted
137         /// the cooperative close transaction. Note the shutdown may have been initiated by us.
138         //TODO: split between CounterpartyInitiated/LocallyInitiated
139         CooperativeClosure,
140         /// A commitment transaction was confirmed on chain, closing the channel. Most likely this
141         /// commitment transaction came from our counterparty, but it may also have come from
142         /// a copy of our own `ChannelMonitor`.
143         CommitmentTxConfirmed,
144         /// The funding transaction failed to confirm in a timely manner on an inbound channel.
145         FundingTimedOut,
146         /// Closure generated from processing an event, likely a HTLC forward/relay/reception.
147         ProcessingError {
148                 /// A developer-readable error message which we generated.
149                 err: String,
150         },
151         /// The peer disconnected prior to funding completing. In this case the spec mandates that we
152         /// forget the channel entirely - we can attempt again if the peer reconnects.
153         ///
154         /// This includes cases where we restarted prior to funding completion, including prior to the
155         /// initial [`ChannelMonitor`] persistence completing.
156         ///
157         /// In LDK versions prior to 0.0.107 this could also occur if we were unable to connect to the
158         /// peer because of mutual incompatibility between us and our channel counterparty.
159         ///
160         /// [`ChannelMonitor`]: crate::chain::channelmonitor::ChannelMonitor
161         DisconnectedPeer,
162         /// Closure generated from `ChannelManager::read` if the [`ChannelMonitor`] is newer than
163         /// the [`ChannelManager`] deserialized.
164         ///
165         /// [`ChannelMonitor`]: crate::chain::channelmonitor::ChannelMonitor
166         /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
167         OutdatedChannelManager,
168         /// The counterparty requested a cooperative close of a channel that had not been funded yet.
169         /// The channel has been immediately closed.
170         CounterpartyCoopClosedUnfundedChannel,
171 }
172
173 impl core::fmt::Display for ClosureReason {
174         fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
175                 f.write_str("Channel closed because ")?;
176                 match self {
177                         ClosureReason::CounterpartyForceClosed { peer_msg } => {
178                                 f.write_fmt(format_args!("counterparty force-closed with message: {}", peer_msg))
179                         },
180                         ClosureReason::HolderForceClosed => f.write_str("user manually force-closed the channel"),
181                         ClosureReason::CooperativeClosure => f.write_str("the channel was cooperatively closed"),
182                         ClosureReason::CommitmentTxConfirmed => f.write_str("commitment or closing transaction was confirmed on chain."),
183                         ClosureReason::FundingTimedOut => write!(f, "funding transaction failed to confirm within {} blocks", FUNDING_CONF_DEADLINE_BLOCKS),
184                         ClosureReason::ProcessingError { err } => {
185                                 f.write_str("of an exception: ")?;
186                                 f.write_str(&err)
187                         },
188                         ClosureReason::DisconnectedPeer => f.write_str("the peer disconnected prior to the channel being funded"),
189                         ClosureReason::OutdatedChannelManager => f.write_str("the ChannelManager read from disk was stale compared to ChannelMonitor(s)"),
190                         ClosureReason::CounterpartyCoopClosedUnfundedChannel => f.write_str("the peer requested the unfunded channel be closed"),
191                 }
192         }
193 }
194
195 impl_writeable_tlv_based_enum_upgradable!(ClosureReason,
196         (0, CounterpartyForceClosed) => { (1, peer_msg, required) },
197         (1, FundingTimedOut) => {},
198         (2, HolderForceClosed) => {},
199         (6, CommitmentTxConfirmed) => {},
200         (4, CooperativeClosure) => {},
201         (8, ProcessingError) => { (1, err, required) },
202         (10, DisconnectedPeer) => {},
203         (12, OutdatedChannelManager) => {},
204         (13, CounterpartyCoopClosedUnfundedChannel) => {},
205 );
206
207 /// Intended destination of a failed HTLC as indicated in [`Event::HTLCHandlingFailed`].
208 #[derive(Clone, Debug, PartialEq, Eq)]
209 pub enum HTLCDestination {
210         /// We tried forwarding to a channel but failed to do so. An example of such an instance is when
211         /// there is insufficient capacity in our outbound channel.
212         NextHopChannel {
213                 /// The `node_id` of the next node. For backwards compatibility, this field is
214                 /// marked as optional, versions prior to 0.0.110 may not always be able to provide
215                 /// counterparty node information.
216                 node_id: Option<PublicKey>,
217                 /// The outgoing `channel_id` between us and the next node.
218                 channel_id: [u8; 32],
219         },
220         /// Scenario where we are unsure of the next node to forward the HTLC to.
221         UnknownNextHop {
222                 /// Short channel id we are requesting to forward an HTLC to.
223                 requested_forward_scid: u64,
224         },
225         /// We couldn't forward to the outgoing scid. An example would be attempting to send a duplicate
226         /// intercept HTLC.
227         InvalidForward {
228                 /// Short channel id we are requesting to forward an HTLC to.
229                 requested_forward_scid: u64
230         },
231         /// Failure scenario where an HTLC may have been forwarded to be intended for us,
232         /// but is invalid for some reason, so we reject it.
233         ///
234         /// Some of the reasons may include:
235         /// * HTLC Timeouts
236         /// * Excess HTLCs for a payment that we have already fully received, over-paying for the
237         ///   payment,
238         /// * The counterparty node modified the HTLC in transit,
239         /// * A probing attack where an intermediary node is trying to detect if we are the ultimate
240         ///   recipient for a payment.
241         FailedPayment {
242                 /// The payment hash of the payment we attempted to process.
243                 payment_hash: PaymentHash
244         },
245 }
246
247 impl_writeable_tlv_based_enum_upgradable!(HTLCDestination,
248         (0, NextHopChannel) => {
249                 (0, node_id, required),
250                 (2, channel_id, required),
251         },
252         (1, InvalidForward) => {
253                 (0, requested_forward_scid, required),
254         },
255         (2, UnknownNextHop) => {
256                 (0, requested_forward_scid, required),
257         },
258         (4, FailedPayment) => {
259                 (0, payment_hash, required),
260         },
261 );
262
263 /// Will be used in [`Event::HTLCIntercepted`] to identify the next hop in the HTLC's path.
264 /// Currently only used in serialization for the sake of maintaining compatibility. More variants
265 /// will be added for general-purpose HTLC forward intercepts as well as trampoline forward
266 /// intercepts in upcoming work.
267 enum InterceptNextHop {
268         FakeScid {
269                 requested_next_hop_scid: u64,
270         },
271 }
272
273 impl_writeable_tlv_based_enum!(InterceptNextHop,
274         (0, FakeScid) => {
275                 (0, requested_next_hop_scid, required),
276         };
277 );
278
279 /// The reason the payment failed. Used in [`Event::PaymentFailed`].
280 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
281 pub enum PaymentFailureReason {
282         /// The intended recipient rejected our payment.
283         RecipientRejected,
284         /// The user chose to abandon this payment by calling [`ChannelManager::abandon_payment`].
285         ///
286         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
287         UserAbandoned,
288         /// We exhausted all of our retry attempts while trying to send the payment, or we
289         /// exhausted the [`Retry::Timeout`] if the user set one. If at any point a retry
290         /// attempt failed while being forwarded along the path, an [`Event::PaymentPathFailed`] will
291         /// have come before this.
292         ///
293         /// [`Retry::Timeout`]: crate::ln::channelmanager::Retry::Timeout
294         RetriesExhausted,
295         /// The payment expired while retrying, based on the provided
296         /// [`PaymentParameters::expiry_time`].
297         ///
298         /// [`PaymentParameters::expiry_time`]: crate::routing::router::PaymentParameters::expiry_time
299         PaymentExpired,
300         /// We failed to find a route while retrying the payment.
301         RouteNotFound,
302         /// This error should generally never happen. This likely means that there is a problem with
303         /// your router.
304         UnexpectedError,
305 }
306
307 impl_writeable_tlv_based_enum!(PaymentFailureReason,
308         (0, RecipientRejected) => {},
309         (2, UserAbandoned) => {},
310         (4, RetriesExhausted) => {},
311         (6, PaymentExpired) => {},
312         (8, RouteNotFound) => {},
313         (10, UnexpectedError) => {}, ;
314 );
315
316 /// An Event which you should probably take some action in response to.
317 ///
318 /// Note that while Writeable and Readable are implemented for Event, you probably shouldn't use
319 /// them directly as they don't round-trip exactly (for example FundingGenerationReady is never
320 /// written as it makes no sense to respond to it after reconnecting to peers).
321 #[derive(Clone, Debug, PartialEq, Eq)]
322 pub enum Event {
323         /// Used to indicate that the client should generate a funding transaction with the given
324         /// parameters and then call [`ChannelManager::funding_transaction_generated`].
325         /// Generated in [`ChannelManager`] message handling.
326         /// Note that *all inputs* in the funding transaction must spend SegWit outputs or your
327         /// counterparty can steal your funds!
328         ///
329         /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
330         /// [`ChannelManager::funding_transaction_generated`]: crate::ln::channelmanager::ChannelManager::funding_transaction_generated
331         FundingGenerationReady {
332                 /// The random channel_id we picked which you'll need to pass into
333                 /// [`ChannelManager::funding_transaction_generated`].
334                 ///
335                 /// [`ChannelManager::funding_transaction_generated`]: crate::ln::channelmanager::ChannelManager::funding_transaction_generated
336                 temporary_channel_id: [u8; 32],
337                 /// The counterparty's node_id, which you'll need to pass back into
338                 /// [`ChannelManager::funding_transaction_generated`].
339                 ///
340                 /// [`ChannelManager::funding_transaction_generated`]: crate::ln::channelmanager::ChannelManager::funding_transaction_generated
341                 counterparty_node_id: PublicKey,
342                 /// The value, in satoshis, that the output should have.
343                 channel_value_satoshis: u64,
344                 /// The script which should be used in the transaction output.
345                 output_script: Script,
346                 /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`], or a
347                 /// random value for an inbound channel. This may be zero for objects serialized with LDK
348                 /// versions prior to 0.0.113.
349                 ///
350                 /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
351                 user_channel_id: u128,
352         },
353         /// Indicates that we've been offered a payment and it needs to be claimed via calling
354         /// [`ChannelManager::claim_funds`] with the preimage given in [`PaymentPurpose`].
355         ///
356         /// Note that if the preimage is not known, you should call
357         /// [`ChannelManager::fail_htlc_backwards`] or [`ChannelManager::fail_htlc_backwards_with_reason`]
358         /// to free up resources for this HTLC and avoid network congestion.
359         /// If you fail to call either [`ChannelManager::claim_funds`], [`ChannelManager::fail_htlc_backwards`],
360         /// or [`ChannelManager::fail_htlc_backwards_with_reason`] within the HTLC's timeout, the HTLC will be
361         /// automatically failed.
362         ///
363         /// # Note
364         /// LDK will not stop an inbound payment from being paid multiple times, so multiple
365         /// `PaymentClaimable` events may be generated for the same payment. In such a case it is
366         /// polite (and required in the lightning specification) to fail the payment the second time
367         /// and give the sender their money back rather than accepting double payment.
368         ///
369         /// # Note
370         /// This event used to be called `PaymentReceived` in LDK versions 0.0.112 and earlier.
371         ///
372         /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
373         /// [`ChannelManager::fail_htlc_backwards`]: crate::ln::channelmanager::ChannelManager::fail_htlc_backwards
374         /// [`ChannelManager::fail_htlc_backwards_with_reason`]: crate::ln::channelmanager::ChannelManager::fail_htlc_backwards_with_reason
375         PaymentClaimable {
376                 /// The node that will receive the payment after it has been claimed.
377                 /// This is useful to identify payments received via [phantom nodes].
378                 /// This field will always be filled in when the event was generated by LDK versions
379                 /// 0.0.113 and above.
380                 ///
381                 /// [phantom nodes]: crate::sign::PhantomKeysManager
382                 receiver_node_id: Option<PublicKey>,
383                 /// The hash for which the preimage should be handed to the ChannelManager. Note that LDK will
384                 /// not stop you from registering duplicate payment hashes for inbound payments.
385                 payment_hash: PaymentHash,
386                 /// The fields in the onion which were received with each HTLC. Only fields which were
387                 /// identical in each HTLC involved in the payment will be included here.
388                 ///
389                 /// Payments received on LDK versions prior to 0.0.115 will have this field unset.
390                 onion_fields: Option<RecipientOnionFields>,
391                 /// The value, in thousandths of a satoshi, that this payment is claimable for. May be greater
392                 /// than the invoice amount.
393                 ///
394                 /// May be less than the invoice amount if [`ChannelConfig::accept_underpaying_htlcs`] is set
395                 /// and the previous hop took an extra fee.
396                 ///
397                 /// # Note
398                 /// If [`ChannelConfig::accept_underpaying_htlcs`] is set and you claim without verifying this
399                 /// field, you may lose money!
400                 ///
401                 /// [`ChannelConfig::accept_underpaying_htlcs`]: crate::util::config::ChannelConfig::accept_underpaying_htlcs
402                 amount_msat: u64,
403                 /// The value, in thousands of a satoshi, that was skimmed off of this payment as an extra fee
404                 /// taken by our channel counterparty.
405                 ///
406                 /// Will always be 0 unless [`ChannelConfig::accept_underpaying_htlcs`] is set.
407                 ///
408                 /// [`ChannelConfig::accept_underpaying_htlcs`]: crate::util::config::ChannelConfig::accept_underpaying_htlcs
409                 counterparty_skimmed_fee_msat: u64,
410                 /// Information for claiming this received payment, based on whether the purpose of the
411                 /// payment is to pay an invoice or to send a spontaneous payment.
412                 purpose: PaymentPurpose,
413                 /// The `channel_id` indicating over which channel we received the payment.
414                 via_channel_id: Option<[u8; 32]>,
415                 /// The `user_channel_id` indicating over which channel we received the payment.
416                 via_user_channel_id: Option<u128>,
417                 /// The block height at which this payment will be failed back and will no longer be
418                 /// eligible for claiming.
419                 ///
420                 /// Prior to this height, a call to [`ChannelManager::claim_funds`] is guaranteed to
421                 /// succeed, however you should wait for [`Event::PaymentClaimed`] to be sure.
422                 ///
423                 /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
424                 claim_deadline: Option<u32>,
425         },
426         /// Indicates a payment has been claimed and we've received money!
427         ///
428         /// This most likely occurs when [`ChannelManager::claim_funds`] has been called in response
429         /// to an [`Event::PaymentClaimable`]. However, if we previously crashed during a
430         /// [`ChannelManager::claim_funds`] call you may see this event without a corresponding
431         /// [`Event::PaymentClaimable`] event.
432         ///
433         /// # Note
434         /// LDK will not stop an inbound payment from being paid multiple times, so multiple
435         /// `PaymentClaimable` events may be generated for the same payment. If you then call
436         /// [`ChannelManager::claim_funds`] twice for the same [`Event::PaymentClaimable`] you may get
437         /// multiple `PaymentClaimed` events.
438         ///
439         /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
440         PaymentClaimed {
441                 /// The node that received the payment.
442                 /// This is useful to identify payments which were received via [phantom nodes].
443                 /// This field will always be filled in when the event was generated by LDK versions
444                 /// 0.0.113 and above.
445                 ///
446                 /// [phantom nodes]: crate::sign::PhantomKeysManager
447                 receiver_node_id: Option<PublicKey>,
448                 /// The payment hash of the claimed payment. Note that LDK will not stop you from
449                 /// registering duplicate payment hashes for inbound payments.
450                 payment_hash: PaymentHash,
451                 /// The value, in thousandths of a satoshi, that this payment is for. May be greater than the
452                 /// invoice amount.
453                 amount_msat: u64,
454                 /// The purpose of the claimed payment, i.e. whether the payment was for an invoice or a
455                 /// spontaneous payment.
456                 purpose: PaymentPurpose,
457         },
458         /// Indicates an outbound payment we made succeeded (i.e. it made it all the way to its target
459         /// and we got back the payment preimage for it).
460         ///
461         /// Note for MPP payments: in rare cases, this event may be preceded by a `PaymentPathFailed`
462         /// event. In this situation, you SHOULD treat this payment as having succeeded.
463         PaymentSent {
464                 /// The `payment_id` passed to [`ChannelManager::send_payment`].
465                 ///
466                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
467                 payment_id: Option<PaymentId>,
468                 /// The preimage to the hash given to ChannelManager::send_payment.
469                 /// Note that this serves as a payment receipt, if you wish to have such a thing, you must
470                 /// store it somehow!
471                 payment_preimage: PaymentPreimage,
472                 /// The hash that was given to [`ChannelManager::send_payment`].
473                 ///
474                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
475                 payment_hash: PaymentHash,
476                 /// The total fee which was spent at intermediate hops in this payment, across all paths.
477                 ///
478                 /// Note that, like [`Route::get_total_fees`] this does *not* include any potential
479                 /// overpayment to the recipient node.
480                 ///
481                 /// If the recipient or an intermediate node misbehaves and gives us free money, this may
482                 /// overstate the amount paid, though this is unlikely.
483                 ///
484                 /// [`Route::get_total_fees`]: crate::routing::router::Route::get_total_fees
485                 fee_paid_msat: Option<u64>,
486         },
487         /// Indicates an outbound payment failed. Individual [`Event::PaymentPathFailed`] events
488         /// provide failure information for each path attempt in the payment, including retries.
489         ///
490         /// This event is provided once there are no further pending HTLCs for the payment and the
491         /// payment is no longer retryable, due either to the [`Retry`] provided or
492         /// [`ChannelManager::abandon_payment`] having been called for the corresponding payment.
493         ///
494         /// [`Retry`]: crate::ln::channelmanager::Retry
495         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
496         PaymentFailed {
497                 /// The `payment_id` passed to [`ChannelManager::send_payment`].
498                 ///
499                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
500                 payment_id: PaymentId,
501                 /// The hash that was given to [`ChannelManager::send_payment`].
502                 ///
503                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
504                 payment_hash: PaymentHash,
505                 /// The reason the payment failed. This is only `None` for events generated or serialized
506                 /// by versions prior to 0.0.115.
507                 reason: Option<PaymentFailureReason>,
508         },
509         /// Indicates that a path for an outbound payment was successful.
510         ///
511         /// Always generated after [`Event::PaymentSent`] and thus useful for scoring channels. See
512         /// [`Event::PaymentSent`] for obtaining the payment preimage.
513         PaymentPathSuccessful {
514                 /// The `payment_id` passed to [`ChannelManager::send_payment`].
515                 ///
516                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
517                 payment_id: PaymentId,
518                 /// The hash that was given to [`ChannelManager::send_payment`].
519                 ///
520                 /// This will be `Some` for all payments which completed on LDK 0.0.104 or later.
521                 ///
522                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
523                 payment_hash: Option<PaymentHash>,
524                 /// The payment path that was successful.
525                 ///
526                 /// May contain a closed channel if the HTLC sent along the path was fulfilled on chain.
527                 path: Path,
528         },
529         /// Indicates an outbound HTLC we sent failed, likely due to an intermediary node being unable to
530         /// handle the HTLC.
531         ///
532         /// Note that this does *not* indicate that all paths for an MPP payment have failed, see
533         /// [`Event::PaymentFailed`].
534         ///
535         /// See [`ChannelManager::abandon_payment`] for giving up on this payment before its retries have
536         /// been exhausted.
537         ///
538         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
539         PaymentPathFailed {
540                 /// The `payment_id` passed to [`ChannelManager::send_payment`].
541                 ///
542                 /// This will be `Some` for all payment paths which failed on LDK 0.0.103 or later.
543                 ///
544                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
545                 /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
546                 payment_id: Option<PaymentId>,
547                 /// The hash that was given to [`ChannelManager::send_payment`].
548                 ///
549                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
550                 payment_hash: PaymentHash,
551                 /// Indicates the payment was rejected for some reason by the recipient. This implies that
552                 /// the payment has failed, not just the route in question. If this is not set, the payment may
553                 /// be retried via a different route.
554                 payment_failed_permanently: bool,
555                 /// Extra error details based on the failure type. May contain an update that needs to be
556                 /// applied to the [`NetworkGraph`].
557                 ///
558                 /// [`NetworkGraph`]: crate::routing::gossip::NetworkGraph
559                 failure: PathFailure,
560                 /// The payment path that failed.
561                 path: Path,
562                 /// The channel responsible for the failed payment path.
563                 ///
564                 /// Note that for route hints or for the first hop in a path this may be an SCID alias and
565                 /// may not refer to a channel in the public network graph. These aliases may also collide
566                 /// with channels in the public network graph.
567                 ///
568                 /// If this is `Some`, then the corresponding channel should be avoided when the payment is
569                 /// retried. May be `None` for older [`Event`] serializations.
570                 short_channel_id: Option<u64>,
571 #[cfg(test)]
572                 error_code: Option<u16>,
573 #[cfg(test)]
574                 error_data: Option<Vec<u8>>,
575         },
576         /// Indicates that a probe payment we sent returned successful, i.e., only failed at the destination.
577         ProbeSuccessful {
578                 /// The id returned by [`ChannelManager::send_probe`].
579                 ///
580                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
581                 payment_id: PaymentId,
582                 /// The hash generated by [`ChannelManager::send_probe`].
583                 ///
584                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
585                 payment_hash: PaymentHash,
586                 /// The payment path that was successful.
587                 path: Path,
588         },
589         /// Indicates that a probe payment we sent failed at an intermediary node on the path.
590         ProbeFailed {
591                 /// The id returned by [`ChannelManager::send_probe`].
592                 ///
593                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
594                 payment_id: PaymentId,
595                 /// The hash generated by [`ChannelManager::send_probe`].
596                 ///
597                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
598                 payment_hash: PaymentHash,
599                 /// The payment path that failed.
600                 path: Path,
601                 /// The channel responsible for the failed probe.
602                 ///
603                 /// Note that for route hints or for the first hop in a path this may be an SCID alias and
604                 /// may not refer to a channel in the public network graph. These aliases may also collide
605                 /// with channels in the public network graph.
606                 short_channel_id: Option<u64>,
607         },
608         /// Used to indicate that [`ChannelManager::process_pending_htlc_forwards`] should be called at
609         /// a time in the future.
610         ///
611         /// [`ChannelManager::process_pending_htlc_forwards`]: crate::ln::channelmanager::ChannelManager::process_pending_htlc_forwards
612         PendingHTLCsForwardable {
613                 /// The minimum amount of time that should be waited prior to calling
614                 /// process_pending_htlc_forwards. To increase the effort required to correlate payments,
615                 /// you should wait a random amount of time in roughly the range (now + time_forwardable,
616                 /// now + 5*time_forwardable).
617                 time_forwardable: Duration,
618         },
619         /// Used to indicate that we've intercepted an HTLC forward. This event will only be generated if
620         /// you've encoded an intercept scid in the receiver's invoice route hints using
621         /// [`ChannelManager::get_intercept_scid`] and have set [`UserConfig::accept_intercept_htlcs`].
622         ///
623         /// [`ChannelManager::forward_intercepted_htlc`] or
624         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to this event. See
625         /// their docs for more information.
626         ///
627         /// [`ChannelManager::get_intercept_scid`]: crate::ln::channelmanager::ChannelManager::get_intercept_scid
628         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
629         /// [`ChannelManager::forward_intercepted_htlc`]: crate::ln::channelmanager::ChannelManager::forward_intercepted_htlc
630         /// [`ChannelManager::fail_intercepted_htlc`]: crate::ln::channelmanager::ChannelManager::fail_intercepted_htlc
631         HTLCIntercepted {
632                 /// An id to help LDK identify which HTLC is being forwarded or failed.
633                 intercept_id: InterceptId,
634                 /// The fake scid that was programmed as the next hop's scid, generated using
635                 /// [`ChannelManager::get_intercept_scid`].
636                 ///
637                 /// [`ChannelManager::get_intercept_scid`]: crate::ln::channelmanager::ChannelManager::get_intercept_scid
638                 requested_next_hop_scid: u64,
639                 /// The payment hash used for this HTLC.
640                 payment_hash: PaymentHash,
641                 /// How many msats were received on the inbound edge of this HTLC.
642                 inbound_amount_msat: u64,
643                 /// How many msats the payer intended to route to the next node. Depending on the reason you are
644                 /// intercepting this payment, you might take a fee by forwarding less than this amount.
645                 /// Forwarding less than this amount may break compatibility with LDK versions prior to 0.0.116.
646                 ///
647                 /// Note that LDK will NOT check that expected fees were factored into this value. You MUST
648                 /// check that whatever fee you want has been included here or subtract it as required. Further,
649                 /// LDK will not stop you from forwarding more than you received.
650                 expected_outbound_amount_msat: u64,
651         },
652         /// Used to indicate that an output which you should know how to spend was confirmed on chain
653         /// and is now spendable.
654         /// Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
655         /// counterparty spending them due to some kind of timeout. Thus, you need to store them
656         /// somewhere and spend them when you create on-chain transactions.
657         SpendableOutputs {
658                 /// The outputs which you should store as spendable by you.
659                 outputs: Vec<SpendableOutputDescriptor>,
660         },
661         /// This event is generated when a payment has been successfully forwarded through us and a
662         /// forwarding fee earned.
663         PaymentForwarded {
664                 /// The incoming channel between the previous node and us. This is only `None` for events
665                 /// generated or serialized by versions prior to 0.0.107.
666                 prev_channel_id: Option<[u8; 32]>,
667                 /// The outgoing channel between the next node and us. This is only `None` for events
668                 /// generated or serialized by versions prior to 0.0.107.
669                 next_channel_id: Option<[u8; 32]>,
670                 /// The fee, in milli-satoshis, which was earned as a result of the payment.
671                 ///
672                 /// Note that if we force-closed the channel over which we forwarded an HTLC while the HTLC
673                 /// was pending, the amount the next hop claimed will have been rounded down to the nearest
674                 /// whole satoshi. Thus, the fee calculated here may be higher than expected as we still
675                 /// claimed the full value in millisatoshis from the source. In this case,
676                 /// `claim_from_onchain_tx` will be set.
677                 ///
678                 /// If the channel which sent us the payment has been force-closed, we will claim the funds
679                 /// via an on-chain transaction. In that case we do not yet know the on-chain transaction
680                 /// fees which we will spend and will instead set this to `None`. It is possible duplicate
681                 /// `PaymentForwarded` events are generated for the same payment iff `fee_earned_msat` is
682                 /// `None`.
683                 fee_earned_msat: Option<u64>,
684                 /// If this is `true`, the forwarded HTLC was claimed by our counterparty via an on-chain
685                 /// transaction.
686                 claim_from_onchain_tx: bool,
687                 /// The final amount forwarded, in milli-satoshis, after the fee is deducted.
688                 ///
689                 /// The caveat described above the `fee_earned_msat` field applies here as well.
690                 outbound_amount_forwarded_msat: Option<u64>,
691         },
692         /// Used to indicate that a channel with the given `channel_id` is being opened and pending
693         /// confirmation on-chain.
694         ///
695         /// This event is emitted when the funding transaction has been signed and is broadcast to the
696         /// network. For 0conf channels it will be immediately followed by the corresponding
697         /// [`Event::ChannelReady`] event.
698         ChannelPending {
699                 /// The `channel_id` of the channel that is pending confirmation.
700                 channel_id: [u8; 32],
701                 /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
702                 /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
703                 /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
704                 /// `user_channel_id` will be randomized for an inbound channel.
705                 ///
706                 /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
707                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
708                 /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
709                 user_channel_id: u128,
710                 /// The `temporary_channel_id` this channel used to be known by during channel establishment.
711                 ///
712                 /// Will be `None` for channels created prior to LDK version 0.0.115.
713                 former_temporary_channel_id: Option<[u8; 32]>,
714                 /// The `node_id` of the channel counterparty.
715                 counterparty_node_id: PublicKey,
716                 /// The outpoint of the channel's funding transaction.
717                 funding_txo: OutPoint,
718         },
719         /// Used to indicate that a channel with the given `channel_id` is ready to
720         /// be used. This event is emitted either when the funding transaction has been confirmed
721         /// on-chain, or, in case of a 0conf channel, when both parties have confirmed the channel
722         /// establishment.
723         ChannelReady {
724                 /// The `channel_id` of the channel that is ready.
725                 channel_id: [u8; 32],
726                 /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
727                 /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
728                 /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
729                 /// `user_channel_id` will be randomized for an inbound channel.
730                 ///
731                 /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
732                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
733                 /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
734                 user_channel_id: u128,
735                 /// The `node_id` of the channel counterparty.
736                 counterparty_node_id: PublicKey,
737                 /// The features that this channel will operate with.
738                 channel_type: ChannelTypeFeatures,
739         },
740         /// Used to indicate that a previously opened channel with the given `channel_id` is in the
741         /// process of closure.
742         ChannelClosed  {
743                 /// The `channel_id` of the channel which has been closed. Note that on-chain transactions
744                 /// resolving the channel are likely still awaiting confirmation.
745                 channel_id: [u8; 32],
746                 /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
747                 /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
748                 /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
749                 /// `user_channel_id` will be randomized for inbound channels.
750                 /// This may be zero for inbound channels serialized prior to 0.0.113 and will always be
751                 /// zero for objects serialized with LDK versions prior to 0.0.102.
752                 ///
753                 /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
754                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
755                 /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
756                 user_channel_id: u128,
757                 /// The reason the channel was closed.
758                 reason: ClosureReason,
759                 /// Counterparty in the closed channel. 
760                 /// 
761                 /// This field will be `None` for objects serialized prior to LDK 0.0.117.
762                 counterparty_node_id: Option<PublicKey>,
763                 /// Channel capacity of the closing channel (sats). 
764                 /// 
765                 /// This field will be `None` for objects serialized prior to LDK 0.0.117.
766                 channel_capacity_sats: Option<u64>,
767         },
768         /// Used to indicate to the user that they can abandon the funding transaction and recycle the
769         /// inputs for another purpose.
770         DiscardFunding {
771                 /// The channel_id of the channel which has been closed.
772                 channel_id: [u8; 32],
773                 /// The full transaction received from the user
774                 transaction: Transaction
775         },
776         /// Indicates a request to open a new channel by a peer.
777         ///
778         /// To accept the request, call [`ChannelManager::accept_inbound_channel`]. To reject the
779         /// request, call [`ChannelManager::force_close_without_broadcasting_txn`].
780         ///
781         /// The event is only triggered when a new open channel request is received and the
782         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true.
783         ///
784         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
785         /// [`ChannelManager::force_close_without_broadcasting_txn`]: crate::ln::channelmanager::ChannelManager::force_close_without_broadcasting_txn
786         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
787         OpenChannelRequest {
788                 /// The temporary channel ID of the channel requested to be opened.
789                 ///
790                 /// When responding to the request, the `temporary_channel_id` should be passed
791                 /// back to the ChannelManager through [`ChannelManager::accept_inbound_channel`] to accept,
792                 /// or through [`ChannelManager::force_close_without_broadcasting_txn`] to reject.
793                 ///
794                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
795                 /// [`ChannelManager::force_close_without_broadcasting_txn`]: crate::ln::channelmanager::ChannelManager::force_close_without_broadcasting_txn
796                 temporary_channel_id: [u8; 32],
797                 /// The node_id of the counterparty requesting to open the channel.
798                 ///
799                 /// When responding to the request, the `counterparty_node_id` should be passed
800                 /// back to the `ChannelManager` through [`ChannelManager::accept_inbound_channel`] to
801                 /// accept the request, or through [`ChannelManager::force_close_without_broadcasting_txn`] to reject the
802                 /// request.
803                 ///
804                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
805                 /// [`ChannelManager::force_close_without_broadcasting_txn`]: crate::ln::channelmanager::ChannelManager::force_close_without_broadcasting_txn
806                 counterparty_node_id: PublicKey,
807                 /// The channel value of the requested channel.
808                 funding_satoshis: u64,
809                 /// Our starting balance in the channel if the request is accepted, in milli-satoshi.
810                 push_msat: u64,
811                 /// The features that this channel will operate with. If you reject the channel, a
812                 /// well-behaved counterparty may automatically re-attempt the channel with a new set of
813                 /// feature flags.
814                 ///
815                 /// Note that if [`ChannelTypeFeatures::supports_scid_privacy`] returns true on this type,
816                 /// the resulting [`ChannelManager`] will not be readable by versions of LDK prior to
817                 /// 0.0.106.
818                 ///
819                 /// Furthermore, note that if [`ChannelTypeFeatures::supports_zero_conf`] returns true on this type,
820                 /// the resulting [`ChannelManager`] will not be readable by versions of LDK prior to
821                 /// 0.0.107. Channels setting this type also need to get manually accepted via
822                 /// [`crate::ln::channelmanager::ChannelManager::accept_inbound_channel_from_trusted_peer_0conf`],
823                 /// or will be rejected otherwise.
824                 ///
825                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
826                 channel_type: ChannelTypeFeatures,
827         },
828         /// Indicates that the HTLC was accepted, but could not be processed when or after attempting to
829         /// forward it.
830         ///
831         /// Some scenarios where this event may be sent include:
832         /// * Insufficient capacity in the outbound channel
833         /// * While waiting to forward the HTLC, the channel it is meant to be forwarded through closes
834         /// * When an unknown SCID is requested for forwarding a payment.
835         /// * Expected MPP amount has already been reached
836         /// * The HTLC has timed out
837         ///
838         /// This event, however, does not get generated if an HTLC fails to meet the forwarding
839         /// requirements (i.e. insufficient fees paid, or a CLTV that is too soon).
840         HTLCHandlingFailed {
841                 /// The channel over which the HTLC was received.
842                 prev_channel_id: [u8; 32],
843                 /// Destination of the HTLC that failed to be processed.
844                 failed_next_destination: HTLCDestination,
845         },
846         /// Indicates that a transaction originating from LDK needs to have its fee bumped. This event
847         /// requires confirmed external funds to be readily available to spend.
848         ///
849         /// LDK does not currently generate this event unless the
850         /// [`ChannelHandshakeConfig::negotiate_anchors_zero_fee_htlc_tx`] config flag is set to true.
851         /// It is limited to the scope of channels with anchor outputs.
852         ///
853         /// [`ChannelHandshakeConfig::negotiate_anchors_zero_fee_htlc_tx`]: crate::util::config::ChannelHandshakeConfig::negotiate_anchors_zero_fee_htlc_tx
854         BumpTransaction(BumpTransactionEvent),
855 }
856
857 impl Writeable for Event {
858         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
859                 match self {
860                         &Event::FundingGenerationReady { .. } => {
861                                 0u8.write(writer)?;
862                                 // We never write out FundingGenerationReady events as, upon disconnection, peers
863                                 // drop any channels which have not yet exchanged funding_signed.
864                         },
865                         &Event::PaymentClaimable { ref payment_hash, ref amount_msat, counterparty_skimmed_fee_msat,
866                                 ref purpose, ref receiver_node_id, ref via_channel_id, ref via_user_channel_id,
867                                 ref claim_deadline, ref onion_fields
868                         } => {
869                                 1u8.write(writer)?;
870                                 let mut payment_secret = None;
871                                 let payment_preimage;
872                                 match &purpose {
873                                         PaymentPurpose::InvoicePayment { payment_preimage: preimage, payment_secret: secret } => {
874                                                 payment_secret = Some(secret);
875                                                 payment_preimage = *preimage;
876                                         },
877                                         PaymentPurpose::SpontaneousPayment(preimage) => {
878                                                 payment_preimage = Some(*preimage);
879                                         }
880                                 }
881                                 let skimmed_fee_opt = if counterparty_skimmed_fee_msat == 0 { None }
882                                         else { Some(counterparty_skimmed_fee_msat) };
883                                 write_tlv_fields!(writer, {
884                                         (0, payment_hash, required),
885                                         (1, receiver_node_id, option),
886                                         (2, payment_secret, option),
887                                         (3, via_channel_id, option),
888                                         (4, amount_msat, required),
889                                         (5, via_user_channel_id, option),
890                                         // Type 6 was `user_payment_id` on 0.0.103 and earlier
891                                         (7, claim_deadline, option),
892                                         (8, payment_preimage, option),
893                                         (9, onion_fields, option),
894                                         (10, skimmed_fee_opt, option),
895                                 });
896                         },
897                         &Event::PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref fee_paid_msat } => {
898                                 2u8.write(writer)?;
899                                 write_tlv_fields!(writer, {
900                                         (0, payment_preimage, required),
901                                         (1, payment_hash, required),
902                                         (3, payment_id, option),
903                                         (5, fee_paid_msat, option),
904                                 });
905                         },
906                         &Event::PaymentPathFailed {
907                                 ref payment_id, ref payment_hash, ref payment_failed_permanently, ref failure,
908                                 ref path, ref short_channel_id,
909                                 #[cfg(test)]
910                                 ref error_code,
911                                 #[cfg(test)]
912                                 ref error_data,
913                         } => {
914                                 3u8.write(writer)?;
915                                 #[cfg(test)]
916                                 error_code.write(writer)?;
917                                 #[cfg(test)]
918                                 error_data.write(writer)?;
919                                 write_tlv_fields!(writer, {
920                                         (0, payment_hash, required),
921                                         (1, None::<NetworkUpdate>, option), // network_update in LDK versions prior to 0.0.114
922                                         (2, payment_failed_permanently, required),
923                                         (3, false, required), // all_paths_failed in LDK versions prior to 0.0.114
924                                         (4, path.blinded_tail, option),
925                                         (5, path.hops, required_vec),
926                                         (7, short_channel_id, option),
927                                         (9, None::<RouteParameters>, option), // retry in LDK versions prior to 0.0.115
928                                         (11, payment_id, option),
929                                         (13, failure, required),
930                                 });
931                         },
932                         &Event::PendingHTLCsForwardable { time_forwardable: _ } => {
933                                 4u8.write(writer)?;
934                                 // Note that we now ignore these on the read end as we'll re-generate them in
935                                 // ChannelManager, we write them here only for backwards compatibility.
936                         },
937                         &Event::SpendableOutputs { ref outputs } => {
938                                 5u8.write(writer)?;
939                                 write_tlv_fields!(writer, {
940                                         (0, WithoutLength(outputs), required),
941                                 });
942                         },
943                         &Event::HTLCIntercepted { requested_next_hop_scid, payment_hash, inbound_amount_msat, expected_outbound_amount_msat, intercept_id } => {
944                                 6u8.write(writer)?;
945                                 let intercept_scid = InterceptNextHop::FakeScid { requested_next_hop_scid };
946                                 write_tlv_fields!(writer, {
947                                         (0, intercept_id, required),
948                                         (2, intercept_scid, required),
949                                         (4, payment_hash, required),
950                                         (6, inbound_amount_msat, required),
951                                         (8, expected_outbound_amount_msat, required),
952                                 });
953                         }
954                         &Event::PaymentForwarded {
955                                 fee_earned_msat, prev_channel_id, claim_from_onchain_tx,
956                                 next_channel_id, outbound_amount_forwarded_msat
957                         } => {
958                                 7u8.write(writer)?;
959                                 write_tlv_fields!(writer, {
960                                         (0, fee_earned_msat, option),
961                                         (1, prev_channel_id, option),
962                                         (2, claim_from_onchain_tx, required),
963                                         (3, next_channel_id, option),
964                                         (5, outbound_amount_forwarded_msat, option),
965                                 });
966                         },
967                         &Event::ChannelClosed { ref channel_id, ref user_channel_id, ref reason, 
968                                 ref counterparty_node_id, ref channel_capacity_sats 
969                         } => {
970                                 9u8.write(writer)?;
971                                 // `user_channel_id` used to be a single u64 value. In order to remain backwards
972                                 // compatible with versions prior to 0.0.113, the u128 is serialized as two
973                                 // separate u64 values.
974                                 let user_channel_id_low = *user_channel_id as u64;
975                                 let user_channel_id_high = (*user_channel_id >> 64) as u64;
976                                 write_tlv_fields!(writer, {
977                                         (0, channel_id, required),
978                                         (1, user_channel_id_low, required),
979                                         (2, reason, required),
980                                         (3, user_channel_id_high, required),
981                                         (5, counterparty_node_id, option),
982                                         (7, channel_capacity_sats, option),
983                                 });
984                         },
985                         &Event::DiscardFunding { ref channel_id, ref transaction } => {
986                                 11u8.write(writer)?;
987                                 write_tlv_fields!(writer, {
988                                         (0, channel_id, required),
989                                         (2, transaction, required)
990                                 })
991                         },
992                         &Event::PaymentPathSuccessful { ref payment_id, ref payment_hash, ref path } => {
993                                 13u8.write(writer)?;
994                                 write_tlv_fields!(writer, {
995                                         (0, payment_id, required),
996                                         (2, payment_hash, option),
997                                         (4, path.hops, required_vec),
998                                         (6, path.blinded_tail, option),
999                                 })
1000                         },
1001                         &Event::PaymentFailed { ref payment_id, ref payment_hash, ref reason } => {
1002                                 15u8.write(writer)?;
1003                                 write_tlv_fields!(writer, {
1004                                         (0, payment_id, required),
1005                                         (1, reason, option),
1006                                         (2, payment_hash, required),
1007                                 })
1008                         },
1009                         &Event::OpenChannelRequest { .. } => {
1010                                 17u8.write(writer)?;
1011                                 // We never write the OpenChannelRequest events as, upon disconnection, peers
1012                                 // drop any channels which have not yet exchanged funding_signed.
1013                         },
1014                         &Event::PaymentClaimed { ref payment_hash, ref amount_msat, ref purpose, ref receiver_node_id } => {
1015                                 19u8.write(writer)?;
1016                                 write_tlv_fields!(writer, {
1017                                         (0, payment_hash, required),
1018                                         (1, receiver_node_id, option),
1019                                         (2, purpose, required),
1020                                         (4, amount_msat, required),
1021                                 });
1022                         },
1023                         &Event::ProbeSuccessful { ref payment_id, ref payment_hash, ref path } => {
1024                                 21u8.write(writer)?;
1025                                 write_tlv_fields!(writer, {
1026                                         (0, payment_id, required),
1027                                         (2, payment_hash, required),
1028                                         (4, path.hops, required_vec),
1029                                         (6, path.blinded_tail, option),
1030                                 })
1031                         },
1032                         &Event::ProbeFailed { ref payment_id, ref payment_hash, ref path, ref short_channel_id } => {
1033                                 23u8.write(writer)?;
1034                                 write_tlv_fields!(writer, {
1035                                         (0, payment_id, required),
1036                                         (2, payment_hash, required),
1037                                         (4, path.hops, required_vec),
1038                                         (6, short_channel_id, option),
1039                                         (8, path.blinded_tail, option),
1040                                 })
1041                         },
1042                         &Event::HTLCHandlingFailed { ref prev_channel_id, ref failed_next_destination } => {
1043                                 25u8.write(writer)?;
1044                                 write_tlv_fields!(writer, {
1045                                         (0, prev_channel_id, required),
1046                                         (2, failed_next_destination, required),
1047                                 })
1048                         },
1049                         &Event::BumpTransaction(ref event)=> {
1050                                 27u8.write(writer)?;
1051                                 match event {
1052                                         // We never write the ChannelClose|HTLCResolution events as they'll be replayed
1053                                         // upon restarting anyway if they remain unresolved.
1054                                         BumpTransactionEvent::ChannelClose { .. } => {}
1055                                         BumpTransactionEvent::HTLCResolution { .. } => {}
1056                                 }
1057                                 write_tlv_fields!(writer, {}); // Write a length field for forwards compat
1058                         }
1059                         &Event::ChannelReady { ref channel_id, ref user_channel_id, ref counterparty_node_id, ref channel_type } => {
1060                                 29u8.write(writer)?;
1061                                 write_tlv_fields!(writer, {
1062                                         (0, channel_id, required),
1063                                         (2, user_channel_id, required),
1064                                         (4, counterparty_node_id, required),
1065                                         (6, channel_type, required),
1066                                 });
1067                         },
1068                         &Event::ChannelPending { ref channel_id, ref user_channel_id, ref former_temporary_channel_id, ref counterparty_node_id, ref funding_txo } => {
1069                                 31u8.write(writer)?;
1070                                 write_tlv_fields!(writer, {
1071                                         (0, channel_id, required),
1072                                         (2, user_channel_id, required),
1073                                         (4, former_temporary_channel_id, required),
1074                                         (6, counterparty_node_id, required),
1075                                         (8, funding_txo, required),
1076                                 });
1077                         },
1078                         // Note that, going forward, all new events must only write data inside of
1079                         // `write_tlv_fields`. Versions 0.0.101+ will ignore odd-numbered events that write
1080                         // data via `write_tlv_fields`.
1081                 }
1082                 Ok(())
1083         }
1084 }
1085 impl MaybeReadable for Event {
1086         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, msgs::DecodeError> {
1087                 match Readable::read(reader)? {
1088                         // Note that we do not write a length-prefixed TLV for FundingGenerationReady events,
1089                         // unlike all other events, thus we return immediately here.
1090                         0u8 => Ok(None),
1091                         1u8 => {
1092                                 let f = || {
1093                                         let mut payment_hash = PaymentHash([0; 32]);
1094                                         let mut payment_preimage = None;
1095                                         let mut payment_secret = None;
1096                                         let mut amount_msat = 0;
1097                                         let mut counterparty_skimmed_fee_msat_opt = None;
1098                                         let mut receiver_node_id = None;
1099                                         let mut _user_payment_id = None::<u64>; // Used in 0.0.103 and earlier, no longer written in 0.0.116+.
1100                                         let mut via_channel_id = None;
1101                                         let mut claim_deadline = None;
1102                                         let mut via_user_channel_id = None;
1103                                         let mut onion_fields = None;
1104                                         read_tlv_fields!(reader, {
1105                                                 (0, payment_hash, required),
1106                                                 (1, receiver_node_id, option),
1107                                                 (2, payment_secret, option),
1108                                                 (3, via_channel_id, option),
1109                                                 (4, amount_msat, required),
1110                                                 (5, via_user_channel_id, option),
1111                                                 (6, _user_payment_id, option),
1112                                                 (7, claim_deadline, option),
1113                                                 (8, payment_preimage, option),
1114                                                 (9, onion_fields, option),
1115                                                 (10, counterparty_skimmed_fee_msat_opt, option),
1116                                         });
1117                                         let purpose = match payment_secret {
1118                                                 Some(secret) => PaymentPurpose::InvoicePayment {
1119                                                         payment_preimage,
1120                                                         payment_secret: secret
1121                                                 },
1122                                                 None if payment_preimage.is_some() => PaymentPurpose::SpontaneousPayment(payment_preimage.unwrap()),
1123                                                 None => return Err(msgs::DecodeError::InvalidValue),
1124                                         };
1125                                         Ok(Some(Event::PaymentClaimable {
1126                                                 receiver_node_id,
1127                                                 payment_hash,
1128                                                 amount_msat,
1129                                                 counterparty_skimmed_fee_msat: counterparty_skimmed_fee_msat_opt.unwrap_or(0),
1130                                                 purpose,
1131                                                 via_channel_id,
1132                                                 via_user_channel_id,
1133                                                 claim_deadline,
1134                                                 onion_fields,
1135                                         }))
1136                                 };
1137                                 f()
1138                         },
1139                         2u8 => {
1140                                 let f = || {
1141                                         let mut payment_preimage = PaymentPreimage([0; 32]);
1142                                         let mut payment_hash = None;
1143                                         let mut payment_id = None;
1144                                         let mut fee_paid_msat = None;
1145                                         read_tlv_fields!(reader, {
1146                                                 (0, payment_preimage, required),
1147                                                 (1, payment_hash, option),
1148                                                 (3, payment_id, option),
1149                                                 (5, fee_paid_msat, option),
1150                                         });
1151                                         if payment_hash.is_none() {
1152                                                 payment_hash = Some(PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner()));
1153                                         }
1154                                         Ok(Some(Event::PaymentSent {
1155                                                 payment_id,
1156                                                 payment_preimage,
1157                                                 payment_hash: payment_hash.unwrap(),
1158                                                 fee_paid_msat,
1159                                         }))
1160                                 };
1161                                 f()
1162                         },
1163                         3u8 => {
1164                                 let f = || {
1165                                         #[cfg(test)]
1166                                         let error_code = Readable::read(reader)?;
1167                                         #[cfg(test)]
1168                                         let error_data = Readable::read(reader)?;
1169                                         let mut payment_hash = PaymentHash([0; 32]);
1170                                         let mut payment_failed_permanently = false;
1171                                         let mut network_update = None;
1172                                         let mut blinded_tail: Option<BlindedTail> = None;
1173                                         let mut path: Option<Vec<RouteHop>> = Some(vec![]);
1174                                         let mut short_channel_id = None;
1175                                         let mut payment_id = None;
1176                                         let mut failure_opt = None;
1177                                         read_tlv_fields!(reader, {
1178                                                 (0, payment_hash, required),
1179                                                 (1, network_update, upgradable_option),
1180                                                 (2, payment_failed_permanently, required),
1181                                                 (4, blinded_tail, option),
1182                                                 // Added as a part of LDK 0.0.101 and always filled in since.
1183                                                 // Defaults to an empty Vec, though likely should have been `Option`al.
1184                                                 (5, path, optional_vec),
1185                                                 (7, short_channel_id, option),
1186                                                 (11, payment_id, option),
1187                                                 (13, failure_opt, upgradable_option),
1188                                         });
1189                                         let failure = failure_opt.unwrap_or_else(|| PathFailure::OnPath { network_update });
1190                                         Ok(Some(Event::PaymentPathFailed {
1191                                                 payment_id,
1192                                                 payment_hash,
1193                                                 payment_failed_permanently,
1194                                                 failure,
1195                                                 path: Path { hops: path.unwrap(), blinded_tail },
1196                                                 short_channel_id,
1197                                                 #[cfg(test)]
1198                                                 error_code,
1199                                                 #[cfg(test)]
1200                                                 error_data,
1201                                         }))
1202                                 };
1203                                 f()
1204                         },
1205                         4u8 => Ok(None),
1206                         5u8 => {
1207                                 let f = || {
1208                                         let mut outputs = WithoutLength(Vec::new());
1209                                         read_tlv_fields!(reader, {
1210                                                 (0, outputs, required),
1211                                         });
1212                                         Ok(Some(Event::SpendableOutputs { outputs: outputs.0 }))
1213                                 };
1214                                 f()
1215                         },
1216                         6u8 => {
1217                                 let mut payment_hash = PaymentHash([0; 32]);
1218                                 let mut intercept_id = InterceptId([0; 32]);
1219                                 let mut requested_next_hop_scid = InterceptNextHop::FakeScid { requested_next_hop_scid: 0 };
1220                                 let mut inbound_amount_msat = 0;
1221                                 let mut expected_outbound_amount_msat = 0;
1222                                 read_tlv_fields!(reader, {
1223                                         (0, intercept_id, required),
1224                                         (2, requested_next_hop_scid, required),
1225                                         (4, payment_hash, required),
1226                                         (6, inbound_amount_msat, required),
1227                                         (8, expected_outbound_amount_msat, required),
1228                                 });
1229                                 let next_scid = match requested_next_hop_scid {
1230                                         InterceptNextHop::FakeScid { requested_next_hop_scid: scid } => scid
1231                                 };
1232                                 Ok(Some(Event::HTLCIntercepted {
1233                                         payment_hash,
1234                                         requested_next_hop_scid: next_scid,
1235                                         inbound_amount_msat,
1236                                         expected_outbound_amount_msat,
1237                                         intercept_id,
1238                                 }))
1239                         },
1240                         7u8 => {
1241                                 let f = || {
1242                                         let mut fee_earned_msat = None;
1243                                         let mut prev_channel_id = None;
1244                                         let mut claim_from_onchain_tx = false;
1245                                         let mut next_channel_id = None;
1246                                         let mut outbound_amount_forwarded_msat = None;
1247                                         read_tlv_fields!(reader, {
1248                                                 (0, fee_earned_msat, option),
1249                                                 (1, prev_channel_id, option),
1250                                                 (2, claim_from_onchain_tx, required),
1251                                                 (3, next_channel_id, option),
1252                                                 (5, outbound_amount_forwarded_msat, option),
1253                                         });
1254                                         Ok(Some(Event::PaymentForwarded {
1255                                                 fee_earned_msat, prev_channel_id, claim_from_onchain_tx, next_channel_id,
1256                                                 outbound_amount_forwarded_msat
1257                                         }))
1258                                 };
1259                                 f()
1260                         },
1261                         9u8 => {
1262                                 let f = || {
1263                                         let mut channel_id = [0; 32];
1264                                         let mut reason = UpgradableRequired(None);
1265                                         let mut user_channel_id_low_opt: Option<u64> = None;
1266                                         let mut user_channel_id_high_opt: Option<u64> = None;
1267                                         let mut counterparty_node_id = None;
1268                                         let mut channel_capacity_sats = None;
1269                                         read_tlv_fields!(reader, {
1270                                                 (0, channel_id, required),
1271                                                 (1, user_channel_id_low_opt, option),
1272                                                 (2, reason, upgradable_required),
1273                                                 (3, user_channel_id_high_opt, option),
1274                                                 (5, counterparty_node_id, option),
1275                                                 (7, channel_capacity_sats, option),
1276                                         });
1277
1278                                         // `user_channel_id` used to be a single u64 value. In order to remain
1279                                         // backwards compatible with versions prior to 0.0.113, the u128 is serialized
1280                                         // as two separate u64 values.
1281                                         let user_channel_id = (user_channel_id_low_opt.unwrap_or(0) as u128) +
1282                                                 ((user_channel_id_high_opt.unwrap_or(0) as u128) << 64);
1283
1284                                         Ok(Some(Event::ChannelClosed { channel_id, user_channel_id, reason: _init_tlv_based_struct_field!(reason, upgradable_required),
1285                                                 counterparty_node_id, channel_capacity_sats }))
1286                                 };
1287                                 f()
1288                         },
1289                         11u8 => {
1290                                 let f = || {
1291                                         let mut channel_id = [0; 32];
1292                                         let mut transaction = Transaction{ version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: Vec::new() };
1293                                         read_tlv_fields!(reader, {
1294                                                 (0, channel_id, required),
1295                                                 (2, transaction, required),
1296                                         });
1297                                         Ok(Some(Event::DiscardFunding { channel_id, transaction } ))
1298                                 };
1299                                 f()
1300                         },
1301                         13u8 => {
1302                                 let f = || {
1303                                         _init_and_read_tlv_fields!(reader, {
1304                                                 (0, payment_id, required),
1305                                                 (2, payment_hash, option),
1306                                                 (4, path, required_vec),
1307                                                 (6, blinded_tail, option),
1308                                         });
1309                                         Ok(Some(Event::PaymentPathSuccessful {
1310                                                 payment_id: payment_id.0.unwrap(),
1311                                                 payment_hash,
1312                                                 path: Path { hops: path, blinded_tail },
1313                                         }))
1314                                 };
1315                                 f()
1316                         },
1317                         15u8 => {
1318                                 let f = || {
1319                                         let mut payment_hash = PaymentHash([0; 32]);
1320                                         let mut payment_id = PaymentId([0; 32]);
1321                                         let mut reason = None;
1322                                         read_tlv_fields!(reader, {
1323                                                 (0, payment_id, required),
1324                                                 (1, reason, upgradable_option),
1325                                                 (2, payment_hash, required),
1326                                         });
1327                                         Ok(Some(Event::PaymentFailed {
1328                                                 payment_id,
1329                                                 payment_hash,
1330                                                 reason,
1331                                         }))
1332                                 };
1333                                 f()
1334                         },
1335                         17u8 => {
1336                                 // Value 17 is used for `Event::OpenChannelRequest`.
1337                                 Ok(None)
1338                         },
1339                         19u8 => {
1340                                 let f = || {
1341                                         let mut payment_hash = PaymentHash([0; 32]);
1342                                         let mut purpose = UpgradableRequired(None);
1343                                         let mut amount_msat = 0;
1344                                         let mut receiver_node_id = None;
1345                                         read_tlv_fields!(reader, {
1346                                                 (0, payment_hash, required),
1347                                                 (1, receiver_node_id, option),
1348                                                 (2, purpose, upgradable_required),
1349                                                 (4, amount_msat, required),
1350                                         });
1351                                         Ok(Some(Event::PaymentClaimed {
1352                                                 receiver_node_id,
1353                                                 payment_hash,
1354                                                 purpose: _init_tlv_based_struct_field!(purpose, upgradable_required),
1355                                                 amount_msat,
1356                                         }))
1357                                 };
1358                                 f()
1359                         },
1360                         21u8 => {
1361                                 let f = || {
1362                                         _init_and_read_tlv_fields!(reader, {
1363                                                 (0, payment_id, required),
1364                                                 (2, payment_hash, required),
1365                                                 (4, path, required_vec),
1366                                                 (6, blinded_tail, option),
1367                                         });
1368                                         Ok(Some(Event::ProbeSuccessful {
1369                                                 payment_id: payment_id.0.unwrap(),
1370                                                 payment_hash: payment_hash.0.unwrap(),
1371                                                 path: Path { hops: path, blinded_tail },
1372                                         }))
1373                                 };
1374                                 f()
1375                         },
1376                         23u8 => {
1377                                 let f = || {
1378                                         _init_and_read_tlv_fields!(reader, {
1379                                                 (0, payment_id, required),
1380                                                 (2, payment_hash, required),
1381                                                 (4, path, required_vec),
1382                                                 (6, short_channel_id, option),
1383                                                 (8, blinded_tail, option),
1384                                         });
1385                                         Ok(Some(Event::ProbeFailed {
1386                                                 payment_id: payment_id.0.unwrap(),
1387                                                 payment_hash: payment_hash.0.unwrap(),
1388                                                 path: Path { hops: path, blinded_tail },
1389                                                 short_channel_id,
1390                                         }))
1391                                 };
1392                                 f()
1393                         },
1394                         25u8 => {
1395                                 let f = || {
1396                                         let mut prev_channel_id = [0; 32];
1397                                         let mut failed_next_destination_opt = UpgradableRequired(None);
1398                                         read_tlv_fields!(reader, {
1399                                                 (0, prev_channel_id, required),
1400                                                 (2, failed_next_destination_opt, upgradable_required),
1401                                         });
1402                                         Ok(Some(Event::HTLCHandlingFailed {
1403                                                 prev_channel_id,
1404                                                 failed_next_destination: _init_tlv_based_struct_field!(failed_next_destination_opt, upgradable_required),
1405                                         }))
1406                                 };
1407                                 f()
1408                         },
1409                         27u8 => Ok(None),
1410                         29u8 => {
1411                                 let f = || {
1412                                         let mut channel_id = [0; 32];
1413                                         let mut user_channel_id: u128 = 0;
1414                                         let mut counterparty_node_id = RequiredWrapper(None);
1415                                         let mut channel_type = RequiredWrapper(None);
1416                                         read_tlv_fields!(reader, {
1417                                                 (0, channel_id, required),
1418                                                 (2, user_channel_id, required),
1419                                                 (4, counterparty_node_id, required),
1420                                                 (6, channel_type, required),
1421                                         });
1422
1423                                         Ok(Some(Event::ChannelReady {
1424                                                 channel_id,
1425                                                 user_channel_id,
1426                                                 counterparty_node_id: counterparty_node_id.0.unwrap(),
1427                                                 channel_type: channel_type.0.unwrap()
1428                                         }))
1429                                 };
1430                                 f()
1431                         },
1432                         31u8 => {
1433                                 let f = || {
1434                                         let mut channel_id = [0; 32];
1435                                         let mut user_channel_id: u128 = 0;
1436                                         let mut former_temporary_channel_id = None;
1437                                         let mut counterparty_node_id = RequiredWrapper(None);
1438                                         let mut funding_txo = RequiredWrapper(None);
1439                                         read_tlv_fields!(reader, {
1440                                                 (0, channel_id, required),
1441                                                 (2, user_channel_id, required),
1442                                                 (4, former_temporary_channel_id, required),
1443                                                 (6, counterparty_node_id, required),
1444                                                 (8, funding_txo, required),
1445                                         });
1446
1447                                         Ok(Some(Event::ChannelPending {
1448                                                 channel_id,
1449                                                 user_channel_id,
1450                                                 former_temporary_channel_id,
1451                                                 counterparty_node_id: counterparty_node_id.0.unwrap(),
1452                                                 funding_txo: funding_txo.0.unwrap()
1453                                         }))
1454                                 };
1455                                 f()
1456                         },
1457                         // Versions prior to 0.0.100 did not ignore odd types, instead returning InvalidValue.
1458                         // Version 0.0.100 failed to properly ignore odd types, possibly resulting in corrupt
1459                         // reads.
1460                         x if x % 2 == 1 => {
1461                                 // If the event is of unknown type, assume it was written with `write_tlv_fields`,
1462                                 // which prefixes the whole thing with a length BigSize. Because the event is
1463                                 // odd-type unknown, we should treat it as `Ok(None)` even if it has some TLV
1464                                 // fields that are even. Thus, we avoid using `read_tlv_fields` and simply read
1465                                 // exactly the number of bytes specified, ignoring them entirely.
1466                                 let tlv_len: BigSize = Readable::read(reader)?;
1467                                 FixedLengthReader::new(reader, tlv_len.0)
1468                                         .eat_remaining().map_err(|_| msgs::DecodeError::ShortRead)?;
1469                                 Ok(None)
1470                         },
1471                         _ => Err(msgs::DecodeError::InvalidValue)
1472                 }
1473         }
1474 }
1475
1476 /// An event generated by ChannelManager which indicates a message should be sent to a peer (or
1477 /// broadcast to most peers).
1478 /// These events are handled by PeerManager::process_events if you are using a PeerManager.
1479 #[derive(Clone, Debug)]
1480 pub enum MessageSendEvent {
1481         /// Used to indicate that we've accepted a channel open and should send the accept_channel
1482         /// message provided to the given peer.
1483         SendAcceptChannel {
1484                 /// The node_id of the node which should receive this message
1485                 node_id: PublicKey,
1486                 /// The message which should be sent.
1487                 msg: msgs::AcceptChannel,
1488         },
1489         /// Used to indicate that we've accepted a V2 channel open and should send the accept_channel2
1490         /// message provided to the given peer.
1491         SendAcceptChannelV2 {
1492                 /// The node_id of the node which should receive this message
1493                 node_id: PublicKey,
1494                 /// The message which should be sent.
1495                 msg: msgs::AcceptChannelV2,
1496         },
1497         /// Used to indicate that we've initiated a channel open and should send the open_channel
1498         /// message provided to the given peer.
1499         SendOpenChannel {
1500                 /// The node_id of the node which should receive this message
1501                 node_id: PublicKey,
1502                 /// The message which should be sent.
1503                 msg: msgs::OpenChannel,
1504         },
1505         /// Used to indicate that we've initiated a V2 channel open and should send the open_channel2
1506         /// message provided to the given peer.
1507         SendOpenChannelV2 {
1508                 /// The node_id of the node which should receive this message
1509                 node_id: PublicKey,
1510                 /// The message which should be sent.
1511                 msg: msgs::OpenChannelV2,
1512         },
1513         /// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
1514         SendFundingCreated {
1515                 /// The node_id of the node which should receive this message
1516                 node_id: PublicKey,
1517                 /// The message which should be sent.
1518                 msg: msgs::FundingCreated,
1519         },
1520         /// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
1521         SendFundingSigned {
1522                 /// The node_id of the node which should receive this message
1523                 node_id: PublicKey,
1524                 /// The message which should be sent.
1525                 msg: msgs::FundingSigned,
1526         },
1527         /// Used to indicate that a tx_add_input message should be sent to the peer with the given node_id.
1528         SendTxAddInput {
1529                 /// The node_id of the node which should receive this message
1530                 node_id: PublicKey,
1531                 /// The message which should be sent.
1532                 msg: msgs::TxAddInput,
1533         },
1534         /// Used to indicate that a tx_add_output message should be sent to the peer with the given node_id.
1535         SendTxAddOutput {
1536                 /// The node_id of the node which should receive this message
1537                 node_id: PublicKey,
1538                 /// The message which should be sent.
1539                 msg: msgs::TxAddOutput,
1540         },
1541         /// Used to indicate that a tx_remove_input message should be sent to the peer with the given node_id.
1542         SendTxRemoveInput {
1543                 /// The node_id of the node which should receive this message
1544                 node_id: PublicKey,
1545                 /// The message which should be sent.
1546                 msg: msgs::TxRemoveInput,
1547         },
1548         /// Used to indicate that a tx_remove_output message should be sent to the peer with the given node_id.
1549         SendTxRemoveOutput {
1550                 /// The node_id of the node which should receive this message
1551                 node_id: PublicKey,
1552                 /// The message which should be sent.
1553                 msg: msgs::TxRemoveOutput,
1554         },
1555         /// Used to indicate that a tx_complete message should be sent to the peer with the given node_id.
1556         SendTxComplete {
1557                 /// The node_id of the node which should receive this message
1558                 node_id: PublicKey,
1559                 /// The message which should be sent.
1560                 msg: msgs::TxComplete,
1561         },
1562         /// Used to indicate that a tx_signatures message should be sent to the peer with the given node_id.
1563         SendTxSignatures {
1564                 /// The node_id of the node which should receive this message
1565                 node_id: PublicKey,
1566                 /// The message which should be sent.
1567                 msg: msgs::TxSignatures,
1568         },
1569         /// Used to indicate that a tx_init_rbf message should be sent to the peer with the given node_id.
1570         SendTxInitRbf {
1571                 /// The node_id of the node which should receive this message
1572                 node_id: PublicKey,
1573                 /// The message which should be sent.
1574                 msg: msgs::TxInitRbf,
1575         },
1576         /// Used to indicate that a tx_ack_rbf message should be sent to the peer with the given node_id.
1577         SendTxAckRbf {
1578                 /// The node_id of the node which should receive this message
1579                 node_id: PublicKey,
1580                 /// The message which should be sent.
1581                 msg: msgs::TxAckRbf,
1582         },
1583         /// Used to indicate that a tx_abort message should be sent to the peer with the given node_id.
1584         SendTxAbort {
1585                 /// The node_id of the node which should receive this message
1586                 node_id: PublicKey,
1587                 /// The message which should be sent.
1588                 msg: msgs::TxAddInput,
1589         },
1590         /// Used to indicate that a channel_ready message should be sent to the peer with the given node_id.
1591         SendChannelReady {
1592                 /// The node_id of the node which should receive these message(s)
1593                 node_id: PublicKey,
1594                 /// The channel_ready message which should be sent.
1595                 msg: msgs::ChannelReady,
1596         },
1597         /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
1598         SendAnnouncementSignatures {
1599                 /// The node_id of the node which should receive these message(s)
1600                 node_id: PublicKey,
1601                 /// The announcement_signatures message which should be sent.
1602                 msg: msgs::AnnouncementSignatures,
1603         },
1604         /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
1605         /// message should be sent to the peer with the given node_id.
1606         UpdateHTLCs {
1607                 /// The node_id of the node which should receive these message(s)
1608                 node_id: PublicKey,
1609                 /// The update messages which should be sent. ALL messages in the struct should be sent!
1610                 updates: msgs::CommitmentUpdate,
1611         },
1612         /// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
1613         SendRevokeAndACK {
1614                 /// The node_id of the node which should receive this message
1615                 node_id: PublicKey,
1616                 /// The message which should be sent.
1617                 msg: msgs::RevokeAndACK,
1618         },
1619         /// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
1620         SendClosingSigned {
1621                 /// The node_id of the node which should receive this message
1622                 node_id: PublicKey,
1623                 /// The message which should be sent.
1624                 msg: msgs::ClosingSigned,
1625         },
1626         /// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
1627         SendShutdown {
1628                 /// The node_id of the node which should receive this message
1629                 node_id: PublicKey,
1630                 /// The message which should be sent.
1631                 msg: msgs::Shutdown,
1632         },
1633         /// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
1634         SendChannelReestablish {
1635                 /// The node_id of the node which should receive this message
1636                 node_id: PublicKey,
1637                 /// The message which should be sent.
1638                 msg: msgs::ChannelReestablish,
1639         },
1640         /// Used to send a channel_announcement and channel_update to a specific peer, likely on
1641         /// initial connection to ensure our peers know about our channels.
1642         SendChannelAnnouncement {
1643                 /// The node_id of the node which should receive this message
1644                 node_id: PublicKey,
1645                 /// The channel_announcement which should be sent.
1646                 msg: msgs::ChannelAnnouncement,
1647                 /// The followup channel_update which should be sent.
1648                 update_msg: msgs::ChannelUpdate,
1649         },
1650         /// Used to indicate that a channel_announcement and channel_update should be broadcast to all
1651         /// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
1652         ///
1653         /// Note that after doing so, you very likely (unless you did so very recently) want to
1654         /// broadcast a node_announcement (e.g. via [`PeerManager::broadcast_node_announcement`]). This
1655         /// ensures that any nodes which see our channel_announcement also have a relevant
1656         /// node_announcement, including relevant feature flags which may be important for routing
1657         /// through or to us.
1658         ///
1659         /// [`PeerManager::broadcast_node_announcement`]: crate::ln::peer_handler::PeerManager::broadcast_node_announcement
1660         BroadcastChannelAnnouncement {
1661                 /// The channel_announcement which should be sent.
1662                 msg: msgs::ChannelAnnouncement,
1663                 /// The followup channel_update which should be sent.
1664                 update_msg: Option<msgs::ChannelUpdate>,
1665         },
1666         /// Used to indicate that a channel_update should be broadcast to all peers.
1667         BroadcastChannelUpdate {
1668                 /// The channel_update which should be sent.
1669                 msg: msgs::ChannelUpdate,
1670         },
1671         /// Used to indicate that a node_announcement should be broadcast to all peers.
1672         BroadcastNodeAnnouncement {
1673                 /// The node_announcement which should be sent.
1674                 msg: msgs::NodeAnnouncement,
1675         },
1676         /// Used to indicate that a channel_update should be sent to a single peer.
1677         /// In contrast to [`Self::BroadcastChannelUpdate`], this is used when the channel is a
1678         /// private channel and we shouldn't be informing all of our peers of channel parameters.
1679         SendChannelUpdate {
1680                 /// The node_id of the node which should receive this message
1681                 node_id: PublicKey,
1682                 /// The channel_update which should be sent.
1683                 msg: msgs::ChannelUpdate,
1684         },
1685         /// Broadcast an error downstream to be handled
1686         HandleError {
1687                 /// The node_id of the node which should receive this message
1688                 node_id: PublicKey,
1689                 /// The action which should be taken.
1690                 action: msgs::ErrorAction
1691         },
1692         /// Query a peer for channels with funding transaction UTXOs in a block range.
1693         SendChannelRangeQuery {
1694                 /// The node_id of this message recipient
1695                 node_id: PublicKey,
1696                 /// The query_channel_range which should be sent.
1697                 msg: msgs::QueryChannelRange,
1698         },
1699         /// Request routing gossip messages from a peer for a list of channels identified by
1700         /// their short_channel_ids.
1701         SendShortIdsQuery {
1702                 /// The node_id of this message recipient
1703                 node_id: PublicKey,
1704                 /// The query_short_channel_ids which should be sent.
1705                 msg: msgs::QueryShortChannelIds,
1706         },
1707         /// Sends a reply to a channel range query. This may be one of several SendReplyChannelRange events
1708         /// emitted during processing of the query.
1709         SendReplyChannelRange {
1710                 /// The node_id of this message recipient
1711                 node_id: PublicKey,
1712                 /// The reply_channel_range which should be sent.
1713                 msg: msgs::ReplyChannelRange,
1714         },
1715         /// Sends a timestamp filter for inbound gossip. This should be sent on each new connection to
1716         /// enable receiving gossip messages from the peer.
1717         SendGossipTimestampFilter {
1718                 /// The node_id of this message recipient
1719                 node_id: PublicKey,
1720                 /// The gossip_timestamp_filter which should be sent.
1721                 msg: msgs::GossipTimestampFilter,
1722         },
1723 }
1724
1725 /// A trait indicating an object may generate message send events
1726 pub trait MessageSendEventsProvider {
1727         /// Gets the list of pending events which were generated by previous actions, clearing the list
1728         /// in the process.
1729         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
1730 }
1731
1732 /// A trait indicating an object may generate onion messages to send
1733 pub trait OnionMessageProvider {
1734         /// Gets the next pending onion message for the peer with the given node id.
1735         fn next_onion_message_for_peer(&self, peer_node_id: PublicKey) -> Option<msgs::OnionMessage>;
1736 }
1737
1738 /// A trait indicating an object may generate events.
1739 ///
1740 /// Events are processed by passing an [`EventHandler`] to [`process_pending_events`].
1741 ///
1742 /// Implementations of this trait may also feature an async version of event handling, as shown with
1743 /// [`ChannelManager::process_pending_events_async`] and
1744 /// [`ChainMonitor::process_pending_events_async`].
1745 ///
1746 /// # Requirements
1747 ///
1748 /// When using this trait, [`process_pending_events`] will call [`handle_event`] for each pending
1749 /// event since the last invocation.
1750 ///
1751 /// In order to ensure no [`Event`]s are lost, implementors of this trait will persist [`Event`]s
1752 /// and replay any unhandled events on startup. An [`Event`] is considered handled when
1753 /// [`process_pending_events`] returns, thus handlers MUST fully handle [`Event`]s and persist any
1754 /// relevant changes to disk *before* returning.
1755 ///
1756 /// Further, because an application may crash between an [`Event`] being handled and the
1757 /// implementor of this trait being re-serialized, [`Event`] handling must be idempotent - in
1758 /// effect, [`Event`]s may be replayed.
1759 ///
1760 /// Note, handlers may call back into the provider and thus deadlocking must be avoided. Be sure to
1761 /// consult the provider's documentation on the implication of processing events and how a handler
1762 /// may safely use the provider (e.g., see [`ChannelManager::process_pending_events`] and
1763 /// [`ChainMonitor::process_pending_events`]).
1764 ///
1765 /// (C-not implementable) As there is likely no reason for a user to implement this trait on their
1766 /// own type(s).
1767 ///
1768 /// [`process_pending_events`]: Self::process_pending_events
1769 /// [`handle_event`]: EventHandler::handle_event
1770 /// [`ChannelManager::process_pending_events`]: crate::ln::channelmanager::ChannelManager#method.process_pending_events
1771 /// [`ChainMonitor::process_pending_events`]: crate::chain::chainmonitor::ChainMonitor#method.process_pending_events
1772 /// [`ChannelManager::process_pending_events_async`]: crate::ln::channelmanager::ChannelManager::process_pending_events_async
1773 /// [`ChainMonitor::process_pending_events_async`]: crate::chain::chainmonitor::ChainMonitor::process_pending_events_async
1774 pub trait EventsProvider {
1775         /// Processes any events generated since the last call using the given event handler.
1776         ///
1777         /// See the trait-level documentation for requirements.
1778         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler;
1779 }
1780
1781 /// A trait implemented for objects handling events from [`EventsProvider`].
1782 ///
1783 /// An async variation also exists for implementations of [`EventsProvider`] that support async
1784 /// event handling. The async event handler should satisfy the generic bounds: `F:
1785 /// core::future::Future, H: Fn(Event) -> F`.
1786 pub trait EventHandler {
1787         /// Handles the given [`Event`].
1788         ///
1789         /// See [`EventsProvider`] for details that must be considered when implementing this method.
1790         fn handle_event(&self, event: Event);
1791 }
1792
1793 impl<F> EventHandler for F where F: Fn(Event) {
1794         fn handle_event(&self, event: Event) {
1795                 self(event)
1796         }
1797 }
1798
1799 impl<T: EventHandler> EventHandler for Arc<T> {
1800         fn handle_event(&self, event: Event) {
1801                 self.deref().handle_event(event)
1802         }
1803 }