mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-05-15 18:55:53 +00:00
6 lines
200 B
JavaScript
6 lines
200 B
JavaScript
import Bolt11Decoder from "light-bolt11-decoder"
|
|
|
|
export const getSatAmountFromInvoice = (invoice) => {
|
|
const decoded = Bolt11Decoder.decode(invoice)
|
|
return decoded.sections[2].value / 1000;
|
|
} |