1 // Prefix these with `rustdoc::` when we update our MSRV to be >= 1.52 to remove warnings.
2 #![deny(broken_intra_doc_links)]
3 #![deny(private_intra_doc_links)]
6 #![deny(non_upper_case_globals)]
7 #![deny(non_camel_case_types)]
8 #![deny(non_snake_case)]
11 #![cfg_attr(docsrs, feature(doc_auto_cfg))]
13 #![cfg_attr(feature = "strict", deny(warnings))]
14 #![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
16 //! This crate provides data structures to represent
17 //! [lightning BOLT11](https://github.com/lightning/bolts/blob/master/11-payment-encoding.md)
18 //! invoices and functions to create, encode and decode these. If you just want to use the standard
19 //! en-/decoding functionality this should get you started:
21 //! * For parsing use `str::parse::<Invoice>(&self)` (see [`Invoice::from_str`])
22 //! * For constructing invoices use the [`InvoiceBuilder`]
23 //! * For serializing invoices use the [`Display`]/[`ToString`] traits
25 //! [`Invoice::from_str`]: crate::Invoice#impl-FromStr
27 #[cfg(not(any(feature = "std", feature = "no-std")))]
28 compile_error!("at least one of the `std` or `no-std` features must be enabled");
33 pub(crate) mod time_utils;
36 extern crate bitcoin_hashes;
37 #[macro_use] extern crate lightning;
38 extern crate num_traits;
39 extern crate secp256k1;
41 #[cfg(any(test, feature = "std"))]
43 #[cfg(feature = "serde")]
46 #[cfg(feature = "std")]
47 use std::time::SystemTime;
50 use bitcoin::{Address, Network, PubkeyHash, ScriptHash};
51 use bitcoin::util::address::{Payload, WitnessVersion};
52 use bitcoin_hashes::{Hash, sha256};
53 use lightning::ln::PaymentSecret;
54 use lightning::ln::features::InvoiceFeatures;
55 #[cfg(any(doc, test))]
56 use lightning::routing::gossip::RoutingFees;
57 use lightning::routing::router::RouteHint;
58 use lightning::util::invoice::construct_invoice_preimage;
60 use secp256k1::PublicKey;
61 use secp256k1::{Message, Secp256k1};
62 use secp256k1::ecdsa::RecoverableSignature;
64 use core::fmt::{Display, Formatter, self};
65 use core::iter::FilterMap;
66 use core::num::ParseIntError;
68 use core::slice::Iter;
69 use core::time::Duration;
72 #[cfg(feature = "serde")]
73 use serde::{Deserialize, Deserializer,Serialize, Serializer, de::Error};
80 #[cfg(feature = "hashbrown")]
81 extern crate hashbrown;
83 pub use alloc::{vec, vec::Vec, string::String, collections::VecDeque, boxed::Box};
84 #[cfg(not(feature = "hashbrown"))]
85 pub use std::collections::{HashMap, HashSet, hash_map};
86 #[cfg(feature = "hashbrown")]
87 pub use self::hashbrown::{HashMap, HashSet, hash_map};
89 pub use alloc::string::ToString;
92 use crate::prelude::*;
94 /// Sync compat for std/no_std
95 #[cfg(feature = "std")]
97 pub use ::std::sync::{Mutex, MutexGuard};
100 /// Sync compat for std/no_std
101 #[cfg(not(feature = "std"))]
104 /// Errors that indicate what is wrong with the invoice. They have some granularity for debug
105 /// reasons, but should generally result in an "invalid BOLT11 invoice" message for the user.
106 #[allow(missing_docs)]
107 #[derive(PartialEq, Eq, Debug, Clone)]
108 pub enum ParseError {
109 Bech32Error(bech32::Error),
110 ParseAmountError(ParseIntError),
111 MalformedSignature(secp256k1::Error),
117 UnexpectedEndOfTaggedFields,
118 DescriptionDecodeError(str::Utf8Error),
120 IntegerOverflowError,
121 InvalidSegWitProgramLength,
122 InvalidPubKeyHashLength,
123 InvalidScriptHashLength,
125 InvalidSliceLength(String),
127 /// Not an error, but used internally to signal that a part of the invoice should be ignored
128 /// according to BOLT11
132 /// Indicates that something went wrong while parsing or validating the invoice. Parsing errors
133 /// should be mostly seen as opaque and are only there for debugging reasons. Semantic errors
134 /// like wrong signatures, missing fields etc. could mean that someone tampered with the invoice.
135 #[derive(PartialEq, Eq, Debug, Clone)]
136 pub enum ParseOrSemanticError {
137 /// The invoice couldn't be decoded
138 ParseError(ParseError),
140 /// The invoice could be decoded but violates the BOLT11 standard
141 SemanticError(crate::SemanticError),
144 /// The number of bits used to represent timestamps as defined in BOLT 11.
145 const TIMESTAMP_BITS: usize = 35;
147 /// The maximum timestamp as [`Duration::as_secs`] since the Unix epoch allowed by [`BOLT 11`].
149 /// [BOLT 11]: https://github.com/lightning/bolts/blob/master/11-payment-encoding.md
150 pub const MAX_TIMESTAMP: u64 = (1 << TIMESTAMP_BITS) - 1;
152 /// Default expiry time as defined by [BOLT 11].
154 /// [BOLT 11]: https://github.com/lightning/bolts/blob/master/11-payment-encoding.md
155 pub const DEFAULT_EXPIRY_TIME: u64 = 3600;
157 /// Default minimum final CLTV expiry as defined by [BOLT 11].
159 /// Note that this is *not* the same value as rust-lightning's minimum CLTV expiry, which is
160 /// provided in [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
162 /// [BOLT 11]: https://github.com/lightning/bolts/blob/master/11-payment-encoding.md
163 /// [`MIN_FINAL_CLTV_EXPIRY_DELTA`]: lightning::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY_DELTA
164 pub const DEFAULT_MIN_FINAL_CLTV_EXPIRY_DELTA: u64 = 18;
166 /// Builder for [`Invoice`]s. It's the most convenient and advised way to use this library. It ensures
167 /// that only a semantically and syntactically correct Invoice can be built using it.
170 /// extern crate secp256k1;
171 /// extern crate lightning;
172 /// extern crate lightning_invoice;
173 /// extern crate bitcoin_hashes;
175 /// use bitcoin_hashes::Hash;
176 /// use bitcoin_hashes::sha256;
178 /// use secp256k1::Secp256k1;
179 /// use secp256k1::SecretKey;
181 /// use lightning::ln::PaymentSecret;
183 /// use lightning_invoice::{Currency, InvoiceBuilder};
185 /// # #[cfg(not(feature = "std"))]
187 /// # #[cfg(feature = "std")]
189 /// let private_key = SecretKey::from_slice(
191 /// 0xe1, 0x26, 0xf6, 0x8f, 0x7e, 0xaf, 0xcc, 0x8b, 0x74, 0xf5, 0x4d, 0x26, 0x9f,
192 /// 0xe2, 0x06, 0xbe, 0x71, 0x50, 0x00, 0xf9, 0x4d, 0xac, 0x06, 0x7d, 0x1c, 0x04,
193 /// 0xa8, 0xca, 0x3b, 0x2d, 0xb7, 0x34
197 /// let payment_hash = sha256::Hash::from_slice(&[0; 32][..]).unwrap();
198 /// let payment_secret = PaymentSecret([42u8; 32]);
200 /// let invoice = InvoiceBuilder::new(Currency::Bitcoin)
201 /// .description("Coins pls!".into())
202 /// .payment_hash(payment_hash)
203 /// .payment_secret(payment_secret)
204 /// .current_timestamp()
205 /// .min_final_cltv_expiry_delta(144)
206 /// .build_signed(|hash| {
207 /// Secp256k1::new().sign_ecdsa_recoverable(hash, &private_key)
211 /// assert!(invoice.to_string().starts_with("lnbc1"));
215 /// # Type parameters
216 /// The two parameters `D` and `H` signal if the builder already contains the correct amount of the
218 /// * `D`: exactly one [`TaggedField::Description`] or [`TaggedField::DescriptionHash`]
219 /// * `H`: exactly one [`TaggedField::PaymentHash`]
220 /// * `T`: the timestamp is set
221 /// * `C`: the CLTV expiry is set
222 /// * `S`: the payment secret is set
223 /// * `M`: payment metadata is set
225 /// This is not exported to bindings users as we likely need to manually select one set of boolean type parameters.
226 #[derive(Eq, PartialEq, Debug, Clone)]
227 pub struct InvoiceBuilder<D: tb::Bool, H: tb::Bool, T: tb::Bool, C: tb::Bool, S: tb::Bool, M: tb::Bool> {
230 si_prefix: Option<SiPrefix>,
231 timestamp: Option<PositiveTimestamp>,
232 tagged_fields: Vec<TaggedField>,
233 error: Option<CreationError>,
235 phantom_d: core::marker::PhantomData<D>,
236 phantom_h: core::marker::PhantomData<H>,
237 phantom_t: core::marker::PhantomData<T>,
238 phantom_c: core::marker::PhantomData<C>,
239 phantom_s: core::marker::PhantomData<S>,
240 phantom_m: core::marker::PhantomData<M>,
243 /// Represents a syntactically and semantically correct lightning BOLT11 invoice.
245 /// There are three ways to construct an `Invoice`:
246 /// 1. using [`InvoiceBuilder`]
247 /// 2. using [`Invoice::from_signed`]
248 /// 3. using `str::parse::<Invoice>(&str)` (see [`Invoice::from_str`])
250 /// [`Invoice::from_str`]: crate::Invoice#impl-FromStr
251 #[derive(Eq, PartialEq, Debug, Clone, Hash)]
253 signed_invoice: SignedRawInvoice,
256 /// Represents the description of an invoice which has to be either a directly included string or
257 /// a hash of a description provided out of band.
259 /// This is not exported to bindings users as we don't have a good way to map the reference lifetimes making this
260 /// practically impossible to use safely in languages like C.
261 #[derive(Eq, PartialEq, Debug, Clone)]
262 pub enum InvoiceDescription<'f> {
263 /// Reference to the directly supplied description in the invoice
264 Direct(&'f Description),
266 /// Reference to the description's hash included in the invoice
270 /// Represents a signed [`RawInvoice`] with cached hash. The signature is not checked and may be
274 /// The hash has to be either from the deserialized invoice or from the serialized [`RawInvoice`].
275 #[derive(Eq, PartialEq, Debug, Clone, Hash)]
276 pub struct SignedRawInvoice {
277 /// The rawInvoice that the signature belongs to
278 raw_invoice: RawInvoice,
280 /// Hash of the [`RawInvoice`] that will be used to check the signature.
282 /// * if the `SignedRawInvoice` was deserialized the hash is of from the original encoded form,
283 /// since it's not guaranteed that encoding it again will lead to the same result since integers
284 /// could have been encoded with leading zeroes etc.
285 /// * if the `SignedRawInvoice` was constructed manually the hash will be the calculated hash
286 /// from the [`RawInvoice`]
289 /// signature of the payment request
290 signature: InvoiceSignature,
293 /// Represents an syntactically correct [`Invoice`] for a payment on the lightning network,
294 /// but without the signature information.
295 /// Decoding and encoding should not lead to information loss but may lead to different hashes.
297 /// For methods without docs see the corresponding methods in [`Invoice`].
298 #[derive(Eq, PartialEq, Debug, Clone, Hash)]
299 pub struct RawInvoice {
300 /// human readable part
304 pub data: RawDataPart,
307 /// Data of the [`RawInvoice`] that is encoded in the human readable part.
309 /// This is not exported to bindings users as we don't yet support `Option<Enum>`
310 #[derive(Eq, PartialEq, Debug, Clone, Hash)]
312 /// The currency deferred from the 3rd and 4th character of the bech32 transaction
313 pub currency: Currency,
315 /// The amount that, multiplied by the SI prefix, has to be payed
316 pub raw_amount: Option<u64>,
318 /// SI prefix that gets multiplied with the `raw_amount`
319 pub si_prefix: Option<SiPrefix>,
322 /// Data of the [`RawInvoice`] that is encoded in the data part
323 #[derive(Eq, PartialEq, Debug, Clone, Hash)]
324 pub struct RawDataPart {
325 /// generation time of the invoice
326 pub timestamp: PositiveTimestamp,
328 /// tagged fields of the payment request
329 pub tagged_fields: Vec<RawTaggedField>,
332 /// A timestamp that refers to a date after 1 January 1970.
336 /// The Unix timestamp representing the stored time has to be positive and no greater than
337 /// [`MAX_TIMESTAMP`].
338 #[derive(Eq, PartialEq, Debug, Clone, Hash)]
339 pub struct PositiveTimestamp(Duration);
341 /// SI prefixes for the human readable part
342 #[derive(Eq, PartialEq, Debug, Clone, Copy, Hash)]
355 /// Returns the multiplier to go from a BTC value to picoBTC implied by this SiPrefix.
356 /// This is effectively 10^12 * the prefix multiplier
357 pub fn multiplier(&self) -> u64 {
359 SiPrefix::Milli => 1_000_000_000,
360 SiPrefix::Micro => 1_000_000,
361 SiPrefix::Nano => 1_000,
366 /// Returns all enum variants of `SiPrefix` sorted in descending order of their associated
369 /// This is not exported to bindings users as we don't yet support a slice of enums, and also because this function
370 /// isn't the most critical to expose.
371 pub fn values_desc() -> &'static [SiPrefix] {
372 use crate::SiPrefix::*;
373 static VALUES: [SiPrefix; 4] = [Milli, Micro, Nano, Pico];
378 /// Enum representing the crypto currencies (or networks) supported by this library
379 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
397 impl From<Network> for Currency {
398 fn from(network: Network) -> Self {
400 Network::Bitcoin => Currency::Bitcoin,
401 Network::Testnet => Currency::BitcoinTestnet,
402 Network::Regtest => Currency::Regtest,
403 Network::Signet => Currency::Signet,
408 impl From<Currency> for Network {
409 fn from(currency: Currency) -> Self {
411 Currency::Bitcoin => Network::Bitcoin,
412 Currency::BitcoinTestnet => Network::Testnet,
413 Currency::Regtest => Network::Regtest,
414 Currency::Simnet => Network::Regtest,
415 Currency::Signet => Network::Signet,
420 /// Tagged field which may have an unknown tag
422 /// This is not exported to bindings users as we don't currently support TaggedField
423 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
424 pub enum RawTaggedField {
425 /// Parsed tagged field with known tag
426 KnownSemantics(TaggedField),
427 /// tagged field which was not parsed due to an unknown tag or undefined field semantics
428 UnknownSemantics(Vec<u5>),
431 /// Tagged field with known tag
433 /// For descriptions of the enum values please refer to the enclosed type's docs.
435 /// This is not exported to bindings users as we don't yet support enum variants with the same name the struct contained
437 #[allow(missing_docs)]
438 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
439 pub enum TaggedField {
441 Description(Description),
442 PayeePubKey(PayeePubKey),
443 DescriptionHash(Sha256),
444 ExpiryTime(ExpiryTime),
445 MinFinalCltvExpiryDelta(MinFinalCltvExpiryDelta),
447 PrivateRoute(PrivateRoute),
448 PaymentSecret(PaymentSecret),
449 PaymentMetadata(Vec<u8>),
450 Features(InvoiceFeatures),
454 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
455 pub struct Sha256(/// This is not exported to bindings users as the native hash types are not currently mapped
458 /// Description string
461 /// The description can be at most 639 __bytes__ long
462 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
463 pub struct Description(String);
466 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
467 pub struct PayeePubKey(pub PublicKey);
469 /// Positive duration that defines when (relatively to the timestamp) in the future the invoice
471 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
472 pub struct ExpiryTime(Duration);
474 /// `min_final_cltv_expiry_delta` to use for the last HTLC in the route
475 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
476 pub struct MinFinalCltvExpiryDelta(pub u64);
478 /// Fallback address in case no LN payment is possible
479 #[allow(missing_docs)]
480 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
483 version: WitnessVersion,
486 PubKeyHash(PubkeyHash),
487 ScriptHash(ScriptHash),
490 /// Recoverable signature
491 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
492 pub struct InvoiceSignature(pub RecoverableSignature);
494 /// Private routing information
497 /// The encoded route has to be <1024 5bit characters long (<=639 bytes or <=12 hops)
499 #[derive(Clone, Debug, Hash, Eq, PartialEq)]
500 pub struct PrivateRoute(RouteHint);
502 /// Tag constants as specified in BOLT11
503 #[allow(missing_docs)]
505 pub const TAG_PAYMENT_HASH: u8 = 1;
506 pub const TAG_DESCRIPTION: u8 = 13;
507 pub const TAG_PAYEE_PUB_KEY: u8 = 19;
508 pub const TAG_DESCRIPTION_HASH: u8 = 23;
509 pub const TAG_EXPIRY_TIME: u8 = 6;
510 pub const TAG_MIN_FINAL_CLTV_EXPIRY_DELTA: u8 = 24;
511 pub const TAG_FALLBACK: u8 = 9;
512 pub const TAG_PRIVATE_ROUTE: u8 = 3;
513 pub const TAG_PAYMENT_SECRET: u8 = 16;
514 pub const TAG_PAYMENT_METADATA: u8 = 27;
515 pub const TAG_FEATURES: u8 = 5;
518 impl InvoiceBuilder<tb::False, tb::False, tb::False, tb::False, tb::False, tb::False> {
519 /// Construct new, empty `InvoiceBuilder`. All necessary fields have to be filled first before
520 /// `InvoiceBuilder::build(self)` becomes available.
521 pub fn new(currency: Currency) -> Self {
527 tagged_fields: Vec::new(),
530 phantom_d: core::marker::PhantomData,
531 phantom_h: core::marker::PhantomData,
532 phantom_t: core::marker::PhantomData,
533 phantom_c: core::marker::PhantomData,
534 phantom_s: core::marker::PhantomData,
535 phantom_m: core::marker::PhantomData,
540 impl<D: tb::Bool, H: tb::Bool, T: tb::Bool, C: tb::Bool, S: tb::Bool, M: tb::Bool> InvoiceBuilder<D, H, T, C, S, M> {
541 /// Helper function to set the completeness flags.
542 fn set_flags<DN: tb::Bool, HN: tb::Bool, TN: tb::Bool, CN: tb::Bool, SN: tb::Bool, MN: tb::Bool>(self) -> InvoiceBuilder<DN, HN, TN, CN, SN, MN> {
543 InvoiceBuilder::<DN, HN, TN, CN, SN, MN> {
544 currency: self.currency,
546 si_prefix: self.si_prefix,
547 timestamp: self.timestamp,
548 tagged_fields: self.tagged_fields,
551 phantom_d: core::marker::PhantomData,
552 phantom_h: core::marker::PhantomData,
553 phantom_t: core::marker::PhantomData,
554 phantom_c: core::marker::PhantomData,
555 phantom_s: core::marker::PhantomData,
556 phantom_m: core::marker::PhantomData,
560 /// Sets the amount in millisatoshis. The optimal SI prefix is chosen automatically.
561 pub fn amount_milli_satoshis(mut self, amount_msat: u64) -> Self {
562 let amount = amount_msat * 10; // Invoices are denominated in "pico BTC"
563 let biggest_possible_si_prefix = SiPrefix::values_desc()
565 .find(|prefix| amount % prefix.multiplier() == 0)
566 .expect("Pico should always match");
567 self.amount = Some(amount / biggest_possible_si_prefix.multiplier());
568 self.si_prefix = Some(*biggest_possible_si_prefix);
572 /// Sets the payee's public key.
573 pub fn payee_pub_key(mut self, pub_key: PublicKey) -> Self {
574 self.tagged_fields.push(TaggedField::PayeePubKey(PayeePubKey(pub_key)));
578 /// Sets the expiry time, dropping the subsecond part (which is not representable in BOLT 11
580 pub fn expiry_time(mut self, expiry_time: Duration) -> Self {
581 self.tagged_fields.push(TaggedField::ExpiryTime(ExpiryTime::from_duration(expiry_time)));
585 /// Adds a fallback address.
586 pub fn fallback(mut self, fallback: Fallback) -> Self {
587 self.tagged_fields.push(TaggedField::Fallback(fallback));
591 /// Adds a private route.
592 pub fn private_route(mut self, hint: RouteHint) -> Self {
593 match PrivateRoute::new(hint) {
594 Ok(r) => self.tagged_fields.push(TaggedField::PrivateRoute(r)),
595 Err(e) => self.error = Some(e),
601 impl<D: tb::Bool, H: tb::Bool, C: tb::Bool, S: tb::Bool, M: tb::Bool> InvoiceBuilder<D, H, tb::True, C, S, M> {
602 /// Builds a [`RawInvoice`] if no [`CreationError`] occurred while construction any of the
604 pub fn build_raw(self) -> Result<RawInvoice, CreationError> {
606 // If an error occurred at any time before, return it now
607 if let Some(e) = self.error {
612 currency: self.currency,
613 raw_amount: self.amount,
614 si_prefix: self.si_prefix,
617 let timestamp = self.timestamp.expect("ensured to be Some(t) by type T");
619 let tagged_fields = self.tagged_fields.into_iter().map(|tf| {
620 RawTaggedField::KnownSemantics(tf)
621 }).collect::<Vec<_>>();
623 let data = RawDataPart {
635 impl<H: tb::Bool, T: tb::Bool, C: tb::Bool, S: tb::Bool, M: tb::Bool> InvoiceBuilder<tb::False, H, T, C, S, M> {
636 /// Set the description. This function is only available if no description (hash) was set.
637 pub fn description(mut self, description: String) -> InvoiceBuilder<tb::True, H, T, C, S, M> {
638 match Description::new(description) {
639 Ok(d) => self.tagged_fields.push(TaggedField::Description(d)),
640 Err(e) => self.error = Some(e),
645 /// Set the description hash. This function is only available if no description (hash) was set.
646 pub fn description_hash(mut self, description_hash: sha256::Hash) -> InvoiceBuilder<tb::True, H, T, C, S, M> {
647 self.tagged_fields.push(TaggedField::DescriptionHash(Sha256(description_hash)));
651 /// Set the description or description hash. This function is only available if no description (hash) was set.
652 pub fn invoice_description(self, description: InvoiceDescription) -> InvoiceBuilder<tb::True, H, T, C, S, M> {
654 InvoiceDescription::Direct(desc) => {
655 self.description(desc.clone().into_inner())
657 InvoiceDescription::Hash(hash) => {
658 self.description_hash(hash.0)
664 impl<D: tb::Bool, T: tb::Bool, C: tb::Bool, S: tb::Bool, M: tb::Bool> InvoiceBuilder<D, tb::False, T, C, S, M> {
665 /// Set the payment hash. This function is only available if no payment hash was set.
666 pub fn payment_hash(mut self, hash: sha256::Hash) -> InvoiceBuilder<D, tb::True, T, C, S, M> {
667 self.tagged_fields.push(TaggedField::PaymentHash(Sha256(hash)));
672 impl<D: tb::Bool, H: tb::Bool, C: tb::Bool, S: tb::Bool, M: tb::Bool> InvoiceBuilder<D, H, tb::False, C, S, M> {
673 /// Sets the timestamp to a specific [`SystemTime`].
674 #[cfg(feature = "std")]
675 pub fn timestamp(mut self, time: SystemTime) -> InvoiceBuilder<D, H, tb::True, C, S, M> {
676 match PositiveTimestamp::from_system_time(time) {
677 Ok(t) => self.timestamp = Some(t),
678 Err(e) => self.error = Some(e),
684 /// Sets the timestamp to a duration since the Unix epoch, dropping the subsecond part (which
685 /// is not representable in BOLT 11 invoices).
686 pub fn duration_since_epoch(mut self, time: Duration) -> InvoiceBuilder<D, H, tb::True, C, S, M> {
687 match PositiveTimestamp::from_duration_since_epoch(time) {
688 Ok(t) => self.timestamp = Some(t),
689 Err(e) => self.error = Some(e),
695 /// Sets the timestamp to the current system time.
696 #[cfg(feature = "std")]
697 pub fn current_timestamp(mut self) -> InvoiceBuilder<D, H, tb::True, C, S, M> {
698 let now = PositiveTimestamp::from_system_time(SystemTime::now());
699 self.timestamp = Some(now.expect("for the foreseeable future this shouldn't happen"));
704 impl<D: tb::Bool, H: tb::Bool, T: tb::Bool, S: tb::Bool, M: tb::Bool> InvoiceBuilder<D, H, T, tb::False, S, M> {
705 /// Sets `min_final_cltv_expiry_delta`.
706 pub fn min_final_cltv_expiry_delta(mut self, min_final_cltv_expiry_delta: u64) -> InvoiceBuilder<D, H, T, tb::True, S, M> {
707 self.tagged_fields.push(TaggedField::MinFinalCltvExpiryDelta(MinFinalCltvExpiryDelta(min_final_cltv_expiry_delta)));
712 impl<D: tb::Bool, H: tb::Bool, T: tb::Bool, C: tb::Bool, M: tb::Bool> InvoiceBuilder<D, H, T, C, tb::False, M> {
713 /// Sets the payment secret and relevant features.
714 pub fn payment_secret(mut self, payment_secret: PaymentSecret) -> InvoiceBuilder<D, H, T, C, tb::True, M> {
715 let mut found_features = false;
716 for field in self.tagged_fields.iter_mut() {
717 if let TaggedField::Features(f) = field {
718 found_features = true;
719 f.set_variable_length_onion_required();
720 f.set_payment_secret_required();
723 self.tagged_fields.push(TaggedField::PaymentSecret(payment_secret));
725 let mut features = InvoiceFeatures::empty();
726 features.set_variable_length_onion_required();
727 features.set_payment_secret_required();
728 self.tagged_fields.push(TaggedField::Features(features));
734 impl<D: tb::Bool, H: tb::Bool, T: tb::Bool, C: tb::Bool, S: tb::Bool> InvoiceBuilder<D, H, T, C, S, tb::False> {
735 /// Sets the payment metadata.
737 /// By default features are set to *optionally* allow the sender to include the payment metadata.
738 /// If you wish to require that the sender include the metadata (and fail to parse the invoice if
739 /// they don't support payment metadata fields), you need to call
740 /// [`InvoiceBuilder::require_payment_metadata`] after this.
741 pub fn payment_metadata(mut self, payment_metadata: Vec<u8>) -> InvoiceBuilder<D, H, T, C, S, tb::True> {
742 self.tagged_fields.push(TaggedField::PaymentMetadata(payment_metadata));
743 let mut found_features = false;
744 for field in self.tagged_fields.iter_mut() {
745 if let TaggedField::Features(f) = field {
746 found_features = true;
747 f.set_payment_metadata_optional();
751 let mut features = InvoiceFeatures::empty();
752 features.set_payment_metadata_optional();
753 self.tagged_fields.push(TaggedField::Features(features));
759 impl<D: tb::Bool, H: tb::Bool, T: tb::Bool, C: tb::Bool, S: tb::Bool> InvoiceBuilder<D, H, T, C, S, tb::True> {
760 /// Sets forwarding of payment metadata as required. A reader of the invoice which does not
761 /// support sending payment metadata will fail to read the invoice.
762 pub fn require_payment_metadata(mut self) -> InvoiceBuilder<D, H, T, C, S, tb::True> {
763 for field in self.tagged_fields.iter_mut() {
764 if let TaggedField::Features(f) = field {
765 f.set_payment_metadata_required();
772 impl<D: tb::Bool, H: tb::Bool, T: tb::Bool, C: tb::Bool, M: tb::Bool> InvoiceBuilder<D, H, T, C, tb::True, M> {
773 /// Sets the `basic_mpp` feature as optional.
774 pub fn basic_mpp(mut self) -> Self {
775 for field in self.tagged_fields.iter_mut() {
776 if let TaggedField::Features(f) = field {
777 f.set_basic_mpp_optional();
784 impl<M: tb::Bool> InvoiceBuilder<tb::True, tb::True, tb::True, tb::True, tb::True, M> {
785 /// Builds and signs an invoice using the supplied `sign_function`. This function MAY NOT fail
786 /// and MUST produce a recoverable signature valid for the given hash and if applicable also for
787 /// the included payee public key.
788 pub fn build_signed<F>(self, sign_function: F) -> Result<Invoice, CreationError>
789 where F: FnOnce(&Message) -> RecoverableSignature
791 let invoice = self.try_build_signed::<_, ()>(|hash| {
792 Ok(sign_function(hash))
797 Err(SignOrCreationError::CreationError(e)) => Err(e),
798 Err(SignOrCreationError::SignError(())) => unreachable!(),
802 /// Builds and signs an invoice using the supplied `sign_function`. This function MAY fail with
803 /// an error of type `E` and MUST produce a recoverable signature valid for the given hash and
804 /// if applicable also for the included payee public key.
805 pub fn try_build_signed<F, E>(self, sign_function: F) -> Result<Invoice, SignOrCreationError<E>>
806 where F: FnOnce(&Message) -> Result<RecoverableSignature, E>
808 let raw = match self.build_raw() {
810 Err(e) => return Err(SignOrCreationError::CreationError(e)),
813 let signed = match raw.sign(sign_function) {
815 Err(e) => return Err(SignOrCreationError::SignError(e)),
818 let invoice = Invoice {
819 signed_invoice: signed,
822 invoice.check_field_counts().expect("should be ensured by type signature of builder");
823 invoice.check_feature_bits().expect("should be ensured by type signature of builder");
824 invoice.check_amount().expect("should be ensured by type signature of builder");
831 impl SignedRawInvoice {
832 /// Disassembles the `SignedRawInvoice` into its three parts:
834 /// 2. hash of the raw invoice
836 pub fn into_parts(self) -> (RawInvoice, [u8; 32], InvoiceSignature) {
837 (self.raw_invoice, self.hash, self.signature)
840 /// The [`RawInvoice`] which was signed.
841 pub fn raw_invoice(&self) -> &RawInvoice {
845 /// The hash of the [`RawInvoice`] that was signed.
846 pub fn signable_hash(&self) -> &[u8; 32] {
850 /// Signature for the invoice.
851 pub fn signature(&self) -> &InvoiceSignature {
855 /// Recovers the public key used for signing the invoice from the recoverable signature.
856 pub fn recover_payee_pub_key(&self) -> Result<PayeePubKey, secp256k1::Error> {
857 let hash = Message::from_slice(&self.hash[..])
858 .expect("Hash is 32 bytes long, same as MESSAGE_SIZE");
860 Ok(PayeePubKey(Secp256k1::new().recover_ecdsa(
866 /// Checks if the signature is valid for the included payee public key or if none exists if it's
867 /// valid for the recovered signature (which should always be true?).
868 pub fn check_signature(&self) -> bool {
869 let included_pub_key = self.raw_invoice.payee_pub_key();
871 let mut recovered_pub_key = Option::None;
872 if recovered_pub_key.is_none() {
873 let recovered = match self.recover_payee_pub_key() {
875 Err(_) => return false,
877 recovered_pub_key = Some(recovered);
880 let pub_key = included_pub_key.or(recovered_pub_key.as_ref())
881 .expect("One is always present");
883 let hash = Message::from_slice(&self.hash[..])
884 .expect("Hash is 32 bytes long, same as MESSAGE_SIZE");
886 let secp_context = Secp256k1::new();
887 let verification_result = secp_context.verify_ecdsa(
889 &self.signature.to_standard(),
893 match verification_result {
900 /// Finds the first element of an enum stream of a given variant and extracts one member of the
901 /// variant. If no element was found `None` gets returned.
903 /// The following example would extract the first B.
911 /// let elements = vec![Enum::A(1), Enum::A(2), Enum::B(3), Enum::A(4)];
913 /// assert_eq!(find_extract!(elements.iter(), Enum::B(x), x), Some(3u16));
915 macro_rules! find_extract {
916 ($iter:expr, $enm:pat, $enm_var:ident) => {
917 find_all_extract!($iter, $enm, $enm_var).next()
921 /// Finds the all elements of an enum stream of a given variant and extracts one member of the
922 /// variant through an iterator.
924 /// The following example would extract all A.
932 /// let elements = vec![Enum::A(1), Enum::A(2), Enum::B(3), Enum::A(4)];
935 /// find_all_extract!(elements.iter(), Enum::A(x), x).collect::<Vec<u8>>(),
936 /// vec![1u8, 2u8, 4u8]
939 macro_rules! find_all_extract {
940 ($iter:expr, $enm:pat, $enm_var:ident) => {
941 $iter.filter_map(|tf| match *tf {
942 $enm => Some($enm_var),
948 #[allow(missing_docs)]
950 /// Hash the HRP as bytes and signatureless data part.
951 fn hash_from_parts(hrp_bytes: &[u8], data_without_signature: &[u5]) -> [u8; 32] {
952 let preimage = construct_invoice_preimage(hrp_bytes, data_without_signature);
953 let mut hash: [u8; 32] = Default::default();
954 hash.copy_from_slice(&sha256::Hash::hash(&preimage)[..]);
958 /// Calculate the hash of the encoded `RawInvoice` which should be signed.
959 pub fn signable_hash(&self) -> [u8; 32] {
960 use bech32::ToBase32;
962 RawInvoice::hash_from_parts(
963 self.hrp.to_string().as_bytes(),
964 &self.data.to_base32()
968 /// Signs the invoice using the supplied `sign_method`. This function MAY fail with an error of
969 /// type `E`. Since the signature of a [`SignedRawInvoice`] is not required to be valid there
970 /// are no constraints regarding the validity of the produced signature.
972 /// This is not exported to bindings users as we don't currently support passing function pointers into methods
974 pub fn sign<F, E>(self, sign_method: F) -> Result<SignedRawInvoice, E>
975 where F: FnOnce(&Message) -> Result<RecoverableSignature, E>
977 let raw_hash = self.signable_hash();
978 let hash = Message::from_slice(&raw_hash[..])
979 .expect("Hash is 32 bytes long, same as MESSAGE_SIZE");
980 let signature = sign_method(&hash)?;
982 Ok(SignedRawInvoice {
985 signature: InvoiceSignature(signature),
989 /// Returns an iterator over all tagged fields with known semantics.
991 /// This is not exported to bindings users as there is not yet a manual mapping for a FilterMap
992 pub fn known_tagged_fields(&self)
993 -> FilterMap<Iter<RawTaggedField>, fn(&RawTaggedField) -> Option<&TaggedField>>
995 // For 1.14.0 compatibility: closures' types can't be written an fn()->() in the
996 // function's type signature.
997 // TODO: refactor once impl Trait is available
998 fn match_raw(raw: &RawTaggedField) -> Option<&TaggedField> {
1000 RawTaggedField::KnownSemantics(ref tf) => Some(tf),
1005 self.data.tagged_fields.iter().filter_map(match_raw )
1008 pub fn payment_hash(&self) -> Option<&Sha256> {
1009 find_extract!(self.known_tagged_fields(), TaggedField::PaymentHash(ref x), x)
1012 pub fn description(&self) -> Option<&Description> {
1013 find_extract!(self.known_tagged_fields(), TaggedField::Description(ref x), x)
1016 pub fn payee_pub_key(&self) -> Option<&PayeePubKey> {
1017 find_extract!(self.known_tagged_fields(), TaggedField::PayeePubKey(ref x), x)
1020 pub fn description_hash(&self) -> Option<&Sha256> {
1021 find_extract!(self.known_tagged_fields(), TaggedField::DescriptionHash(ref x), x)
1024 pub fn expiry_time(&self) -> Option<&ExpiryTime> {
1025 find_extract!(self.known_tagged_fields(), TaggedField::ExpiryTime(ref x), x)
1028 pub fn min_final_cltv_expiry_delta(&self) -> Option<&MinFinalCltvExpiryDelta> {
1029 find_extract!(self.known_tagged_fields(), TaggedField::MinFinalCltvExpiryDelta(ref x), x)
1032 pub fn payment_secret(&self) -> Option<&PaymentSecret> {
1033 find_extract!(self.known_tagged_fields(), TaggedField::PaymentSecret(ref x), x)
1036 pub fn payment_metadata(&self) -> Option<&Vec<u8>> {
1037 find_extract!(self.known_tagged_fields(), TaggedField::PaymentMetadata(ref x), x)
1040 pub fn features(&self) -> Option<&InvoiceFeatures> {
1041 find_extract!(self.known_tagged_fields(), TaggedField::Features(ref x), x)
1044 /// This is not exported to bindings users as we don't support Vec<&NonOpaqueType>
1045 pub fn fallbacks(&self) -> Vec<&Fallback> {
1046 find_all_extract!(self.known_tagged_fields(), TaggedField::Fallback(ref x), x).collect()
1049 pub fn private_routes(&self) -> Vec<&PrivateRoute> {
1050 find_all_extract!(self.known_tagged_fields(), TaggedField::PrivateRoute(ref x), x).collect()
1053 pub fn amount_pico_btc(&self) -> Option<u64> {
1054 self.hrp.raw_amount.map(|v| {
1055 v * self.hrp.si_prefix.as_ref().map_or(1_000_000_000_000, |si| { si.multiplier() })
1059 pub fn currency(&self) -> Currency {
1060 self.hrp.currency.clone()
1064 impl PositiveTimestamp {
1065 /// Creates a `PositiveTimestamp` from a Unix timestamp in the range `0..=MAX_TIMESTAMP`.
1067 /// Otherwise, returns a [`CreationError::TimestampOutOfBounds`].
1068 pub fn from_unix_timestamp(unix_seconds: u64) -> Result<Self, CreationError> {
1069 if unix_seconds <= MAX_TIMESTAMP {
1070 Ok(Self(Duration::from_secs(unix_seconds)))
1072 Err(CreationError::TimestampOutOfBounds)
1076 /// Creates a `PositiveTimestamp` from a [`SystemTime`] with a corresponding Unix timestamp in
1077 /// the range `0..=MAX_TIMESTAMP`.
1079 /// Note that the subsecond part is dropped as it is not representable in BOLT 11 invoices.
1081 /// Otherwise, returns a [`CreationError::TimestampOutOfBounds`].
1082 #[cfg(feature = "std")]
1083 pub fn from_system_time(time: SystemTime) -> Result<Self, CreationError> {
1084 time.duration_since(SystemTime::UNIX_EPOCH)
1085 .map(Self::from_duration_since_epoch)
1086 .unwrap_or(Err(CreationError::TimestampOutOfBounds))
1089 /// Creates a `PositiveTimestamp` from a [`Duration`] since the Unix epoch in the range
1090 /// `0..=MAX_TIMESTAMP`.
1092 /// Note that the subsecond part is dropped as it is not representable in BOLT 11 invoices.
1094 /// Otherwise, returns a [`CreationError::TimestampOutOfBounds`].
1095 pub fn from_duration_since_epoch(duration: Duration) -> Result<Self, CreationError> {
1096 Self::from_unix_timestamp(duration.as_secs())
1099 /// Returns the Unix timestamp representing the stored time
1100 pub fn as_unix_timestamp(&self) -> u64 {
1104 /// Returns the duration of the stored time since the Unix epoch
1105 pub fn as_duration_since_epoch(&self) -> Duration {
1109 /// Returns the [`SystemTime`] representing the stored time
1110 #[cfg(feature = "std")]
1111 pub fn as_time(&self) -> SystemTime {
1112 SystemTime::UNIX_EPOCH + self.0
1116 #[cfg(feature = "std")]
1117 impl From<PositiveTimestamp> for SystemTime {
1118 fn from(val: PositiveTimestamp) -> Self {
1119 SystemTime::UNIX_EPOCH + val.0
1124 /// The hash of the [`RawInvoice`] that was signed.
1125 pub fn signable_hash(&self) -> [u8; 32] {
1126 self.signed_invoice.hash
1129 /// Transform the `Invoice` into it's unchecked version
1130 pub fn into_signed_raw(self) -> SignedRawInvoice {
1134 /// Check that all mandatory fields are present
1135 fn check_field_counts(&self) -> Result<(), SemanticError> {
1136 // "A writer MUST include exactly one p field […]."
1137 let payment_hash_cnt = self.tagged_fields().filter(|&tf| match *tf {
1138 TaggedField::PaymentHash(_) => true,
1141 if payment_hash_cnt < 1 {
1142 return Err(SemanticError::NoPaymentHash);
1143 } else if payment_hash_cnt > 1 {
1144 return Err(SemanticError::MultiplePaymentHashes);
1147 // "A writer MUST include either exactly one d or exactly one h field."
1148 let description_cnt = self.tagged_fields().filter(|&tf| match *tf {
1149 TaggedField::Description(_) | TaggedField::DescriptionHash(_) => true,
1152 if description_cnt < 1 {
1153 return Err(SemanticError::NoDescription);
1154 } else if description_cnt > 1 {
1155 return Err(SemanticError::MultipleDescriptions);
1158 self.check_payment_secret()?;
1163 /// Checks that there is exactly one payment secret field
1164 fn check_payment_secret(&self) -> Result<(), SemanticError> {
1165 // "A writer MUST include exactly one `s` field."
1166 let payment_secret_count = self.tagged_fields().filter(|&tf| match *tf {
1167 TaggedField::PaymentSecret(_) => true,
1170 if payment_secret_count < 1 {
1171 return Err(SemanticError::NoPaymentSecret);
1172 } else if payment_secret_count > 1 {
1173 return Err(SemanticError::MultiplePaymentSecrets);
1179 /// Check that amount is a whole number of millisatoshis
1180 fn check_amount(&self) -> Result<(), SemanticError> {
1181 if let Some(amount_pico_btc) = self.amount_pico_btc() {
1182 if amount_pico_btc % 10 != 0 {
1183 return Err(SemanticError::ImpreciseAmount);
1189 /// Check that feature bits are set as required
1190 fn check_feature_bits(&self) -> Result<(), SemanticError> {
1191 self.check_payment_secret()?;
1193 // "A writer MUST set an s field if and only if the payment_secret feature is set."
1194 // (this requirement has been since removed, and we now require the payment secret
1195 // feature bit always).
1196 let features = self.tagged_fields().find(|&tf| match *tf {
1197 TaggedField::Features(_) => true,
1201 None => Err(SemanticError::InvalidFeatures),
1202 Some(TaggedField::Features(features)) => {
1203 if features.requires_unknown_bits() {
1204 Err(SemanticError::InvalidFeatures)
1205 } else if !features.supports_payment_secret() {
1206 Err(SemanticError::InvalidFeatures)
1211 Some(_) => unreachable!(),
1215 /// Check that the invoice is signed correctly and that key recovery works
1216 pub fn check_signature(&self) -> Result<(), SemanticError> {
1217 match self.signed_invoice.recover_payee_pub_key() {
1218 Err(secp256k1::Error::InvalidRecoveryId) =>
1219 return Err(SemanticError::InvalidRecoveryId),
1220 Err(secp256k1::Error::InvalidSignature) =>
1221 return Err(SemanticError::InvalidSignature),
1222 Err(e) => panic!("no other error may occur, got {:?}", e),
1226 if !self.signed_invoice.check_signature() {
1227 return Err(SemanticError::InvalidSignature);
1233 /// Constructs an `Invoice` from a [`SignedRawInvoice`] by checking all its invariants.
1235 /// use lightning_invoice::*;
1237 /// let invoice = "lnbc100p1psj9jhxdqud3jxktt5w46x7unfv9kz6mn0v3jsnp4q0d3p2sfluzdx45tqcs\
1238 /// h2pu5qc7lgq0xs578ngs6s0s68ua4h7cvspp5q6rmq35js88zp5dvwrv9m459tnk2zunwj5jalqtyxqulh0l\
1239 /// 5gflssp5nf55ny5gcrfl30xuhzj3nphgj27rstekmr9fw3ny5989s300gyus9qyysgqcqpcrzjqw2sxwe993\
1240 /// h5pcm4dxzpvttgza8zhkqxpgffcrf5v25nwpr3cmfg7z54kuqq8rgqqqqqqqq2qqqqq9qq9qrzjqd0ylaqcl\
1241 /// j9424x9m8h2vcukcgnm6s56xfgu3j78zyqzhgs4hlpzvznlugqq9vsqqqqqqqlgqqqqqeqq9qrzjqwldmj9d\
1242 /// ha74df76zhx6l9we0vjdquygcdt3kssupehe64g6yyp5yz5rhuqqwccqqyqqqqlgqqqqjcqq9qrzjqf9e58a\
1243 /// guqr0rcun0ajlvmzq3ek63cw2w282gv3z5uupmuwvgjtq2z55qsqqg6qqqyqqqrtnqqqzq3cqygrzjqvphms\
1244 /// ywntrrhqjcraumvc4y6r8v4z5v593trte429v4hredj7ms5z52usqq9ngqqqqqqqlgqqqqqqgq9qrzjq2v0v\
1245 /// p62g49p7569ev48cmulecsxe59lvaw3wlxm7r982zxa9zzj7z5l0cqqxusqqyqqqqlgqqqqqzsqygarl9fh3\
1246 /// 8s0gyuxjjgux34w75dnc6xp2l35j7es3jd4ugt3lu0xzre26yg5m7ke54n2d5sym4xcmxtl8238xxvw5h5h5\
1247 /// j5r6drg6k6zcqj0fcwg";
1249 /// let signed = invoice.parse::<SignedRawInvoice>().unwrap();
1251 /// assert!(Invoice::from_signed(signed).is_ok());
1253 pub fn from_signed(signed_invoice: SignedRawInvoice) -> Result<Self, SemanticError> {
1254 let invoice = Invoice {
1257 invoice.check_field_counts()?;
1258 invoice.check_feature_bits()?;
1259 invoice.check_signature()?;
1260 invoice.check_amount()?;
1265 /// Returns the `Invoice`'s timestamp (should equal its creation time)
1266 #[cfg(feature = "std")]
1267 pub fn timestamp(&self) -> SystemTime {
1268 self.signed_invoice.raw_invoice().data.timestamp.as_time()
1271 /// Returns the `Invoice`'s timestamp as a duration since the Unix epoch
1272 pub fn duration_since_epoch(&self) -> Duration {
1273 self.signed_invoice.raw_invoice().data.timestamp.0
1276 /// Returns an iterator over all tagged fields of this Invoice.
1278 /// This is not exported to bindings users as there is not yet a manual mapping for a FilterMap
1279 pub fn tagged_fields(&self)
1280 -> FilterMap<Iter<RawTaggedField>, fn(&RawTaggedField) -> Option<&TaggedField>> {
1281 self.signed_invoice.raw_invoice().known_tagged_fields()
1284 /// Returns the hash to which we will receive the preimage on completion of the payment
1285 pub fn payment_hash(&self) -> &sha256::Hash {
1286 &self.signed_invoice.payment_hash().expect("checked by constructor").0
1289 /// Return the description or a hash of it for longer ones
1291 /// This is not exported to bindings users because we don't yet export InvoiceDescription
1292 pub fn description(&self) -> InvoiceDescription {
1293 if let Some(direct) = self.signed_invoice.description() {
1294 return InvoiceDescription::Direct(direct);
1295 } else if let Some(hash) = self.signed_invoice.description_hash() {
1296 return InvoiceDescription::Hash(hash);
1298 unreachable!("ensured by constructor");
1301 /// Get the payee's public key if one was included in the invoice
1302 pub fn payee_pub_key(&self) -> Option<&PublicKey> {
1303 self.signed_invoice.payee_pub_key().map(|x| &x.0)
1306 /// Get the payment secret if one was included in the invoice
1307 pub fn payment_secret(&self) -> &PaymentSecret {
1308 self.signed_invoice.payment_secret().expect("was checked by constructor")
1311 /// Get the payment metadata blob if one was included in the invoice
1312 pub fn payment_metadata(&self) -> Option<&Vec<u8>> {
1313 self.signed_invoice.payment_metadata()
1316 /// Get the invoice features if they were included in the invoice
1317 pub fn features(&self) -> Option<&InvoiceFeatures> {
1318 self.signed_invoice.features()
1321 /// Recover the payee's public key (only to be used if none was included in the invoice)
1322 pub fn recover_payee_pub_key(&self) -> PublicKey {
1323 self.signed_invoice.recover_payee_pub_key().expect("was checked by constructor").0
1326 /// Returns the Duration since the Unix epoch at which the invoice expires.
1327 /// Returning None if overflow occurred.
1328 pub fn expires_at(&self) -> Option<Duration> {
1329 self.duration_since_epoch().checked_add(self.expiry_time())
1332 /// Returns the invoice's expiry time, if present, otherwise [`DEFAULT_EXPIRY_TIME`].
1333 pub fn expiry_time(&self) -> Duration {
1334 self.signed_invoice.expiry_time()
1336 .unwrap_or(Duration::from_secs(DEFAULT_EXPIRY_TIME))
1339 /// Returns whether the invoice has expired.
1340 #[cfg(feature = "std")]
1341 pub fn is_expired(&self) -> bool {
1342 Self::is_expired_from_epoch(&self.timestamp(), self.expiry_time())
1345 /// Returns whether the expiry time from the given epoch has passed.
1346 #[cfg(feature = "std")]
1347 pub(crate) fn is_expired_from_epoch(epoch: &SystemTime, expiry_time: Duration) -> bool {
1348 match epoch.elapsed() {
1349 Ok(elapsed) => elapsed > expiry_time,
1354 /// Returns the Duration remaining until the invoice expires.
1355 #[cfg(feature = "std")]
1356 pub fn duration_until_expiry(&self) -> Duration {
1357 SystemTime::now().duration_since(SystemTime::UNIX_EPOCH)
1358 .map(|now| self.expiration_remaining_from_epoch(now))
1359 .unwrap_or(Duration::from_nanos(0))
1362 /// Returns the Duration remaining until the invoice expires given the current time.
1363 /// `time` is the timestamp as a duration since the Unix epoch.
1364 pub fn expiration_remaining_from_epoch(&self, time: Duration) -> Duration {
1365 self.expires_at().map(|x| x.checked_sub(time)).flatten().unwrap_or(Duration::from_nanos(0))
1368 /// Returns whether the expiry time would pass at the given point in time.
1369 /// `at_time` is the timestamp as a duration since the Unix epoch.
1370 pub fn would_expire(&self, at_time: Duration) -> bool {
1371 self.duration_since_epoch()
1372 .checked_add(self.expiry_time())
1373 .unwrap_or_else(|| Duration::new(u64::max_value(), 1_000_000_000 - 1)) < at_time
1376 /// Returns the invoice's `min_final_cltv_expiry_delta` time, if present, otherwise
1377 /// [`DEFAULT_MIN_FINAL_CLTV_EXPIRY_DELTA`].
1378 pub fn min_final_cltv_expiry_delta(&self) -> u64 {
1379 self.signed_invoice.min_final_cltv_expiry_delta()
1381 .unwrap_or(DEFAULT_MIN_FINAL_CLTV_EXPIRY_DELTA)
1384 /// Returns a list of all fallback addresses
1386 /// This is not exported to bindings users as we don't support Vec<&NonOpaqueType>
1387 pub fn fallbacks(&self) -> Vec<&Fallback> {
1388 self.signed_invoice.fallbacks()
1391 /// Returns a list of all fallback addresses as [`Address`]es
1392 pub fn fallback_addresses(&self) -> Vec<Address> {
1393 self.fallbacks().iter().map(|fallback| {
1394 let payload = match fallback {
1395 Fallback::SegWitProgram { version, program } => {
1396 Payload::WitnessProgram { version: *version, program: program.to_vec() }
1398 Fallback::PubKeyHash(pkh) => {
1399 Payload::PubkeyHash(*pkh)
1401 Fallback::ScriptHash(sh) => {
1402 Payload::ScriptHash(*sh)
1406 Address { payload, network: self.network() }
1410 /// Returns a list of all routes included in the invoice
1411 pub fn private_routes(&self) -> Vec<&PrivateRoute> {
1412 self.signed_invoice.private_routes()
1415 /// Returns a list of all routes included in the invoice as the underlying hints
1416 pub fn route_hints(&self) -> Vec<RouteHint> {
1418 self.signed_invoice.known_tagged_fields(), TaggedField::PrivateRoute(ref x), x
1419 ).map(|route| (**route).clone()).collect()
1422 /// Returns the currency for which the invoice was issued
1423 pub fn currency(&self) -> Currency {
1424 self.signed_invoice.currency()
1427 /// Returns the network for which the invoice was issued
1429 /// This is not exported to bindings users, see [`Self::currency`] instead.
1430 pub fn network(&self) -> Network {
1431 self.signed_invoice.currency().into()
1434 /// Returns the amount if specified in the invoice as millisatoshis.
1435 pub fn amount_milli_satoshis(&self) -> Option<u64> {
1436 self.signed_invoice.amount_pico_btc().map(|v| v / 10)
1439 /// Returns the amount if specified in the invoice as pico BTC.
1440 fn amount_pico_btc(&self) -> Option<u64> {
1441 self.signed_invoice.amount_pico_btc()
1445 impl From<TaggedField> for RawTaggedField {
1446 fn from(tf: TaggedField) -> Self {
1447 RawTaggedField::KnownSemantics(tf)
1452 /// Numeric representation of the field's tag
1453 pub fn tag(&self) -> u5 {
1454 let tag = match *self {
1455 TaggedField::PaymentHash(_) => constants::TAG_PAYMENT_HASH,
1456 TaggedField::Description(_) => constants::TAG_DESCRIPTION,
1457 TaggedField::PayeePubKey(_) => constants::TAG_PAYEE_PUB_KEY,
1458 TaggedField::DescriptionHash(_) => constants::TAG_DESCRIPTION_HASH,
1459 TaggedField::ExpiryTime(_) => constants::TAG_EXPIRY_TIME,
1460 TaggedField::MinFinalCltvExpiryDelta(_) => constants::TAG_MIN_FINAL_CLTV_EXPIRY_DELTA,
1461 TaggedField::Fallback(_) => constants::TAG_FALLBACK,
1462 TaggedField::PrivateRoute(_) => constants::TAG_PRIVATE_ROUTE,
1463 TaggedField::PaymentSecret(_) => constants::TAG_PAYMENT_SECRET,
1464 TaggedField::PaymentMetadata(_) => constants::TAG_PAYMENT_METADATA,
1465 TaggedField::Features(_) => constants::TAG_FEATURES,
1468 u5::try_from_u8(tag).expect("all tags defined are <32")
1474 /// Creates a new `Description` if `description` is at most 1023 __bytes__ long,
1475 /// returns [`CreationError::DescriptionTooLong`] otherwise
1477 /// Please note that single characters may use more than one byte due to UTF8 encoding.
1478 pub fn new(description: String) -> Result<Description, CreationError> {
1479 if description.len() > 639 {
1480 Err(CreationError::DescriptionTooLong)
1482 Ok(Description(description))
1486 /// Returns the underlying description [`String`]
1487 pub fn into_inner(self) -> String {
1492 impl From<Description> for String {
1493 fn from(val: Description) -> Self {
1498 impl Deref for Description {
1501 fn deref(&self) -> &str {
1506 impl From<PublicKey> for PayeePubKey {
1507 fn from(pk: PublicKey) -> Self {
1512 impl Deref for PayeePubKey {
1513 type Target = PublicKey;
1515 fn deref(&self) -> &PublicKey {
1521 /// Construct an `ExpiryTime` from seconds.
1522 pub fn from_seconds(seconds: u64) -> ExpiryTime {
1523 ExpiryTime(Duration::from_secs(seconds))
1526 /// Construct an `ExpiryTime` from a [`Duration`], dropping the sub-second part.
1527 pub fn from_duration(duration: Duration) -> ExpiryTime {
1528 Self::from_seconds(duration.as_secs())
1531 /// Returns the expiry time in seconds
1532 pub fn as_seconds(&self) -> u64 {
1536 /// Returns a reference to the underlying [`Duration`] (=expiry time)
1537 pub fn as_duration(&self) -> &Duration {
1543 /// Creates a new (partial) route from a list of hops
1544 pub fn new(hops: RouteHint) -> Result<PrivateRoute, CreationError> {
1545 if hops.0.len() <= 12 {
1546 Ok(PrivateRoute(hops))
1548 Err(CreationError::RouteTooLong)
1552 /// Returns the underlying list of hops
1553 pub fn into_inner(self) -> RouteHint {
1558 impl From<PrivateRoute> for RouteHint {
1559 fn from(val: PrivateRoute) -> Self {
1564 impl Deref for PrivateRoute {
1565 type Target = RouteHint;
1567 fn deref(&self) -> &RouteHint {
1572 impl Deref for InvoiceSignature {
1573 type Target = RecoverableSignature;
1575 fn deref(&self) -> &RecoverableSignature {
1580 impl Deref for SignedRawInvoice {
1581 type Target = RawInvoice;
1583 fn deref(&self) -> &RawInvoice {
1588 /// Errors that may occur when constructing a new [`RawInvoice`] or [`Invoice`]
1589 #[derive(Eq, PartialEq, Debug, Clone)]
1590 pub enum CreationError {
1591 /// The supplied description string was longer than 639 __bytes__ (see [`Description::new`])
1594 /// The specified route has too many hops and can't be encoded
1597 /// The Unix timestamp of the supplied date is less than zero or greater than 35-bits
1598 TimestampOutOfBounds,
1600 /// The supplied millisatoshi amount was greater than the total bitcoin supply.
1603 /// Route hints were required for this invoice and were missing. Applies to
1604 /// [phantom invoices].
1606 /// [phantom invoices]: crate::utils::create_phantom_invoice
1609 /// The provided `min_final_cltv_expiry_delta` was less than [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
1611 /// [`MIN_FINAL_CLTV_EXPIRY_DELTA`]: lightning::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY_DELTA
1612 MinFinalCltvExpiryDeltaTooShort,
1615 impl Display for CreationError {
1616 fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
1618 CreationError::DescriptionTooLong => f.write_str("The supplied description string was longer than 639 bytes"),
1619 CreationError::RouteTooLong => f.write_str("The specified route has too many hops and can't be encoded"),
1620 CreationError::TimestampOutOfBounds => f.write_str("The Unix timestamp of the supplied date is less than zero or greater than 35-bits"),
1621 CreationError::InvalidAmount => f.write_str("The supplied millisatoshi amount was greater than the total bitcoin supply"),
1622 CreationError::MissingRouteHints => f.write_str("The invoice required route hints and they weren't provided"),
1623 CreationError::MinFinalCltvExpiryDeltaTooShort => f.write_str(
1624 "The supplied final CLTV expiry delta was less than LDK's `MIN_FINAL_CLTV_EXPIRY_DELTA`"),
1629 #[cfg(feature = "std")]
1630 impl std::error::Error for CreationError { }
1632 /// Errors that may occur when converting a [`RawInvoice`] to an [`Invoice`]. They relate to the
1633 /// requirements sections in BOLT #11
1634 #[derive(Eq, PartialEq, Debug, Clone)]
1635 pub enum SemanticError {
1636 /// The invoice is missing the mandatory payment hash
1639 /// The invoice has multiple payment hashes which isn't allowed
1640 MultiplePaymentHashes,
1642 /// No description or description hash are part of the invoice
1645 /// The invoice contains multiple descriptions and/or description hashes which isn't allowed
1646 MultipleDescriptions,
1648 /// The invoice is missing the mandatory payment secret, which all modern lightning nodes
1652 /// The invoice contains multiple payment secrets
1653 MultiplePaymentSecrets,
1655 /// The invoice's features are invalid
1658 /// The recovery id doesn't fit the signature/pub key
1661 /// The invoice's signature is invalid
1664 /// The invoice's amount was not a whole number of millisatoshis
1668 impl Display for SemanticError {
1669 fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
1671 SemanticError::NoPaymentHash => f.write_str("The invoice is missing the mandatory payment hash"),
1672 SemanticError::MultiplePaymentHashes => f.write_str("The invoice has multiple payment hashes which isn't allowed"),
1673 SemanticError::NoDescription => f.write_str("No description or description hash are part of the invoice"),
1674 SemanticError::MultipleDescriptions => f.write_str("The invoice contains multiple descriptions and/or description hashes which isn't allowed"),
1675 SemanticError::NoPaymentSecret => f.write_str("The invoice is missing the mandatory payment secret"),
1676 SemanticError::MultiplePaymentSecrets => f.write_str("The invoice contains multiple payment secrets"),
1677 SemanticError::InvalidFeatures => f.write_str("The invoice's features are invalid"),
1678 SemanticError::InvalidRecoveryId => f.write_str("The recovery id doesn't fit the signature/pub key"),
1679 SemanticError::InvalidSignature => f.write_str("The invoice's signature is invalid"),
1680 SemanticError::ImpreciseAmount => f.write_str("The invoice's amount was not a whole number of millisatoshis"),
1685 #[cfg(feature = "std")]
1686 impl std::error::Error for SemanticError { }
1688 /// When signing using a fallible method either an user-supplied `SignError` or a [`CreationError`]
1690 #[derive(Eq, PartialEq, Debug, Clone)]
1691 pub enum SignOrCreationError<S = ()> {
1692 /// An error occurred during signing
1695 /// An error occurred while building the transaction
1696 CreationError(CreationError),
1699 impl<S> Display for SignOrCreationError<S> {
1700 fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
1702 SignOrCreationError::SignError(_) => f.write_str("An error occurred during signing"),
1703 SignOrCreationError::CreationError(err) => err.fmt(f),
1708 #[cfg(feature = "serde")]
1709 impl Serialize for Invoice {
1710 fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: Serializer {
1711 serializer.serialize_str(self.to_string().as_str())
1714 #[cfg(feature = "serde")]
1715 impl<'de> Deserialize<'de> for Invoice {
1716 fn deserialize<D>(deserializer: D) -> Result<Invoice, D::Error> where D: Deserializer<'de> {
1717 let bolt11 = String::deserialize(deserializer)?
1719 .map_err(|e| D::Error::custom(alloc::format!("{:?}", e)))?;
1727 use bitcoin::Script;
1728 use bitcoin_hashes::hex::FromHex;
1729 use bitcoin_hashes::sha256;
1732 fn test_system_time_bounds_assumptions() {
1734 crate::PositiveTimestamp::from_unix_timestamp(crate::MAX_TIMESTAMP + 1),
1735 Err(crate::CreationError::TimestampOutOfBounds)
1740 fn test_calc_invoice_hash() {
1741 use crate::{RawInvoice, RawHrp, RawDataPart, Currency, PositiveTimestamp};
1742 use crate::TaggedField::*;
1744 let invoice = RawInvoice {
1746 currency: Currency::Bitcoin,
1751 timestamp: PositiveTimestamp::from_unix_timestamp(1496314658).unwrap(),
1752 tagged_fields: vec![
1753 PaymentHash(crate::Sha256(sha256::Hash::from_hex(
1754 "0001020304050607080900010203040506070809000102030405060708090102"
1755 ).unwrap())).into(),
1756 Description(crate::Description::new(
1757 "Please consider supporting this project".to_owned()
1763 let expected_hash = [
1764 0xc3, 0xd4, 0xe8, 0x3f, 0x64, 0x6f, 0xa7, 0x9a, 0x39, 0x3d, 0x75, 0x27, 0x7b, 0x1d,
1765 0x85, 0x8d, 0xb1, 0xd1, 0xf7, 0xab, 0x71, 0x37, 0xdc, 0xb7, 0x83, 0x5d, 0xb2, 0xec,
1766 0xd5, 0x18, 0xe1, 0xc9
1769 assert_eq!(invoice.signable_hash(), expected_hash)
1773 fn test_check_signature() {
1774 use crate::TaggedField::*;
1775 use secp256k1::Secp256k1;
1776 use secp256k1::ecdsa::{RecoveryId, RecoverableSignature};
1777 use secp256k1::{SecretKey, PublicKey};
1778 use crate::{SignedRawInvoice, InvoiceSignature, RawInvoice, RawHrp, RawDataPart, Currency, Sha256,
1781 let invoice = SignedRawInvoice {
1782 raw_invoice: RawInvoice {
1784 currency: Currency::Bitcoin,
1789 timestamp: PositiveTimestamp::from_unix_timestamp(1496314658).unwrap(),
1790 tagged_fields: vec ! [
1791 PaymentHash(Sha256(sha256::Hash::from_hex(
1792 "0001020304050607080900010203040506070809000102030405060708090102"
1793 ).unwrap())).into(),
1795 crate::Description::new(
1796 "Please consider supporting this project".to_owned()
1803 0xc3, 0xd4, 0xe8, 0x3f, 0x64, 0x6f, 0xa7, 0x9a, 0x39, 0x3d, 0x75, 0x27,
1804 0x7b, 0x1d, 0x85, 0x8d, 0xb1, 0xd1, 0xf7, 0xab, 0x71, 0x37, 0xdc, 0xb7,
1805 0x83, 0x5d, 0xb2, 0xec, 0xd5, 0x18, 0xe1, 0xc9
1807 signature: InvoiceSignature(RecoverableSignature::from_compact(
1809 0x38u8, 0xec, 0x68, 0x91, 0x34, 0x5e, 0x20, 0x41, 0x45, 0xbe, 0x8a,
1810 0x3a, 0x99, 0xde, 0x38, 0xe9, 0x8a, 0x39, 0xd6, 0xa5, 0x69, 0x43,
1811 0x4e, 0x18, 0x45, 0xc8, 0xaf, 0x72, 0x05, 0xaf, 0xcf, 0xcc, 0x7f,
1812 0x42, 0x5f, 0xcd, 0x14, 0x63, 0xe9, 0x3c, 0x32, 0x88, 0x1e, 0xad,
1813 0x0d, 0x6e, 0x35, 0x6d, 0x46, 0x7e, 0xc8, 0xc0, 0x25, 0x53, 0xf9,
1814 0xaa, 0xb1, 0x5e, 0x57, 0x38, 0xb1, 0x1f, 0x12, 0x7f
1816 RecoveryId::from_i32(0).unwrap()
1820 assert!(invoice.check_signature());
1822 let private_key = SecretKey::from_slice(
1824 0xe1, 0x26, 0xf6, 0x8f, 0x7e, 0xaf, 0xcc, 0x8b, 0x74, 0xf5, 0x4d, 0x26, 0x9f, 0xe2,
1825 0x06, 0xbe, 0x71, 0x50, 0x00, 0xf9, 0x4d, 0xac, 0x06, 0x7d, 0x1c, 0x04, 0xa8, 0xca,
1826 0x3b, 0x2d, 0xb7, 0x34
1829 let public_key = PublicKey::from_secret_key(&Secp256k1::new(), &private_key);
1831 assert_eq!(invoice.recover_payee_pub_key(), Ok(crate::PayeePubKey(public_key)));
1833 let (raw_invoice, _, _) = invoice.into_parts();
1834 let new_signed = raw_invoice.sign::<_, ()>(|hash| {
1835 Ok(Secp256k1::new().sign_ecdsa_recoverable(hash, &private_key))
1838 assert!(new_signed.check_signature());
1842 fn test_check_feature_bits() {
1843 use crate::TaggedField::*;
1844 use lightning::ln::features::InvoiceFeatures;
1845 use secp256k1::Secp256k1;
1846 use secp256k1::SecretKey;
1847 use crate::{RawInvoice, RawHrp, RawDataPart, Currency, Sha256, PositiveTimestamp, Invoice,
1850 let private_key = SecretKey::from_slice(&[42; 32]).unwrap();
1851 let payment_secret = lightning::ln::PaymentSecret([21; 32]);
1852 let invoice_template = RawInvoice {
1854 currency: Currency::Bitcoin,
1859 timestamp: PositiveTimestamp::from_unix_timestamp(1496314658).unwrap(),
1860 tagged_fields: vec ! [
1861 PaymentHash(Sha256(sha256::Hash::from_hex(
1862 "0001020304050607080900010203040506070809000102030405060708090102"
1863 ).unwrap())).into(),
1865 crate::Description::new(
1866 "Please consider supporting this project".to_owned()
1875 let mut invoice = invoice_template.clone();
1876 invoice.data.tagged_fields.push(PaymentSecret(payment_secret).into());
1877 invoice.sign::<_, ()>(|hash| Ok(Secp256k1::new().sign_ecdsa_recoverable(hash, &private_key)))
1879 assert_eq!(Invoice::from_signed(invoice), Err(SemanticError::InvalidFeatures));
1881 // Missing feature bits
1883 let mut invoice = invoice_template.clone();
1884 invoice.data.tagged_fields.push(PaymentSecret(payment_secret).into());
1885 invoice.data.tagged_fields.push(Features(InvoiceFeatures::empty()).into());
1886 invoice.sign::<_, ()>(|hash| Ok(Secp256k1::new().sign_ecdsa_recoverable(hash, &private_key)))
1888 assert_eq!(Invoice::from_signed(invoice), Err(SemanticError::InvalidFeatures));
1890 let mut payment_secret_features = InvoiceFeatures::empty();
1891 payment_secret_features.set_payment_secret_required();
1893 // Including payment secret and feature bits
1895 let mut invoice = invoice_template.clone();
1896 invoice.data.tagged_fields.push(PaymentSecret(payment_secret).into());
1897 invoice.data.tagged_fields.push(Features(payment_secret_features.clone()).into());
1898 invoice.sign::<_, ()>(|hash| Ok(Secp256k1::new().sign_ecdsa_recoverable(hash, &private_key)))
1900 assert!(Invoice::from_signed(invoice).is_ok());
1902 // No payment secret or features
1904 let invoice = invoice_template.clone();
1905 invoice.sign::<_, ()>(|hash| Ok(Secp256k1::new().sign_ecdsa_recoverable(hash, &private_key)))
1907 assert_eq!(Invoice::from_signed(invoice), Err(SemanticError::NoPaymentSecret));
1909 // No payment secret or feature bits
1911 let mut invoice = invoice_template.clone();
1912 invoice.data.tagged_fields.push(Features(InvoiceFeatures::empty()).into());
1913 invoice.sign::<_, ()>(|hash| Ok(Secp256k1::new().sign_ecdsa_recoverable(hash, &private_key)))
1915 assert_eq!(Invoice::from_signed(invoice), Err(SemanticError::NoPaymentSecret));
1917 // Missing payment secret
1919 let mut invoice = invoice_template.clone();
1920 invoice.data.tagged_fields.push(Features(payment_secret_features).into());
1921 invoice.sign::<_, ()>(|hash| Ok(Secp256k1::new().sign_ecdsa_recoverable(hash, &private_key)))
1923 assert_eq!(Invoice::from_signed(invoice), Err(SemanticError::NoPaymentSecret));
1925 // Multiple payment secrets
1927 let mut invoice = invoice_template;
1928 invoice.data.tagged_fields.push(PaymentSecret(payment_secret).into());
1929 invoice.data.tagged_fields.push(PaymentSecret(payment_secret).into());
1930 invoice.sign::<_, ()>(|hash| Ok(Secp256k1::new().sign_ecdsa_recoverable(hash, &private_key)))
1932 assert_eq!(Invoice::from_signed(invoice), Err(SemanticError::MultiplePaymentSecrets));
1936 fn test_builder_amount() {
1939 let builder = InvoiceBuilder::new(Currency::Bitcoin)
1940 .description("Test".into())
1941 .payment_hash(sha256::Hash::from_slice(&[0;32][..]).unwrap())
1942 .duration_since_epoch(Duration::from_secs(1234567));
1944 let invoice = builder.clone()
1945 .amount_milli_satoshis(1500)
1949 assert_eq!(invoice.hrp.si_prefix, Some(SiPrefix::Nano));
1950 assert_eq!(invoice.hrp.raw_amount, Some(15));
1953 let invoice = builder
1954 .amount_milli_satoshis(150)
1958 assert_eq!(invoice.hrp.si_prefix, Some(SiPrefix::Pico));
1959 assert_eq!(invoice.hrp.raw_amount, Some(1500));
1963 fn test_builder_fail() {
1965 use lightning::routing::router::RouteHintHop;
1966 use std::iter::FromIterator;
1967 use secp256k1::PublicKey;
1969 let builder = InvoiceBuilder::new(Currency::Bitcoin)
1970 .payment_hash(sha256::Hash::from_slice(&[0;32][..]).unwrap())
1971 .duration_since_epoch(Duration::from_secs(1234567))
1972 .min_final_cltv_expiry_delta(144);
1974 let too_long_string = String::from_iter(
1975 (0..1024).map(|_| '?')
1978 let long_desc_res = builder.clone()
1979 .description(too_long_string)
1981 assert_eq!(long_desc_res, Err(CreationError::DescriptionTooLong));
1983 let route_hop = RouteHintHop {
1984 src_node_id: PublicKey::from_slice(
1986 0x03, 0x9e, 0x03, 0xa9, 0x01, 0xb8, 0x55, 0x34, 0xff, 0x1e, 0x92, 0xc4,
1987 0x3c, 0x74, 0x43, 0x1f, 0x7c, 0xe7, 0x20, 0x46, 0x06, 0x0f, 0xcf, 0x7a,
1988 0x95, 0xc3, 0x7e, 0x14, 0x8f, 0x78, 0xc7, 0x72, 0x55
1991 short_channel_id: 0,
1994 proportional_millionths: 0,
1996 cltv_expiry_delta: 0,
1997 htlc_minimum_msat: None,
1998 htlc_maximum_msat: None,
2000 let too_long_route = RouteHint(vec![route_hop; 13]);
2001 let long_route_res = builder.clone()
2002 .description("Test".into())
2003 .private_route(too_long_route)
2005 assert_eq!(long_route_res, Err(CreationError::RouteTooLong));
2007 let sign_error_res = builder
2008 .description("Test".into())
2009 .payment_secret(PaymentSecret([0; 32]))
2010 .try_build_signed(|_| {
2011 Err("ImaginaryError")
2013 assert_eq!(sign_error_res, Err(SignOrCreationError::SignError("ImaginaryError")));
2017 fn test_builder_ok() {
2019 use lightning::routing::router::RouteHintHop;
2020 use secp256k1::Secp256k1;
2021 use secp256k1::{SecretKey, PublicKey};
2022 use std::time::{UNIX_EPOCH, Duration};
2024 let secp_ctx = Secp256k1::new();
2026 let private_key = SecretKey::from_slice(
2028 0xe1, 0x26, 0xf6, 0x8f, 0x7e, 0xaf, 0xcc, 0x8b, 0x74, 0xf5, 0x4d, 0x26, 0x9f, 0xe2,
2029 0x06, 0xbe, 0x71, 0x50, 0x00, 0xf9, 0x4d, 0xac, 0x06, 0x7d, 0x1c, 0x04, 0xa8, 0xca,
2030 0x3b, 0x2d, 0xb7, 0x34
2033 let public_key = PublicKey::from_secret_key(&secp_ctx, &private_key);
2035 let route_1 = RouteHint(vec![
2037 src_node_id: public_key,
2038 short_channel_id: de::parse_int_be(&[123; 8], 256).expect("short chan ID slice too big?"),
2041 proportional_millionths: 1,
2043 cltv_expiry_delta: 145,
2044 htlc_minimum_msat: None,
2045 htlc_maximum_msat: None,
2048 src_node_id: public_key,
2049 short_channel_id: de::parse_int_be(&[42; 8], 256).expect("short chan ID slice too big?"),
2052 proportional_millionths: 2,
2054 cltv_expiry_delta: 146,
2055 htlc_minimum_msat: None,
2056 htlc_maximum_msat: None,
2060 let route_2 = RouteHint(vec![
2062 src_node_id: public_key,
2063 short_channel_id: 0,
2066 proportional_millionths: 3,
2068 cltv_expiry_delta: 147,
2069 htlc_minimum_msat: None,
2070 htlc_maximum_msat: None,
2073 src_node_id: public_key,
2074 short_channel_id: de::parse_int_be(&[1; 8], 256).expect("short chan ID slice too big?"),
2077 proportional_millionths: 4,
2079 cltv_expiry_delta: 148,
2080 htlc_minimum_msat: None,
2081 htlc_maximum_msat: None,
2085 let builder = InvoiceBuilder::new(Currency::BitcoinTestnet)
2086 .amount_milli_satoshis(123)
2087 .duration_since_epoch(Duration::from_secs(1234567))
2088 .payee_pub_key(public_key)
2089 .expiry_time(Duration::from_secs(54321))
2090 .min_final_cltv_expiry_delta(144)
2091 .fallback(Fallback::PubKeyHash(PubkeyHash::from_slice(&[0;20]).unwrap()))
2092 .private_route(route_1.clone())
2093 .private_route(route_2.clone())
2094 .description_hash(sha256::Hash::from_slice(&[3;32][..]).unwrap())
2095 .payment_hash(sha256::Hash::from_slice(&[21;32][..]).unwrap())
2096 .payment_secret(PaymentSecret([42; 32]))
2099 let invoice = builder.clone().build_signed(|hash| {
2100 secp_ctx.sign_ecdsa_recoverable(hash, &private_key)
2103 assert!(invoice.check_signature().is_ok());
2104 assert_eq!(invoice.tagged_fields().count(), 10);
2106 assert_eq!(invoice.amount_milli_satoshis(), Some(123));
2107 assert_eq!(invoice.amount_pico_btc(), Some(1230));
2108 assert_eq!(invoice.currency(), Currency::BitcoinTestnet);
2109 #[cfg(feature = "std")]
2111 invoice.timestamp().duration_since(UNIX_EPOCH).unwrap().as_secs(),
2114 assert_eq!(invoice.payee_pub_key(), Some(&public_key));
2115 assert_eq!(invoice.expiry_time(), Duration::from_secs(54321));
2116 assert_eq!(invoice.min_final_cltv_expiry_delta(), 144);
2117 assert_eq!(invoice.fallbacks(), vec![&Fallback::PubKeyHash(PubkeyHash::from_slice(&[0;20]).unwrap())]);
2118 let address = Address::from_script(&Script::new_p2pkh(&PubkeyHash::from_slice(&[0;20]).unwrap()), Network::Testnet).unwrap();
2119 assert_eq!(invoice.fallback_addresses(), vec![address]);
2120 assert_eq!(invoice.private_routes(), vec![&PrivateRoute(route_1), &PrivateRoute(route_2)]);
2122 invoice.description(),
2123 InvoiceDescription::Hash(&Sha256(sha256::Hash::from_slice(&[3;32][..]).unwrap()))
2125 assert_eq!(invoice.payment_hash(), &sha256::Hash::from_slice(&[21;32][..]).unwrap());
2126 assert_eq!(invoice.payment_secret(), &PaymentSecret([42; 32]));
2128 let mut expected_features = InvoiceFeatures::empty();
2129 expected_features.set_variable_length_onion_required();
2130 expected_features.set_payment_secret_required();
2131 expected_features.set_basic_mpp_optional();
2132 assert_eq!(invoice.features(), Some(&expected_features));
2134 let raw_invoice = builder.build_raw().unwrap();
2135 assert_eq!(raw_invoice, *invoice.into_signed_raw().raw_invoice())
2139 fn test_default_values() {
2141 use secp256k1::Secp256k1;
2142 use secp256k1::SecretKey;
2144 let signed_invoice = InvoiceBuilder::new(Currency::Bitcoin)
2145 .description("Test".into())
2146 .payment_hash(sha256::Hash::from_slice(&[0;32][..]).unwrap())
2147 .payment_secret(PaymentSecret([0; 32]))
2148 .duration_since_epoch(Duration::from_secs(1234567))
2151 .sign::<_, ()>(|hash| {
2152 let privkey = SecretKey::from_slice(&[41; 32]).unwrap();
2153 let secp_ctx = Secp256k1::new();
2154 Ok(secp_ctx.sign_ecdsa_recoverable(hash, &privkey))
2157 let invoice = Invoice::from_signed(signed_invoice).unwrap();
2159 assert_eq!(invoice.min_final_cltv_expiry_delta(), DEFAULT_MIN_FINAL_CLTV_EXPIRY_DELTA);
2160 assert_eq!(invoice.expiry_time(), Duration::from_secs(DEFAULT_EXPIRY_TIME));
2161 assert!(!invoice.would_expire(Duration::from_secs(1234568)));
2165 fn test_expiration() {
2167 use secp256k1::Secp256k1;
2168 use secp256k1::SecretKey;
2170 let signed_invoice = InvoiceBuilder::new(Currency::Bitcoin)
2171 .description("Test".into())
2172 .payment_hash(sha256::Hash::from_slice(&[0;32][..]).unwrap())
2173 .payment_secret(PaymentSecret([0; 32]))
2174 .duration_since_epoch(Duration::from_secs(1234567))
2177 .sign::<_, ()>(|hash| {
2178 let privkey = SecretKey::from_slice(&[41; 32]).unwrap();
2179 let secp_ctx = Secp256k1::new();
2180 Ok(secp_ctx.sign_ecdsa_recoverable(hash, &privkey))
2183 let invoice = Invoice::from_signed(signed_invoice).unwrap();
2185 assert!(invoice.would_expire(Duration::from_secs(1234567 + DEFAULT_EXPIRY_TIME + 1)));
2188 #[cfg(feature = "serde")]
2191 let invoice_str = "lnbc100p1psj9jhxdqud3jxktt5w46x7unfv9kz6mn0v3jsnp4q0d3p2sfluzdx45tqcs\
2192 h2pu5qc7lgq0xs578ngs6s0s68ua4h7cvspp5q6rmq35js88zp5dvwrv9m459tnk2zunwj5jalqtyxqulh0l\
2193 5gflssp5nf55ny5gcrfl30xuhzj3nphgj27rstekmr9fw3ny5989s300gyus9qyysgqcqpcrzjqw2sxwe993\
2194 h5pcm4dxzpvttgza8zhkqxpgffcrf5v25nwpr3cmfg7z54kuqq8rgqqqqqqqq2qqqqq9qq9qrzjqd0ylaqcl\
2195 j9424x9m8h2vcukcgnm6s56xfgu3j78zyqzhgs4hlpzvznlugqq9vsqqqqqqqlgqqqqqeqq9qrzjqwldmj9d\
2196 ha74df76zhx6l9we0vjdquygcdt3kssupehe64g6yyp5yz5rhuqqwccqqyqqqqlgqqqqjcqq9qrzjqf9e58a\
2197 guqr0rcun0ajlvmzq3ek63cw2w282gv3z5uupmuwvgjtq2z55qsqqg6qqqyqqqrtnqqqzq3cqygrzjqvphms\
2198 ywntrrhqjcraumvc4y6r8v4z5v593trte429v4hredj7ms5z52usqq9ngqqqqqqqlgqqqqqqgq9qrzjq2v0v\
2199 p62g49p7569ev48cmulecsxe59lvaw3wlxm7r982zxa9zzj7z5l0cqqxusqqyqqqqlgqqqqqzsqygarl9fh3\
2200 8s0gyuxjjgux34w75dnc6xp2l35j7es3jd4ugt3lu0xzre26yg5m7ke54n2d5sym4xcmxtl8238xxvw5h5h5\
2201 j5r6drg6k6zcqj0fcwg";
2202 let invoice = invoice_str.parse::<super::Invoice>().unwrap();
2203 let serialized_invoice = serde_json::to_string(&invoice).unwrap();
2204 let deserialized_invoice: super::Invoice = serde_json::from_str(serialized_invoice.as_str()).unwrap();
2205 assert_eq!(invoice, deserialized_invoice);
2206 assert_eq!(invoice_str, deserialized_invoice.to_string().as_str());
2207 assert_eq!(invoice_str, serialized_invoice.as_str().trim_matches('\"'));