-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bolt11Payment::receive*
methods should accept a Bolt11InvoiceDescription
instead of a &str
#325
Comments
Unfortunately we can't do this (at least directly), as As other users had similar requirements (i.e., support for description hashes for longer strings), we so far had planned to simply default to a description hash if the provided string was too long (see #312). Would this cover your use case, too? |
Yes, I believe we can simply always hash it if that's supported |
It would default to hashing whenever the description string length surpasses the maximum size of 639 bytes, and would include the description string otherwise. Just to make sure, this would work for your use case? |
Actually the reasons we even have description hashes was on request of @benthecarman so he would have to answer if this is sufficient for his uses case - iirc it was nostr related. |
For lightning addresses it is needed. Would be weird for me that ldk node doesn't expose the description hash, lots of different things use this. |
Could you please elaborate how it is used in lightning addresses? |
The lnurl pay spec and nostr zap spec requires that the description hash is a hash of some of the data to make sure you're getting a valid invoice |
If I understand correctly than the hashed metadata in knurl pay is not necessarily longer than 639 bytes, hence the above proposed solution would not work for knurl pay and therefore lightning addresses - correct? |
The hash and description are separate fields so you can't really just put the data from one in another |
I think @tnull proposed that ldk would hash a description longer then 639 bytes internally and then put the hash into the description hash field, leaving the description field empty. |
This is needed for Fedimint lightning gateway to support creating invoices with description hashes
The text was updated successfully, but these errors were encountered: