ln-service 57.21.0 → 57.22.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
+ ## 57.22.0
4
+
5
+ - `createFundedPsbt`: Add support for `change_format` for change address type
6
+
3
7
  ## 57.21.0
4
8
 
5
9
  - `fundPsbt`: Add support for `change_format` to specify change address type
package/README.md CHANGED
@@ -698,6 +698,8 @@ Create an unsigned funded PSBT given inputs or outputs
698
698
 
699
699
  When specifying local inputs, they must be locked before using
700
700
 
701
+ `change_format` options: `p2tr` (only one change type is supported)
702
+
701
703
  `utxo_selection` methods: 'largest', 'random'
702
704
 
703
705
  Requires `onchain:write` permission
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "bolt07": "1.9.4",
11
11
  "invoices": "3.0.0",
12
- "lightning": "10.21.0",
12
+ "lightning": "10.22.0",
13
13
  "macaroon": "3.0.4"
14
14
  },
15
15
  "description": "Interaction helper for your Lightning Network daemon",
@@ -74,5 +74,5 @@
74
74
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
75
75
  "test": "echo $DOCKER_LND_VERSION && node test/runner"
76
76
  },
77
- "version": "57.21.0"
77
+ "version": "57.22.0"
78
78
  }