@atomiqlabs/lp-lib 14.0.0-dev.3 → 14.0.0-dev.30

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.
Files changed (169) hide show
  1. package/LICENSE +201 -201
  2. package/dist/fees/IBtcFeeEstimator.d.ts +3 -3
  3. package/dist/fees/IBtcFeeEstimator.js +2 -2
  4. package/dist/index.d.ts +42 -40
  5. package/dist/index.js +58 -56
  6. package/dist/info/InfoHandler.d.ts +17 -17
  7. package/dist/info/InfoHandler.js +61 -61
  8. package/dist/plugins/IPlugin.d.ts +143 -143
  9. package/dist/plugins/IPlugin.js +34 -34
  10. package/dist/plugins/PluginManager.d.ts +112 -112
  11. package/dist/plugins/PluginManager.js +259 -259
  12. package/dist/prices/BinanceSwapPrice.d.ts +26 -26
  13. package/dist/prices/BinanceSwapPrice.js +92 -92
  14. package/dist/prices/CoinGeckoSwapPrice.d.ts +30 -30
  15. package/dist/prices/CoinGeckoSwapPrice.js +64 -64
  16. package/dist/prices/ISwapPrice.d.ts +43 -43
  17. package/dist/prices/ISwapPrice.js +55 -55
  18. package/dist/prices/OKXSwapPrice.d.ts +26 -26
  19. package/dist/prices/OKXSwapPrice.js +92 -92
  20. package/dist/storage/IIntermediaryStorage.d.ts +18 -18
  21. package/dist/storage/IIntermediaryStorage.js +2 -2
  22. package/dist/storagemanager/IntermediaryStorageManager.d.ts +19 -19
  23. package/dist/storagemanager/IntermediaryStorageManager.js +111 -106
  24. package/dist/storagemanager/StorageManager.d.ts +13 -13
  25. package/dist/storagemanager/StorageManager.js +64 -59
  26. package/dist/swaps/SwapHandler.d.ts +153 -152
  27. package/dist/swaps/SwapHandler.js +160 -159
  28. package/dist/swaps/SwapHandlerSwap.d.ts +79 -79
  29. package/dist/swaps/SwapHandlerSwap.js +78 -78
  30. package/dist/swaps/assertions/AmountAssertions.d.ts +28 -28
  31. package/dist/swaps/assertions/AmountAssertions.js +72 -72
  32. package/dist/swaps/assertions/FromBtcAmountAssertions.d.ts +76 -76
  33. package/dist/swaps/assertions/FromBtcAmountAssertions.js +180 -172
  34. package/dist/swaps/assertions/LightningAssertions.d.ts +44 -44
  35. package/dist/swaps/assertions/LightningAssertions.js +86 -86
  36. package/dist/swaps/assertions/ToBtcAmountAssertions.d.ts +53 -53
  37. package/dist/swaps/assertions/ToBtcAmountAssertions.js +150 -150
  38. package/dist/swaps/escrow/EscrowHandler.d.ts +51 -51
  39. package/dist/swaps/escrow/EscrowHandler.js +158 -158
  40. package/dist/swaps/escrow/EscrowHandlerSwap.d.ts +35 -35
  41. package/dist/swaps/escrow/EscrowHandlerSwap.js +69 -69
  42. package/dist/swaps/escrow/FromBtcBaseSwap.d.ts +14 -14
  43. package/dist/swaps/escrow/FromBtcBaseSwap.js +32 -32
  44. package/dist/swaps/escrow/FromBtcBaseSwapHandler.d.ts +102 -101
  45. package/dist/swaps/escrow/FromBtcBaseSwapHandler.js +210 -207
  46. package/dist/swaps/escrow/ToBtcBaseSwap.d.ts +36 -36
  47. package/dist/swaps/escrow/ToBtcBaseSwap.js +67 -67
  48. package/dist/swaps/escrow/ToBtcBaseSwapHandler.d.ts +53 -53
  49. package/dist/swaps/escrow/ToBtcBaseSwapHandler.js +81 -81
  50. package/dist/swaps/escrow/frombtc_abstract/FromBtcAbs.d.ts +83 -83
  51. package/dist/swaps/escrow/frombtc_abstract/FromBtcAbs.js +318 -318
  52. package/dist/swaps/escrow/frombtc_abstract/FromBtcSwapAbs.d.ts +21 -21
  53. package/dist/swaps/escrow/frombtc_abstract/FromBtcSwapAbs.js +50 -50
  54. package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnAbs.d.ts +107 -107
  55. package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnAbs.js +675 -648
  56. package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.d.ts +33 -32
  57. package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.js +91 -88
  58. package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAuto.d.ts +111 -0
  59. package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAuto.js +684 -0
  60. package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap.d.ts +55 -0
  61. package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap.js +120 -0
  62. package/dist/swaps/escrow/tobtc_abstract/ToBtcAbs.d.ts +171 -171
  63. package/dist/swaps/escrow/tobtc_abstract/ToBtcAbs.js +729 -706
  64. package/dist/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.d.ts +28 -26
  65. package/dist/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.js +64 -62
  66. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.d.ts +177 -177
  67. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.js +865 -861
  68. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.d.ts +24 -23
  69. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.js +58 -56
  70. package/dist/swaps/spv_vault_swap/SpvVault.d.ts +42 -41
  71. package/dist/swaps/spv_vault_swap/SpvVault.js +111 -111
  72. package/dist/swaps/spv_vault_swap/SpvVaultSwap.d.ts +68 -67
  73. package/dist/swaps/spv_vault_swap/SpvVaultSwap.js +158 -158
  74. package/dist/swaps/spv_vault_swap/SpvVaultSwapHandler.d.ts +68 -68
  75. package/dist/swaps/spv_vault_swap/SpvVaultSwapHandler.js +519 -490
  76. package/dist/swaps/spv_vault_swap/SpvVaults.d.ts +56 -52
  77. package/dist/swaps/spv_vault_swap/SpvVaults.js +397 -364
  78. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrusted.d.ts +51 -51
  79. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrusted.js +650 -650
  80. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.d.ts +52 -52
  81. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.js +118 -118
  82. package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.d.ts +76 -76
  83. package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.js +494 -494
  84. package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.d.ts +34 -34
  85. package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.js +81 -81
  86. package/dist/utils/BitcoinUtils.d.ts +6 -0
  87. package/dist/utils/BitcoinUtils.js +75 -0
  88. package/dist/utils/Utils.d.ts +29 -29
  89. package/dist/utils/Utils.js +89 -89
  90. package/dist/utils/paramcoders/IParamReader.d.ts +5 -5
  91. package/dist/utils/paramcoders/IParamReader.js +2 -2
  92. package/dist/utils/paramcoders/IParamWriter.d.ts +4 -4
  93. package/dist/utils/paramcoders/IParamWriter.js +2 -2
  94. package/dist/utils/paramcoders/LegacyParamEncoder.d.ts +10 -10
  95. package/dist/utils/paramcoders/LegacyParamEncoder.js +22 -22
  96. package/dist/utils/paramcoders/ParamDecoder.d.ts +25 -25
  97. package/dist/utils/paramcoders/ParamDecoder.js +222 -222
  98. package/dist/utils/paramcoders/ParamEncoder.d.ts +9 -9
  99. package/dist/utils/paramcoders/ParamEncoder.js +22 -22
  100. package/dist/utils/paramcoders/SchemaVerifier.d.ts +21 -21
  101. package/dist/utils/paramcoders/SchemaVerifier.js +84 -84
  102. package/dist/utils/paramcoders/server/ServerParamDecoder.d.ts +8 -8
  103. package/dist/utils/paramcoders/server/ServerParamDecoder.js +107 -107
  104. package/dist/utils/paramcoders/server/ServerParamEncoder.d.ts +11 -11
  105. package/dist/utils/paramcoders/server/ServerParamEncoder.js +65 -65
  106. package/dist/wallets/IBitcoinWallet.d.ts +67 -67
  107. package/dist/wallets/IBitcoinWallet.js +2 -2
  108. package/dist/wallets/ILightningWallet.d.ts +117 -117
  109. package/dist/wallets/ILightningWallet.js +37 -37
  110. package/dist/wallets/ISpvVaultSigner.d.ts +7 -7
  111. package/dist/wallets/ISpvVaultSigner.js +2 -2
  112. package/package.json +36 -36
  113. package/src/fees/IBtcFeeEstimator.ts +6 -6
  114. package/src/index.ts +53 -51
  115. package/src/info/InfoHandler.ts +106 -106
  116. package/src/plugins/IPlugin.ts +168 -168
  117. package/src/plugins/PluginManager.ts +336 -336
  118. package/src/prices/BinanceSwapPrice.ts +113 -113
  119. package/src/prices/CoinGeckoSwapPrice.ts +87 -87
  120. package/src/prices/ISwapPrice.ts +88 -88
  121. package/src/prices/OKXSwapPrice.ts +113 -113
  122. package/src/storage/IIntermediaryStorage.ts +19 -19
  123. package/src/storagemanager/IntermediaryStorageManager.ts +118 -112
  124. package/src/storagemanager/StorageManager.ts +78 -72
  125. package/src/swaps/SwapHandler.ts +277 -276
  126. package/src/swaps/SwapHandlerSwap.ts +141 -141
  127. package/src/swaps/assertions/AmountAssertions.ts +76 -76
  128. package/src/swaps/assertions/FromBtcAmountAssertions.ts +246 -238
  129. package/src/swaps/assertions/LightningAssertions.ts +103 -103
  130. package/src/swaps/assertions/ToBtcAmountAssertions.ts +203 -203
  131. package/src/swaps/escrow/EscrowHandler.ts +179 -179
  132. package/src/swaps/escrow/EscrowHandlerSwap.ts +86 -86
  133. package/src/swaps/escrow/FromBtcBaseSwap.ts +38 -38
  134. package/src/swaps/escrow/FromBtcBaseSwapHandler.ts +286 -283
  135. package/src/swaps/escrow/ToBtcBaseSwap.ts +85 -85
  136. package/src/swaps/escrow/ToBtcBaseSwapHandler.ts +129 -129
  137. package/src/swaps/escrow/frombtc_abstract/FromBtcAbs.ts +452 -452
  138. package/src/swaps/escrow/frombtc_abstract/FromBtcSwapAbs.ts +61 -61
  139. package/src/swaps/escrow/frombtcln_abstract/FromBtcLnAbs.ts +856 -828
  140. package/src/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.ts +141 -137
  141. package/src/swaps/escrow/frombtcln_autoinit/FromBtcLnAuto.ts +850 -0
  142. package/src/swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap.ts +196 -0
  143. package/src/swaps/escrow/tobtc_abstract/ToBtcAbs.ts +904 -879
  144. package/src/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.ts +108 -102
  145. package/src/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.ts +1116 -1110
  146. package/src/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.ts +80 -77
  147. package/src/swaps/spv_vault_swap/SpvVault.ts +143 -143
  148. package/src/swaps/spv_vault_swap/SpvVaultSwap.ts +228 -225
  149. package/src/swaps/spv_vault_swap/SpvVaultSwapHandler.ts +656 -626
  150. package/src/swaps/spv_vault_swap/SpvVaults.ts +473 -435
  151. package/src/swaps/trusted/frombtc_trusted/FromBtcTrusted.ts +747 -747
  152. package/src/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.ts +185 -185
  153. package/src/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.ts +590 -590
  154. package/src/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.ts +121 -121
  155. package/src/utils/BitcoinUtils.ts +71 -0
  156. package/src/utils/Utils.ts +104 -104
  157. package/src/utils/paramcoders/IParamReader.ts +7 -7
  158. package/src/utils/paramcoders/IParamWriter.ts +8 -8
  159. package/src/utils/paramcoders/LegacyParamEncoder.ts +27 -27
  160. package/src/utils/paramcoders/ParamDecoder.ts +218 -218
  161. package/src/utils/paramcoders/ParamEncoder.ts +29 -29
  162. package/src/utils/paramcoders/SchemaVerifier.ts +96 -96
  163. package/src/utils/paramcoders/server/ServerParamDecoder.ts +118 -118
  164. package/src/utils/paramcoders/server/ServerParamEncoder.ts +75 -75
  165. package/src/wallets/IBitcoinWallet.ts +68 -68
  166. package/src/wallets/ILightningWallet.ts +178 -178
  167. package/src/wallets/ISpvVaultSigner.ts +10 -10
  168. package/dist/wallets/ISpvVaultWallet.d.ts +0 -42
  169. package/dist/wallets/ISpvVaultWallet.js +0 -2
package/src/index.ts CHANGED
@@ -1,51 +1,53 @@
1
- export * from "./info/InfoHandler";
2
-
3
- export * from "./prices/CoinGeckoSwapPrice";
4
- export * from "./prices/BinanceSwapPrice";
5
- export * from "./prices/OKXSwapPrice";
6
-
7
- export * from "./storage/IIntermediaryStorage";
8
-
9
- export * from "./storagemanager/StorageManager";
10
- export * from "./storagemanager/IntermediaryStorageManager";
11
-
12
- export * from "./swaps/escrow/frombtc_abstract/FromBtcAbs";
13
- export * from "./swaps/escrow/frombtc_abstract/FromBtcSwapAbs";
14
- export * from "./swaps/escrow/frombtcln_abstract/FromBtcLnAbs";
15
- export * from "./swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs";
16
- export * from "./swaps/escrow/tobtc_abstract/ToBtcAbs";
17
- export * from "./swaps/escrow/tobtc_abstract/ToBtcSwapAbs";
18
- export * from "./swaps/escrow/tobtcln_abstract/ToBtcLnAbs";
19
- export * from "./swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs";
20
-
21
- export * from "./swaps/trusted/frombtc_trusted/FromBtcTrusted";
22
- export * from "./swaps/trusted/frombtc_trusted/FromBtcTrustedSwap";
23
- export * from "./swaps/trusted/frombtcln_trusted/FromBtcLnTrusted";
24
- export * from "./swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap";
25
-
26
- export * from "./prices/ISwapPrice";
27
- export * from "./swaps/SwapHandler";
28
- export * from "./swaps/SwapHandlerSwap";
29
-
30
- export * from "./plugins/PluginManager";
31
- export * from "./plugins/IPlugin";
32
-
33
- export * from "./fees/IBtcFeeEstimator";
34
-
35
- export * from "./utils/paramcoders/IParamReader";
36
- export * from "./utils/paramcoders/IParamWriter";
37
- export * from "./utils/paramcoders/LegacyParamEncoder";
38
- export * from "./utils/paramcoders/ParamDecoder";
39
- export * from "./utils/paramcoders/ParamEncoder";
40
- export * from "./utils/paramcoders/SchemaVerifier";
41
- export * from "./utils/paramcoders/server/ServerParamDecoder";
42
- export * from "./utils/paramcoders/server/ServerParamEncoder";
43
-
44
- export * from "./wallets/IBitcoinWallet";
45
- export * from "./wallets/ILightningWallet";
46
- export * from "./wallets/ISpvVaultSigner";
47
-
48
- export * from "./swaps/spv_vault_swap/SpvVaults";
49
- export * from "./swaps/spv_vault_swap/SpvVault";
50
- export * from "./swaps/spv_vault_swap/SpvVaultSwap";
51
- export * from "./swaps/spv_vault_swap/SpvVaultSwapHandler";
1
+ export * from "./info/InfoHandler";
2
+
3
+ export * from "./prices/CoinGeckoSwapPrice";
4
+ export * from "./prices/BinanceSwapPrice";
5
+ export * from "./prices/OKXSwapPrice";
6
+
7
+ export * from "./storage/IIntermediaryStorage";
8
+
9
+ export * from "./storagemanager/StorageManager";
10
+ export * from "./storagemanager/IntermediaryStorageManager";
11
+
12
+ export * from "./swaps/escrow/frombtc_abstract/FromBtcAbs";
13
+ export * from "./swaps/escrow/frombtc_abstract/FromBtcSwapAbs";
14
+ export * from "./swaps/escrow/frombtcln_abstract/FromBtcLnAbs";
15
+ export * from "./swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs";
16
+ export * from "./swaps/escrow/frombtcln_autoinit/FromBtcLnAuto";
17
+ export * from "./swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap";
18
+ export * from "./swaps/escrow/tobtc_abstract/ToBtcAbs";
19
+ export * from "./swaps/escrow/tobtc_abstract/ToBtcSwapAbs";
20
+ export * from "./swaps/escrow/tobtcln_abstract/ToBtcLnAbs";
21
+ export * from "./swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs";
22
+
23
+ export * from "./swaps/trusted/frombtc_trusted/FromBtcTrusted";
24
+ export * from "./swaps/trusted/frombtc_trusted/FromBtcTrustedSwap";
25
+ export * from "./swaps/trusted/frombtcln_trusted/FromBtcLnTrusted";
26
+ export * from "./swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap";
27
+
28
+ export * from "./prices/ISwapPrice";
29
+ export * from "./swaps/SwapHandler";
30
+ export * from "./swaps/SwapHandlerSwap";
31
+
32
+ export * from "./plugins/PluginManager";
33
+ export * from "./plugins/IPlugin";
34
+
35
+ export * from "./fees/IBtcFeeEstimator";
36
+
37
+ export * from "./utils/paramcoders/IParamReader";
38
+ export * from "./utils/paramcoders/IParamWriter";
39
+ export * from "./utils/paramcoders/LegacyParamEncoder";
40
+ export * from "./utils/paramcoders/ParamDecoder";
41
+ export * from "./utils/paramcoders/ParamEncoder";
42
+ export * from "./utils/paramcoders/SchemaVerifier";
43
+ export * from "./utils/paramcoders/server/ServerParamDecoder";
44
+ export * from "./utils/paramcoders/server/ServerParamEncoder";
45
+
46
+ export * from "./wallets/IBitcoinWallet";
47
+ export * from "./wallets/ILightningWallet";
48
+ export * from "./wallets/ISpvVaultSigner";
49
+
50
+ export * from "./swaps/spv_vault_swap/SpvVaults";
51
+ export * from "./swaps/spv_vault_swap/SpvVault";
52
+ export * from "./swaps/spv_vault_swap/SpvVaultSwap";
53
+ export * from "./swaps/spv_vault_swap/SpvVaultSwapHandler";
@@ -1,106 +1,106 @@
1
- import {Express} from "express";
2
- import {MultichainData, SwapHandler, SwapHandlerInfoType, SwapHandlerType} from "../swaps/SwapHandler";
3
- import * as express from "express";
4
-
5
- const HEX_REGEX = /[0-9a-f]+/i;
6
-
7
- type InfoHandlerResponseEnvelope = {
8
- nonce: string,
9
- services: {
10
- [key in SwapHandlerType]?: SwapHandlerInfoType
11
- }
12
- };
13
-
14
- type InfoHandlerResponse = {
15
- envelope: string,
16
- address: string,
17
- signature: string,
18
- chains: {
19
- [chainIdentifier: string]: {
20
- address: string,
21
- signature: string
22
- }
23
- }
24
- }
25
-
26
- /**
27
- * Handles info requests to POST /info returning information about fees, swap params, etc.
28
- */
29
- export class InfoHandler {
30
-
31
- readonly chainData: MultichainData;
32
- readonly path: string;
33
-
34
- readonly swapHandlers: SwapHandler[];
35
-
36
- constructor(chainData: MultichainData, path: string, swapHandlers: SwapHandler[]) {
37
- this.chainData = chainData;
38
- this.path = path;
39
- this.swapHandlers = swapHandlers;
40
- }
41
-
42
- /**
43
- * Adds a listener to POST /info
44
- *
45
- * @param restServer
46
- */
47
- startRestServer(restServer: Express) {
48
-
49
- restServer.use(this.path+"/info", express.json());
50
- restServer.post(this.path+"/info", async (req, res) => {
51
- if (
52
- req.body == null ||
53
-
54
- req.body.nonce == null ||
55
- typeof(req.body.nonce) !== "string" ||
56
- req.body.nonce.length>64 ||
57
- !HEX_REGEX.test(req.body.nonce)
58
- ) {
59
- res.status(400).json({
60
- msg: "Invalid request body (nonce)"
61
- });
62
- return;
63
- }
64
-
65
- const env: InfoHandlerResponseEnvelope = {
66
- nonce: req.body.nonce,
67
- services: {}
68
- };
69
-
70
- for(let swapHandler of this.swapHandlers) {
71
- env.services[swapHandler.type] = swapHandler.getInfo();
72
- }
73
-
74
- const envelope = JSON.stringify(env);
75
- const envelopeBuffer = Buffer.from(envelope);
76
-
77
- const chains: {
78
- [chainIdentifier: string]: {
79
- address: string,
80
- signature: string
81
- }
82
- } = {};
83
- for(let chainIdentifier in this.chainData.chains) {
84
- const singleChain = this.chainData.chains[chainIdentifier];
85
- chains[chainIdentifier] = {
86
- address: singleChain.signer.getAddress(),
87
- signature: await singleChain.swapContract.getDataSignature(singleChain.signer, envelopeBuffer)
88
- };
89
- }
90
-
91
- const defaults = chains[this.chainData.default];
92
-
93
- const response: InfoHandlerResponse = {
94
- envelope,
95
- address: defaults.address,
96
- signature: defaults.signature,
97
- chains
98
- };
99
-
100
- res.status(200).json(response);
101
- });
102
-
103
- }
104
-
105
-
106
- }
1
+ import {Express} from "express";
2
+ import {MultichainData, SwapHandler, SwapHandlerInfoType, SwapHandlerType} from "../swaps/SwapHandler";
3
+ import * as express from "express";
4
+
5
+ const HEX_REGEX = /[0-9a-f]+/i;
6
+
7
+ type InfoHandlerResponseEnvelope = {
8
+ nonce: string,
9
+ services: {
10
+ [key in SwapHandlerType]?: SwapHandlerInfoType
11
+ }
12
+ };
13
+
14
+ type InfoHandlerResponse = {
15
+ envelope: string,
16
+ address: string,
17
+ signature: string,
18
+ chains: {
19
+ [chainIdentifier: string]: {
20
+ address: string,
21
+ signature: string
22
+ }
23
+ }
24
+ }
25
+
26
+ /**
27
+ * Handles info requests to POST /info returning information about fees, swap params, etc.
28
+ */
29
+ export class InfoHandler {
30
+
31
+ readonly chainData: MultichainData;
32
+ readonly path: string;
33
+
34
+ readonly swapHandlers: SwapHandler[];
35
+
36
+ constructor(chainData: MultichainData, path: string, swapHandlers: SwapHandler[]) {
37
+ this.chainData = chainData;
38
+ this.path = path;
39
+ this.swapHandlers = swapHandlers;
40
+ }
41
+
42
+ /**
43
+ * Adds a listener to POST /info
44
+ *
45
+ * @param restServer
46
+ */
47
+ startRestServer(restServer: Express) {
48
+
49
+ restServer.use(this.path+"/info", express.json());
50
+ restServer.post(this.path+"/info", async (req, res) => {
51
+ if (
52
+ req.body == null ||
53
+
54
+ req.body.nonce == null ||
55
+ typeof(req.body.nonce) !== "string" ||
56
+ req.body.nonce.length>64 ||
57
+ !HEX_REGEX.test(req.body.nonce)
58
+ ) {
59
+ res.status(400).json({
60
+ msg: "Invalid request body (nonce)"
61
+ });
62
+ return;
63
+ }
64
+
65
+ const env: InfoHandlerResponseEnvelope = {
66
+ nonce: req.body.nonce,
67
+ services: {}
68
+ };
69
+
70
+ for(let swapHandler of this.swapHandlers) {
71
+ env.services[swapHandler.type] = swapHandler.getInfo();
72
+ }
73
+
74
+ const envelope = JSON.stringify(env);
75
+ const envelopeBuffer = Buffer.from(envelope);
76
+
77
+ const chains: {
78
+ [chainIdentifier: string]: {
79
+ address: string,
80
+ signature: string
81
+ }
82
+ } = {};
83
+ for(let chainIdentifier in this.chainData.chains) {
84
+ const singleChain = this.chainData.chains[chainIdentifier];
85
+ chains[chainIdentifier] = {
86
+ address: singleChain.signer.getAddress(),
87
+ signature: await singleChain.swapContract.getDataSignature(singleChain.signer, envelopeBuffer)
88
+ };
89
+ }
90
+
91
+ const defaults = chains[this.chainData.default];
92
+
93
+ const response: InfoHandlerResponse = {
94
+ envelope,
95
+ address: defaults.address,
96
+ signature: defaults.signature,
97
+ chains
98
+ };
99
+
100
+ res.status(200).json(response);
101
+ });
102
+
103
+ }
104
+
105
+
106
+ }
@@ -1,168 +1,168 @@
1
- import {BitcoinRpc, SpvWithdrawalTransactionData, SwapData} from "@atomiqlabs/base";
2
- import {
3
- FromBtcLnRequestType,
4
- FromBtcRequestType, FromBtcTrustedRequestType,
5
- ISwapPrice, MultichainData, RequestData, SpvVaultSwapRequestType,
6
- SwapHandler, SwapHandlerType,
7
- ToBtcLnRequestType,
8
- ToBtcRequestType
9
- } from "..";
10
- import {SwapHandlerSwap} from "../swaps/SwapHandlerSwap";
11
- import {Command} from "@atomiqlabs/server-base";
12
- import {FromBtcLnTrustedRequestType} from "../swaps/trusted/frombtcln_trusted/FromBtcLnTrusted";
13
- import {IBitcoinWallet} from "../wallets/IBitcoinWallet";
14
- import {ILightningWallet} from "../wallets/ILightningWallet";
15
- import {SpvVault} from "../swaps/spv_vault_swap/SpvVault";
16
-
17
- export type QuoteThrow = {
18
- type: "throw",
19
- message: string
20
- }
21
-
22
- export function isQuoteThrow(obj: any): obj is QuoteThrow {
23
- return obj.type==="throw" && typeof(obj.message)==="string";
24
- }
25
-
26
- export type QuoteSetFees = {
27
- type: "fees"
28
- baseFee?: bigint,
29
- feePPM?: bigint,
30
- securityDepositApyPPM?: bigint,
31
- securityDepositBaseMultiplierPPM?: bigint
32
- };
33
-
34
- export function isQuoteSetFees(obj: any): obj is QuoteSetFees {
35
- return obj.type==="fees" &&
36
- (obj.baseFee==null || typeof(obj.baseFee) === "bigint") &&
37
- (obj.feePPM==null || typeof(obj.feePPM) === "bigint") &&
38
- (obj.securityDepositApyPPM==null || typeof(obj.securityDepositApyPPM) === "bigint") &&
39
- (obj.securityDepositBaseMultiplierPPM==null || typeof(obj.securityDepositBaseMultiplierPPM) === "bigint");
40
- }
41
-
42
- export type QuoteAmountTooLow = {
43
- type: "low",
44
- data: { min: bigint, max: bigint }
45
- }
46
-
47
- export function isQuoteAmountTooLow(obj: any): obj is QuoteAmountTooLow {
48
- return obj.type==="low" && typeof(obj.data)==="object" && typeof(obj.data.min)==="bigint" && typeof(obj.data.max)==="bigint";
49
- }
50
-
51
- export type QuoteAmountTooHigh = {
52
- type: "high",
53
- data: { min: bigint, max: bigint }
54
- }
55
-
56
- export function isQuoteAmountTooHigh(obj: any): obj is QuoteAmountTooHigh {
57
- return obj.type==="high" && typeof(obj.data)==="object" && typeof(obj.data.min)==="bigint" && typeof(obj.data.max)==="bigint";
58
- }
59
-
60
- export type PluginQuote = {
61
- type: "success",
62
- amount: {input: boolean, amount: bigint},
63
- swapFee: { inInputTokens: bigint, inOutputTokens: bigint }
64
- };
65
-
66
- export function isPluginQuote(obj: any): obj is PluginQuote {
67
- return obj.type==="success" &&
68
- typeof(obj.amount)==="object" && typeof(obj.amount.input)==="boolean" && typeof(obj.amount.amount)==="bigint" &&
69
- typeof(obj.swapFee)==="object" && typeof(obj.swapFee.inInputTokens)==="bigint" && typeof(obj.swapFee.inOutputTokens)==="bigint";
70
- }
71
-
72
- export type ToBtcPluginQuote = PluginQuote & {
73
- networkFee: { inInputTokens: bigint, inOutputTokens: bigint }
74
- }
75
-
76
- export function isToBtcPluginQuote(obj: any): obj is ToBtcPluginQuote {
77
- return typeof(obj.networkFee)==="object" && typeof(obj.networkFee.inInputTokens)==="bigint" && typeof(obj.networkFee.inOutputTokens)==="bigint" &&
78
- isPluginQuote(obj);
79
- }
80
-
81
- export interface IPlugin {
82
-
83
- name: string;
84
- author: string;
85
- description: string;
86
-
87
- //Needs to be called by implementation
88
- onEnable(
89
- chainsData: MultichainData,
90
-
91
- bitcoinRpc: BitcoinRpc<any>,
92
- bitcoinWallet: IBitcoinWallet,
93
- lightningWallet: ILightningWallet,
94
-
95
- swapPricing: ISwapPrice,
96
- tokens: {
97
- [ticker: string]: {
98
- [chainId: string]: {
99
- address: string,
100
- decimals: number
101
- }
102
- }
103
- },
104
-
105
- directory: string
106
- ): Promise<void>;
107
- onDisable(): Promise<void>;
108
-
109
- //Called in the library
110
- onServiceInitialize(service: SwapHandler<any>): Promise<void>;
111
-
112
- onHttpServerStarted?(expressServer: any): Promise<void>;
113
-
114
- onSwapStateChange?(swap: SwapHandlerSwap): Promise<void>;
115
- onSwapCreate?(swap: SwapHandlerSwap): Promise<void>;
116
- onSwapRemove?(swap: SwapHandlerSwap): Promise<void>;
117
-
118
- onHandlePreFromBtcQuote?(
119
- swapType: SwapHandlerType.FROM_BTCLN | SwapHandlerType.FROM_BTC | SwapHandlerType.FROM_BTCLN_TRUSTED | SwapHandlerType.FROM_BTC_TRUSTED | SwapHandlerType.FROM_BTC_SPV,
120
- request: RequestData<FromBtcLnRequestType | FromBtcRequestType | FromBtcLnTrustedRequestType | FromBtcTrustedRequestType | SpvVaultSwapRequestType>,
121
- requestedAmount: {input: boolean, amount: bigint, token: string},
122
- chainIdentifier: string,
123
- constraints: {minInBtc: bigint, maxInBtc: bigint},
124
- fees: {baseFeeInBtc: bigint, feePPM: bigint},
125
- gasTokenAmount?: {input: false, amount: bigint, token: string}
126
- ): Promise<QuoteThrow | QuoteSetFees | QuoteAmountTooLow | QuoteAmountTooHigh>;
127
- onHandlePostFromBtcQuote?(
128
- swapType: SwapHandlerType.FROM_BTCLN | SwapHandlerType.FROM_BTC | SwapHandlerType.FROM_BTCLN_TRUSTED | SwapHandlerType.FROM_BTC_TRUSTED | SwapHandlerType.FROM_BTC_SPV,
129
- request: RequestData<FromBtcLnRequestType | FromBtcRequestType | FromBtcLnTrustedRequestType | FromBtcTrustedRequestType | SpvVaultSwapRequestType>,
130
- requestedAmount: {input: boolean, amount: bigint, token: string, pricePrefetch?: Promise<bigint>},
131
- chainIdentifier: string,
132
- constraints: {minInBtc: bigint, maxInBtc: bigint},
133
- fees: {baseFeeInBtc: bigint, feePPM: bigint},
134
- gasTokenAmount?: {input: false, amount: bigint, token: string, pricePrefetch?: Promise<bigint>}
135
- ): Promise<QuoteThrow | QuoteSetFees | QuoteAmountTooLow | QuoteAmountTooHigh | PluginQuote>;
136
-
137
- onHandlePreToBtcQuote?(
138
- swapType: SwapHandlerType.TO_BTCLN | SwapHandlerType.TO_BTC,
139
- request: RequestData<ToBtcLnRequestType | ToBtcRequestType>,
140
- requestedAmount: {input: boolean, amount: bigint, token: string},
141
- chainIdentifier: string,
142
- constraints: {minInBtc: bigint, maxInBtc: bigint},
143
- fees: {baseFeeInBtc: bigint, feePPM: bigint}
144
- ): Promise<QuoteThrow | QuoteSetFees | QuoteAmountTooLow | QuoteAmountTooHigh>;
145
- onHandlePostToBtcQuote?(
146
- swapType: SwapHandlerType.TO_BTCLN | SwapHandlerType.TO_BTC,
147
- request: RequestData<ToBtcLnRequestType | ToBtcRequestType>,
148
- requestedAmount: {input: boolean, amount: bigint, token: string, pricePrefetch?: Promise<bigint>},
149
- chainIdentifier: string,
150
- constraints: {minInBtc: bigint, maxInBtc: bigint},
151
- fees: {baseFeeInBtc: bigint, feePPM: bigint, networkFeeGetter: (amount: bigint) => Promise<bigint>}
152
- ): Promise<QuoteThrow | QuoteSetFees | QuoteAmountTooLow | QuoteAmountTooHigh | ToBtcPluginQuote>;
153
-
154
- onVaultSelection?(
155
- chainIdentifier: string,
156
- totalSats: bigint,
157
- requestedAmount: {amount: bigint, token: string},
158
- gasAmount: {amount: bigint, token: string}
159
- ): Promise<SpvVault | QuoteThrow | QuoteAmountTooHigh | QuoteAmountTooLow | null>;
160
-
161
- /**
162
- * Returns whitelisted bitcoin txIds that are OK to spend even with 0-confs
163
- */
164
- getWhitelistedTxIds?(): string[];
165
-
166
- getCommands?(): Command<any>[];
167
-
168
- }
1
+ import {BitcoinRpc, SpvWithdrawalTransactionData, SwapData} from "@atomiqlabs/base";
2
+ import {
3
+ FromBtcLnRequestType,
4
+ FromBtcRequestType, FromBtcTrustedRequestType,
5
+ ISwapPrice, MultichainData, RequestData, SpvVaultSwapRequestType,
6
+ SwapHandler, SwapHandlerType,
7
+ ToBtcLnRequestType,
8
+ ToBtcRequestType
9
+ } from "..";
10
+ import {SwapHandlerSwap} from "../swaps/SwapHandlerSwap";
11
+ import {Command} from "@atomiqlabs/server-base";
12
+ import {FromBtcLnTrustedRequestType} from "../swaps/trusted/frombtcln_trusted/FromBtcLnTrusted";
13
+ import {IBitcoinWallet} from "../wallets/IBitcoinWallet";
14
+ import {ILightningWallet} from "../wallets/ILightningWallet";
15
+ import {SpvVault} from "../swaps/spv_vault_swap/SpvVault";
16
+
17
+ export type QuoteThrow = {
18
+ type: "throw",
19
+ message: string
20
+ }
21
+
22
+ export function isQuoteThrow(obj: any): obj is QuoteThrow {
23
+ return obj.type==="throw" && typeof(obj.message)==="string";
24
+ }
25
+
26
+ export type QuoteSetFees = {
27
+ type: "fees"
28
+ baseFee?: bigint,
29
+ feePPM?: bigint,
30
+ securityDepositApyPPM?: bigint,
31
+ securityDepositBaseMultiplierPPM?: bigint
32
+ };
33
+
34
+ export function isQuoteSetFees(obj: any): obj is QuoteSetFees {
35
+ return obj.type==="fees" &&
36
+ (obj.baseFee==null || typeof(obj.baseFee) === "bigint") &&
37
+ (obj.feePPM==null || typeof(obj.feePPM) === "bigint") &&
38
+ (obj.securityDepositApyPPM==null || typeof(obj.securityDepositApyPPM) === "bigint") &&
39
+ (obj.securityDepositBaseMultiplierPPM==null || typeof(obj.securityDepositBaseMultiplierPPM) === "bigint");
40
+ }
41
+
42
+ export type QuoteAmountTooLow = {
43
+ type: "low",
44
+ data: { min: bigint, max: bigint }
45
+ }
46
+
47
+ export function isQuoteAmountTooLow(obj: any): obj is QuoteAmountTooLow {
48
+ return obj.type==="low" && typeof(obj.data)==="object" && typeof(obj.data.min)==="bigint" && typeof(obj.data.max)==="bigint";
49
+ }
50
+
51
+ export type QuoteAmountTooHigh = {
52
+ type: "high",
53
+ data: { min: bigint, max: bigint }
54
+ }
55
+
56
+ export function isQuoteAmountTooHigh(obj: any): obj is QuoteAmountTooHigh {
57
+ return obj.type==="high" && typeof(obj.data)==="object" && typeof(obj.data.min)==="bigint" && typeof(obj.data.max)==="bigint";
58
+ }
59
+
60
+ export type PluginQuote = {
61
+ type: "success",
62
+ amount: {input: boolean, amount: bigint},
63
+ swapFee: { inInputTokens: bigint, inOutputTokens: bigint }
64
+ };
65
+
66
+ export function isPluginQuote(obj: any): obj is PluginQuote {
67
+ return obj.type==="success" &&
68
+ typeof(obj.amount)==="object" && typeof(obj.amount.input)==="boolean" && typeof(obj.amount.amount)==="bigint" &&
69
+ typeof(obj.swapFee)==="object" && typeof(obj.swapFee.inInputTokens)==="bigint" && typeof(obj.swapFee.inOutputTokens)==="bigint";
70
+ }
71
+
72
+ export type ToBtcPluginQuote = PluginQuote & {
73
+ networkFee: { inInputTokens: bigint, inOutputTokens: bigint }
74
+ }
75
+
76
+ export function isToBtcPluginQuote(obj: any): obj is ToBtcPluginQuote {
77
+ return typeof(obj.networkFee)==="object" && typeof(obj.networkFee.inInputTokens)==="bigint" && typeof(obj.networkFee.inOutputTokens)==="bigint" &&
78
+ isPluginQuote(obj);
79
+ }
80
+
81
+ export interface IPlugin {
82
+
83
+ name: string;
84
+ author: string;
85
+ description: string;
86
+
87
+ //Needs to be called by implementation
88
+ onEnable(
89
+ chainsData: MultichainData,
90
+
91
+ bitcoinRpc: BitcoinRpc<any>,
92
+ bitcoinWallet: IBitcoinWallet,
93
+ lightningWallet: ILightningWallet,
94
+
95
+ swapPricing: ISwapPrice,
96
+ tokens: {
97
+ [ticker: string]: {
98
+ [chainId: string]: {
99
+ address: string,
100
+ decimals: number
101
+ }
102
+ }
103
+ },
104
+
105
+ directory: string
106
+ ): Promise<void>;
107
+ onDisable(): Promise<void>;
108
+
109
+ //Called in the library
110
+ onServiceInitialize(service: SwapHandler<any>): Promise<void>;
111
+
112
+ onHttpServerStarted?(expressServer: any): Promise<void>;
113
+
114
+ onSwapStateChange?(swap: SwapHandlerSwap): Promise<void>;
115
+ onSwapCreate?(swap: SwapHandlerSwap): Promise<void>;
116
+ onSwapRemove?(swap: SwapHandlerSwap): Promise<void>;
117
+
118
+ onHandlePreFromBtcQuote?(
119
+ swapType: SwapHandlerType.FROM_BTCLN | SwapHandlerType.FROM_BTC | SwapHandlerType.FROM_BTCLN_TRUSTED | SwapHandlerType.FROM_BTC_TRUSTED | SwapHandlerType.FROM_BTC_SPV | SwapHandlerType.FROM_BTCLN_AUTO,
120
+ request: RequestData<FromBtcLnRequestType | FromBtcRequestType | FromBtcLnTrustedRequestType | FromBtcTrustedRequestType | SpvVaultSwapRequestType>,
121
+ requestedAmount: {input: boolean, amount: bigint, token: string},
122
+ chainIdentifier: string,
123
+ constraints: {minInBtc: bigint, maxInBtc: bigint},
124
+ fees: {baseFeeInBtc: bigint, feePPM: bigint},
125
+ gasTokenAmount?: {input: false, amount: bigint, token: string}
126
+ ): Promise<QuoteThrow | QuoteSetFees | QuoteAmountTooLow | QuoteAmountTooHigh>;
127
+ onHandlePostFromBtcQuote?(
128
+ swapType: SwapHandlerType.FROM_BTCLN | SwapHandlerType.FROM_BTC | SwapHandlerType.FROM_BTCLN_TRUSTED | SwapHandlerType.FROM_BTC_TRUSTED | SwapHandlerType.FROM_BTC_SPV | SwapHandlerType.FROM_BTCLN_AUTO,
129
+ request: RequestData<FromBtcLnRequestType | FromBtcRequestType | FromBtcLnTrustedRequestType | FromBtcTrustedRequestType | SpvVaultSwapRequestType>,
130
+ requestedAmount: {input: boolean, amount: bigint, token: string, pricePrefetch?: Promise<bigint>},
131
+ chainIdentifier: string,
132
+ constraints: {minInBtc: bigint, maxInBtc: bigint},
133
+ fees: {baseFeeInBtc: bigint, feePPM: bigint},
134
+ gasTokenAmount?: {input: false, amount: bigint, token: string, pricePrefetch?: Promise<bigint>}
135
+ ): Promise<QuoteThrow | QuoteSetFees | QuoteAmountTooLow | QuoteAmountTooHigh | PluginQuote>;
136
+
137
+ onHandlePreToBtcQuote?(
138
+ swapType: SwapHandlerType.TO_BTCLN | SwapHandlerType.TO_BTC,
139
+ request: RequestData<ToBtcLnRequestType | ToBtcRequestType>,
140
+ requestedAmount: {input: boolean, amount: bigint, token: string},
141
+ chainIdentifier: string,
142
+ constraints: {minInBtc: bigint, maxInBtc: bigint},
143
+ fees: {baseFeeInBtc: bigint, feePPM: bigint}
144
+ ): Promise<QuoteThrow | QuoteSetFees | QuoteAmountTooLow | QuoteAmountTooHigh>;
145
+ onHandlePostToBtcQuote?(
146
+ swapType: SwapHandlerType.TO_BTCLN | SwapHandlerType.TO_BTC,
147
+ request: RequestData<ToBtcLnRequestType | ToBtcRequestType>,
148
+ requestedAmount: {input: boolean, amount: bigint, token: string, pricePrefetch?: Promise<bigint>},
149
+ chainIdentifier: string,
150
+ constraints: {minInBtc: bigint, maxInBtc: bigint},
151
+ fees: {baseFeeInBtc: bigint, feePPM: bigint, networkFeeGetter: (amount: bigint) => Promise<bigint>}
152
+ ): Promise<QuoteThrow | QuoteSetFees | QuoteAmountTooLow | QuoteAmountTooHigh | ToBtcPluginQuote>;
153
+
154
+ onVaultSelection?(
155
+ chainIdentifier: string,
156
+ totalSats: bigint,
157
+ requestedAmount: {amount: bigint, token: string},
158
+ gasAmount: {amount: bigint, token: string}
159
+ ): Promise<SpvVault | QuoteThrow | QuoteAmountTooHigh | QuoteAmountTooLow | null>;
160
+
161
+ /**
162
+ * Returns whitelisted bitcoin txIds that are OK to spend even with 0-confs
163
+ */
164
+ getWhitelistedTxIds?(): string[];
165
+
166
+ getCommands?(): Command<any>[];
167
+
168
+ }