paid-services 3.14.5 → 3.15.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,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## Version 3.15.2
4
+
5
+ - `manageSwap`: Add method to execute submarine swaps on testnet
6
+
3
7
  ## Version 3.14.5
4
8
 
5
9
  - `manageTrades`: Fix connecting to sellers when not already connected
package/index.js CHANGED
@@ -9,6 +9,7 @@ const {getServiceSchema} = require('./client');
9
9
  const {getServicesList} = require('./client');
10
10
  const {makePeerRequest} = require('./p2p');
11
11
  const {makeServiceRequest} = require('./client');
12
+ const {manageSwap} = require('./swaps');
12
13
  const {manageTrades} = require('./trades');
13
14
  const {schema} = require('./services');
14
15
  const {serviceAnchoredTrades} = require('./trades');
@@ -29,6 +30,7 @@ module.exports = {
29
30
  getServicesList,
30
31
  makePeerRequest,
31
32
  makeServiceRequest,
33
+ manageSwap,
32
34
  manageTrades,
33
35
  serviceAnchoredTrades,
34
36
  serviceIds,
package/package.json CHANGED
@@ -7,21 +7,25 @@
7
7
  "url": "https://github.com/alexbosworth/paid-services/issues"
8
8
  },
9
9
  "dependencies": {
10
- "@alexbosworth/fiat": "1.0.1",
10
+ "@alexbosworth/fiat": "1.0.2",
11
11
  "async": "3.2.3",
12
- "asyncjs-util": "1.2.8",
13
- "bolt01": "1.2.3",
14
- "bolt07": "1.8.0",
12
+ "asyncjs-util": "1.2.9",
13
+ "bech32": "2.0.0",
14
+ "bolt01": "1.2.4",
15
+ "bolt07": "1.8.1",
15
16
  "ecpair": "2.0.1",
16
- "invoices": "2.0.4",
17
- "ln-service": "53.9.4",
18
- "ln-sync": "3.11.0",
17
+ "goldengate": "11.2.1",
18
+ "invoices": "2.0.6",
19
+ "ln-service": "53.14.1",
20
+ "ln-sync": "3.12.0",
21
+ "psbt": "2.0.1",
22
+ "p2tr": "1.3.1",
19
23
  "tiny-secp256k1": "2.2.1"
20
24
  },
21
25
  "description": "Lightning Paid Services library",
22
26
  "devDependencies": {
23
27
  "@alexbosworth/tap": "15.0.11",
24
- "ln-docker-daemons": "2.2.5",
28
+ "ln-docker-daemons": "2.2.9",
25
29
  "mock-lnd": "1.4.1",
26
30
  "secp256k1": "4.0.3"
27
31
  },
@@ -43,5 +47,5 @@
43
47
  "integration-tests": "tap -j 2 --branches=1 --functions=1 --lines=1 --statements=1 -t 180 test/integration/*.js",
44
48
  "test": "tap --branches=1 --functions=1 --lines=1 --statements=1 -t 60 test/actions/*.js test/balanced/*.js test/capacity/*.js test/client/*.js test/config/*.js test/p2p/*.js test/records/*.js test/respond/*.js test/server/*.js test/server/*.js test/services/*.js test/trades/*.js"
45
49
  },
46
- "version": "3.14.5"
50
+ "version": "3.15.2"
47
51
  }