lightning 7.0.0 → 7.0.2
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 +1 -1
- package/README.md +2 -0
- package/lnd_methods/macaroon/methods.json +4 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -139,6 +139,8 @@ variables set:
|
|
|
139
139
|
- [getBackups](https://github.com/alexbosworth/ln-service#getbackups): Get recovery details for
|
|
140
140
|
all channels.
|
|
141
141
|
- [getBlock](https://github.com/alexbosworth/ln-service#getblock): Get a block
|
|
142
|
+
- [getChainAddresses](https://github.com/alexbosworth/ln-service#getchainaddresses):
|
|
143
|
+
Get a list of created chain addresses
|
|
142
144
|
- [getChainBalance](https://github.com/alexbosworth/ln-service#getchainbalance): Get the amount
|
|
143
145
|
of on-chain funds.
|
|
144
146
|
- [getChainFeeEstimate](https://github.com/alexbosworth/ln-service#getchainfeeestimate):
|
|
@@ -125,6 +125,10 @@
|
|
|
125
125
|
"methods": ["GetBestBlock", "GetBlock", "GetBlockHash"],
|
|
126
126
|
"type": "blocks"
|
|
127
127
|
},
|
|
128
|
+
"getChainAddresses": {
|
|
129
|
+
"method": "ListAddresses",
|
|
130
|
+
"type": "wallet"
|
|
131
|
+
},
|
|
128
132
|
"getChainBalance": {
|
|
129
133
|
"method": "WalletBalance",
|
|
130
134
|
"type": "default"
|
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"description": "Lightning Network client library",
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@alexbosworth/node-fetch": "2.6.2",
|
|
34
|
-
"@alexbosworth/tap": "15.0.
|
|
34
|
+
"@alexbosworth/tap": "15.0.12",
|
|
35
35
|
"tsd": "0.25.0",
|
|
36
36
|
"typescript": "4.9.4",
|
|
37
37
|
"ws": "8.11.0"
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"directory": "test/typescript"
|
|
60
60
|
},
|
|
61
61
|
"types": "index.d.ts",
|
|
62
|
-
"version": "7.0.
|
|
62
|
+
"version": "7.0.2"
|
|
63
63
|
}
|