@forgesworn/moneyer 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +3 -0
- package/dist/server.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.1] - 2026-08-21
|
|
4
|
+
|
|
5
|
+
- `withdrawLink` is now the plain URL (`https://host/w`), the form
|
|
6
|
+
lnurl-mint emits and the LUD-25 diagram shows, instead of
|
|
7
|
+
`lnurlw://host/w`. Both are legal readings of the draft; the reference
|
|
8
|
+
stack's is the intended one, and a wallet that only fetches the field
|
|
9
|
+
without LUD-17 translation now works. Raised on the spec as
|
|
10
|
+
lnurl/luds#301.
|
|
11
|
+
|
|
3
12
|
## [0.1.0] - 2026-08-20
|
|
4
13
|
|
|
5
14
|
Initial implementation.
|
package/README.md
CHANGED
|
@@ -128,6 +128,9 @@ maths, hashing, signature agreement) and
|
|
|
128
128
|
decoding and preimage verification on the melt path). The companion wallet
|
|
129
129
|
is [`@forgesworn/notecase`](https://github.com/forgesworn/notecase).
|
|
130
130
|
|
|
131
|
+
Other mints, wallets and libraries speaking the same protocol are indexed
|
|
132
|
+
in [awesome-lnurlcash](https://github.com/TheCryptoDonkey/awesome-lnurlcash).
|
|
133
|
+
|
|
131
134
|
## Licence
|
|
132
135
|
|
|
133
136
|
MIT.
|
package/dist/server.js
CHANGED
|
@@ -147,7 +147,10 @@ export const createMoneyer = async (config, deps = {}) => {
|
|
|
147
147
|
minSendable: effectiveMinSendableMsat,
|
|
148
148
|
maxSendable: config.maxSendableMsat,
|
|
149
149
|
metadata: JSON.stringify(metadata),
|
|
150
|
-
|
|
150
|
+
// The plain URL, as lnurl-mint emits and the LUD-25 diagram shows.
|
|
151
|
+
// LUD-17's lnurlw:// is the scheme a wallet puts on a QR, not a
|
|
152
|
+
// field in a JSON body; every other URL here is directly fetchable.
|
|
153
|
+
withdrawLink: `${origin}/w`,
|
|
151
154
|
disposable: false
|
|
152
155
|
});
|
|
153
156
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forgesworn/moneyer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "An LNURLcash (LUD-25) mint - strikes Lightning bearer notes. Independent implementation, cln/lnd funding sources, SQLite, zero HTTP framework.",
|
|
5
5
|
"author": "TheCryptoDonkey",
|
|
6
6
|
"license": "MIT",
|