24 breaking releases
new 0.25.0-alpha1 | Sep 21, 2023 |
---|---|
0.24.0 | Jul 21, 2023 |
0.24.0-alpha1 | Jun 24, 2023 |
0.22.0 | Mar 4, 2023 |
0.1.0 | Dec 14, 2018 |
#1024 in Magic Beans
23,211 downloads per month
Used in 26 crates
(18 directly)
5.5MB
86K
SLoC
lightning-invoice
This repo provides data structures for BOLT 11 lightning invoices and functions to parse and serialize these from and to bech32.
Please be sure to run the test suite since we need to check assumptions
regarding SystemTime
's bounds on your platform. You can also call check_platform
on startup or in your test suite to do so.
lib.rs
:
This crate provides data structures to represent lightning BOLT11 invoices and functions to create, encode and decode these. If you just want to use the standard en-/decoding functionality this should get you started:
- For parsing use
str::parse::<Bolt11Invoice>(&self)
(seeBolt11Invoice::from_str
) - For constructing invoices use the
InvoiceBuilder
- For serializing invoices use the
Display
/ToString
traits
Dependencies
~7MB
~86K SLoC