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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 7.0.0
3
+ ## 7.0.2
4
4
 
5
5
  - `getAddresses`: Add method to get the list of chain addresses
6
6
 
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.11",
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.0"
62
+ "version": "7.0.2"
63
63
  }