stacker.news/lib/bolt11.js
Keyan c3d709b025
add lnc attached wallet (#1104)
* add litd to docker env

* lnc payments

* handle locked wallet configuration

* create new lnc connection for every action

* ensure creds are decrypted before reconnecting

* perform permissions check
2024-04-26 21:22:30 -05:00

6 lines
108 B
JavaScript

import { decode } from 'bolt11'
export function bolt11Tags (bolt11) {
return decode(bolt11).tagsObject
}