Commit 77a0bbe
authored
Add BIP21 Unified QR Code Support (#302)
* Add `UnifiedQrPayment` module for BIP21 URIs
Firstly, I thought I staged and made commits for `unified_qr.rs`
so sorry if this is out of order!
But in `unified_qr.rs` I
- I introduced the `UnifiedQrPayment` struct to handle creating
and paying BIP21 URIs
- `receive` generates a URI with an on-chain address and BOLT11
invoice and returns the URI as a string
- `send` will parse a given URI string and attempt to send the
BOLT12 offer, BOLT11 invoice, then if those fail the fallback
on-chain address will be paid to.
- Then I included tests for URI generation and URI parsing
- Also has logging and error handling for payment operations
* Add `unified_qr_payment` payment handler to `Node`
- implement unified_qr_payment method to create the
Unified QR payment handler
- Includes conditional UniFFI features and updates docs
with BIP21 and BOLT11 links
* Add support for `unified_qr` in payment mod
- Included unified_qr in payment module
- Added `PaymentResult` and `UnifiedQrPayment`
from unified_qr for public use
* Add bip21 crate to handle BIP21 URIs
* Add `UnifiedQrPayment` and `PaymentResult` to `ldk_node.udl`
- Introduced `UnifiedQrPayment` method to `Node` interface
- Add `UnifiedQrPayment` interface with `receieve and
`send` methods
- Add `PaymentResult` interface (enum) with `Onchain`,
`Bolt11` and `Bolt12` fields
These changes add support for our UniFFI bindings and enable
the use of `unified_qr_payment` payment handler in Swift,
and Kotlin.
* Update `Error` enum with URI related errors
- Add `UriParameterFailed` and `InvalidUri` fields to
the `Error` enum
- Added related error messages in the Display impl for
the new fields
* Add `PaymentResult` import for UniFFI bindings
- Added `PaymentResult` so the .udl could access
the enum
- Added comment to explain the need to import any
re-exported items to enure they're accessible in
UniFFI. (becasue rustc says to add them in `lib.rs`
* Add Unified QR `send`/`receive` integration tests
- Added `unified_qr_send_receive` test to verify the `UnifedQrPayment`
functionality
- Added logic to handle paying a `BOLT12` offer, `BOLT11` invoice,
and if those fail `On-chain` tx from a URI.
- Validated each payments successful event
- Ensured the off-chain and on-chain balacnes reflected the payment
attempts
* Update PR with optimizations and nit fixups
The changes include:
- Fixed a handful of nits for better readability in
docs and simple grammar errors and made various name
changes that affected the committed files.
- Added a helper function in unified_qr.rs called
capitalize_qr_params to format the lightning param in
the receive method
- Removed the optional message in the receive method and
made it a required &str
- Adjusted UDL formatting to use tabs instead of spaces
These changes were made to improve code quality and
maintainability based on the review feedback
* Refactor URI parsing and add Bolt12 offer in receive
Changes include:
- Modified serialize_params to serialize both invoices and offers
- Refactored deserialize_temp by removing the code that was
parsing based on the lightning invoice/offer prefix. I instead
used for loop to iterate over each lightning parameter,
attempting to parse the string as an offer first, and then as an
invoice. May need to log an error if neither succeeds
- Added support for Bolt12 offers in the receive method
- Updated capitalize_params function to handle multiple lightning
parameters
- Added a generate_bip21_uri test to show what the uri looks
like in integration_tests_rust
- Adjusted integration tests. Still needs work
Still trying to figure out a bug related to Bolt12 offers being
"paid" when it should fall back to an on-chain tx
* Update BOLT12 offer to use `lno` key
In this commit:
- In serialize_params, BOLT12 offers were changed
to be serialized with the `lno` key rather than
the `lightning` key
- During deserializing, I had to make the same update.
Used a match to check whether it was a `lightning`
or `lno` key and then parsed accordingly.
- Next, a small name change: capitalize_qr_params to
format_uri. Previously I changed the value after
"&lightning" to all caps, but the "&lno=" value
wasn't being changed. So, added a helper method inside
format_uri to capitalize the values given the key!
- Updated corresponding tests with `lno` update
Small nits:
- Updated QrPaymentResult with more thorough docs
- Added a parsing test with an offer
* Refactor for clarity and improve error handling
This commit fixes a handful of minor comments/nits
that include:
- Updates to set the `bip21` crates default-features to false,
to minimize dependencies.
- Enable the `std` feature since we use/benefit from it.
- In `receive` return `InvoiceCreationFailed` or `OfferCreationFailed`
when creating an invoice or offer. Rather than silently logging the
error.
- Also in `receive` we first check if an amount is specified, and if
not, return an error and abort.
- Pass in `Config` to `UnifiedQrPayment` struct to use the users config
network.
- In `send` instead of checking each network for the `NetworkChecked`
URI, we pass in the `Config::Network`.
- Simplifed param parsing in `deserialize_temp` by directly finding
the key and parsing the corresponding value.
- General documentation fixes.
- In parsing tests, moved longer invoice/offer strings into.
variables that start with expected_ for clarity.
* Fix docs for clarity
Cleaned up the docs so they are easier to understand for the
user. Also changed the message param in receive to description.1 parent 8dd3790 commit 77a0bbe
File tree
8 files changed
+645
-5
lines changed- bindings
- src
- payment
- tests
8 files changed
+645
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| 64 | + | |
64 | 65 | | |
65 | 66 | | |
66 | 67 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
| 66 | + | |
66 | 67 | | |
67 | 68 | | |
68 | 69 | | |
| |||
148 | 149 | | |
149 | 150 | | |
150 | 151 | | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
151 | 159 | | |
152 | 160 | | |
153 | 161 | | |
| |||
175 | 183 | | |
176 | 184 | | |
177 | 185 | | |
| 186 | + | |
178 | 187 | | |
179 | 188 | | |
180 | 189 | | |
| |||
191 | 200 | | |
192 | 201 | | |
193 | 202 | | |
| 203 | + | |
194 | 204 | | |
195 | 205 | | |
196 | 206 | | |
| |||
276 | 286 | | |
277 | 287 | | |
278 | 288 | | |
| 289 | + | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
| 293 | + | |
| 294 | + | |
| 295 | + | |
279 | 296 | | |
280 | 297 | | |
281 | 298 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| 56 | + | |
| 57 | + | |
56 | 58 | | |
57 | 59 | | |
58 | 60 | | |
| |||
85 | 87 | | |
86 | 88 | | |
87 | 89 | | |
| 90 | + | |
| 91 | + | |
88 | 92 | | |
89 | 93 | | |
90 | 94 | | |
| |||
131 | 135 | | |
132 | 136 | | |
133 | 137 | | |
| 138 | + | |
134 | 139 | | |
135 | 140 | | |
136 | 141 | | |
| |||
147 | 152 | | |
148 | 153 | | |
149 | 154 | | |
| 155 | + | |
150 | 156 | | |
151 | 157 | | |
152 | 158 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
136 | | - | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
137 | 140 | | |
138 | 141 | | |
139 | 142 | | |
| |||
1072 | 1075 | | |
1073 | 1076 | | |
1074 | 1077 | | |
| 1078 | + | |
| 1079 | + | |
| 1080 | + | |
| 1081 | + | |
| 1082 | + | |
| 1083 | + | |
| 1084 | + | |
| 1085 | + | |
| 1086 | + | |
| 1087 | + | |
| 1088 | + | |
| 1089 | + | |
| 1090 | + | |
| 1091 | + | |
| 1092 | + | |
| 1093 | + | |
| 1094 | + | |
| 1095 | + | |
| 1096 | + | |
| 1097 | + | |
| 1098 | + | |
| 1099 | + | |
| 1100 | + | |
| 1101 | + | |
| 1102 | + | |
| 1103 | + | |
| 1104 | + | |
| 1105 | + | |
| 1106 | + | |
| 1107 | + | |
| 1108 | + | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
1075 | 1112 | | |
1076 | 1113 | | |
1077 | 1114 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| 8 | + | |
8 | 9 | | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
13 | 14 | | |
| 15 | + | |
0 commit comments