lightning 7.1.3 → 7.1.5

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.1.3
3
+ ## 7.1.5
4
4
 
5
5
  - `signChainAddressMessage`: Add method to sign a message given a chain address
6
6
  - `verifyChainAddressMessage`: Add method to verify a chain address message
@@ -111,7 +111,7 @@ module.exports = (args, cbk) => {
111
111
  const keys = [getKey.public_key].concat(args.public_keys);
112
112
 
113
113
  return args.lnd[type][method]({
114
- all_signer_pubkeys: keys.map(hexAsBuffer),
114
+ all_signer_pubkeys: uniq(keys).map(hexAsBuffer),
115
115
  key_loc: {key_family: args.key_family, key_index: args.key_index},
116
116
  taproot_tweak: taprootTweak,
117
117
  version: defaultVersion,
package/package.json CHANGED
@@ -7,10 +7,10 @@
7
7
  "url": "https://github.com/alexbosworth/lightning/issues"
8
8
  },
9
9
  "dependencies": {
10
- "@grpc/grpc-js": "1.8.12",
11
- "@grpc/proto-loader": "0.7.5",
10
+ "@grpc/grpc-js": "1.8.13",
11
+ "@grpc/proto-loader": "0.7.6",
12
12
  "@types/express": "4.17.17",
13
- "@types/node": "18.14.6",
13
+ "@types/node": "18.15.10",
14
14
  "@types/request": "2.48.8",
15
15
  "@types/ws": "8.5.4",
16
16
  "async": "3.2.4",
@@ -26,15 +26,15 @@
26
26
  "invoices": "2.2.3",
27
27
  "psbt": "2.7.2",
28
28
  "tiny-secp256k1": "2.2.1",
29
- "type-fest": "3.6.1"
29
+ "type-fest": "3.7.1"
30
30
  },
31
31
  "description": "Lightning Network client library",
32
32
  "devDependencies": {
33
33
  "@alexbosworth/node-fetch": "2.6.2",
34
34
  "@alexbosworth/tap": "15.0.12",
35
- "tsd": "0.26.1",
36
- "typescript": "4.9.5",
37
- "ws": "8.12.1"
35
+ "tsd": "0.28.0",
36
+ "typescript": "5.0.2",
37
+ "ws": "8.13.0"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=14"
@@ -59,5 +59,5 @@
59
59
  "directory": "test/typescript"
60
60
  },
61
61
  "types": "index.d.ts",
62
- "version": "7.1.3"
62
+ "version": "7.1.5"
63
63
  }