lightning 5.11.0 → 5.12.0

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,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 5.12.0
4
+
5
+ - `getWalletVersion`: Add support for LND 0.14.3-beta
6
+
3
7
  ## 5.11.0
4
8
 
5
9
  - `updateAlias`: Add method to update the node graph announcement alias
@@ -31,6 +31,7 @@
31
31
  "7f34774529fa0964d47fc418d4d2965435cbfdc0": "0.11.1-beta",
32
32
  "86d3dec7b939b21bb10f2cd1ff56970c392a1c69": "0.13.2-beta",
33
33
  "86114c575c2dff9dff1e1bb4df961c64aea9fc1c": "0.10.4-beta",
34
+ "bd0c46b4fcb027af1915bd67a3da70e8ca5c6efe": "0.14.3-beta",
34
35
  "d176d2d65fc06e6631c4dc9478592be8545a21de": "0.12.0-beta",
35
36
  "d233f61383f2f950aa06f5b09da5b0e78e784fae": "0.12.1-beta",
36
37
  "d62c575f8499a314eb27f12462d20500b6bda2c7": "0.10.3-beta",
@@ -16,7 +16,7 @@ const type = 'peers';
16
16
  Requires `peers:write` permissions
17
17
 
18
18
  {
19
- color: <Node Color #000000 String>
19
+ alias: <Node Alias String>
20
20
  lnd: <Authenticated LND API Object>
21
21
  }
22
22
 
@@ -11,7 +11,7 @@ const type = 'peers';
11
11
 
12
12
  Note: this method is not supported in LND versions 0.14.3 and below
13
13
 
14
- Requires LND built with `signrpc` build tag
14
+ Requires LND built with `peersrpc` build tag
15
15
 
16
16
  Requires `peers:write` permissions
17
17
 
package/package.json CHANGED
@@ -59,5 +59,5 @@
59
59
  "directory": "test/typescript"
60
60
  },
61
61
  "types": "index.d.ts",
62
- "version": "5.11.0"
62
+ "version": "5.12.0"
63
63
  }