@atomiqlabs/lp-lib 16.0.11 → 16.1.1

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 (167) 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 -42
  5. package/dist/index.js +58 -58
  6. package/dist/info/InfoHandler.d.ts +17 -17
  7. package/dist/info/InfoHandler.js +60 -60
  8. package/dist/plugins/IPlugin.d.ts +144 -144
  9. package/dist/plugins/IPlugin.js +34 -34
  10. package/dist/plugins/PluginManager.d.ts +113 -113
  11. package/dist/plugins/PluginManager.js +274 -274
  12. package/dist/prices/BinanceSwapPrice.d.ts +29 -26
  13. package/dist/prices/BinanceSwapPrice.js +79 -92
  14. package/dist/prices/CoinGeckoSwapPrice.d.ts +33 -30
  15. package/dist/prices/CoinGeckoSwapPrice.js +51 -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 +29 -26
  19. package/dist/prices/OKXSwapPrice.js +79 -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 -111
  24. package/dist/storagemanager/StorageManager.d.ts +13 -13
  25. package/dist/storagemanager/StorageManager.js +64 -64
  26. package/dist/swaps/SwapHandler.d.ts +171 -171
  27. package/dist/swaps/SwapHandler.js +217 -217
  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 +74 -74
  32. package/dist/swaps/assertions/FromBtcAmountAssertions.d.ts +76 -76
  33. package/dist/swaps/assertions/FromBtcAmountAssertions.js +185 -185
  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 +50 -50
  39. package/dist/swaps/escrow/EscrowHandler.js +151 -151
  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 -102
  45. package/dist/swaps/escrow/FromBtcBaseSwapHandler.js +210 -210
  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 +84 -84
  51. package/dist/swaps/escrow/frombtc_abstract/FromBtcAbs.js +322 -322
  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 +108 -108
  55. package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnAbs.js +695 -695
  56. package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.d.ts +33 -33
  57. package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.js +91 -91
  58. package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAuto.d.ts +112 -112
  59. package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAuto.js +708 -708
  60. package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap.d.ts +55 -55
  61. package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap.js +120 -120
  62. package/dist/swaps/escrow/tobtc_abstract/ToBtcAbs.d.ts +170 -170
  63. package/dist/swaps/escrow/tobtc_abstract/ToBtcAbs.js +745 -745
  64. package/dist/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.d.ts +28 -28
  65. package/dist/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.js +64 -64
  66. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.d.ts +178 -178
  67. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.js +899 -899
  68. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.d.ts +24 -24
  69. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.js +58 -58
  70. package/dist/swaps/spv_vault_swap/SpvVault.d.ts +44 -44
  71. package/dist/swaps/spv_vault_swap/SpvVault.js +145 -145
  72. package/dist/swaps/spv_vault_swap/SpvVaultSwap.d.ts +68 -68
  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 +561 -561
  76. package/dist/swaps/spv_vault_swap/SpvVaults.d.ts +63 -63
  77. package/dist/swaps/spv_vault_swap/SpvVaults.js +491 -491
  78. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrusted.d.ts +52 -52
  79. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrusted.js +662 -662
  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 +77 -77
  83. package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.js +504 -504
  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 +4 -4
  87. package/dist/utils/BitcoinUtils.js +61 -61
  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 +74 -74
  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 -53
  115. package/src/info/InfoHandler.ts +103 -103
  116. package/src/plugins/IPlugin.ts +174 -174
  117. package/src/plugins/PluginManager.ts +354 -354
  118. package/src/prices/BinanceSwapPrice.ts +101 -113
  119. package/src/prices/CoinGeckoSwapPrice.ts +75 -87
  120. package/src/prices/ISwapPrice.ts +88 -88
  121. package/src/prices/OKXSwapPrice.ts +101 -113
  122. package/src/storage/IIntermediaryStorage.ts +19 -19
  123. package/src/storagemanager/IntermediaryStorageManager.ts +118 -118
  124. package/src/storagemanager/StorageManager.ts +78 -78
  125. package/src/swaps/SwapHandler.ts +323 -323
  126. package/src/swaps/SwapHandlerSwap.ts +141 -141
  127. package/src/swaps/assertions/AmountAssertions.ts +77 -77
  128. package/src/swaps/assertions/FromBtcAmountAssertions.ts +251 -251
  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 +172 -172
  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 -286
  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 +457 -457
  138. package/src/swaps/escrow/frombtc_abstract/FromBtcSwapAbs.ts +61 -61
  139. package/src/swaps/escrow/frombtcln_abstract/FromBtcLnAbs.ts +873 -873
  140. package/src/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.ts +141 -141
  141. package/src/swaps/escrow/frombtcln_autoinit/FromBtcLnAuto.ts +866 -866
  142. package/src/swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap.ts +196 -196
  143. package/src/swaps/escrow/tobtc_abstract/ToBtcAbs.ts +920 -920
  144. package/src/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.ts +108 -108
  145. package/src/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.ts +1149 -1149
  146. package/src/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.ts +80 -80
  147. package/src/swaps/spv_vault_swap/SpvVault.ts +178 -178
  148. package/src/swaps/spv_vault_swap/SpvVaultSwap.ts +228 -228
  149. package/src/swaps/spv_vault_swap/SpvVaultSwapHandler.ts +712 -712
  150. package/src/swaps/spv_vault_swap/SpvVaults.ts +567 -567
  151. package/src/swaps/trusted/frombtc_trusted/FromBtcTrusted.ts +762 -762
  152. package/src/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.ts +185 -185
  153. package/src/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.ts +603 -603
  154. package/src/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.ts +121 -121
  155. package/src/utils/BitcoinUtils.ts +59 -59
  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 +76 -76
  166. package/src/wallets/ILightningWallet.ts +200 -178
  167. package/src/wallets/ISpvVaultSigner.ts +10 -10
@@ -1,52 +1,52 @@
1
- import { BtcTx } from "@atomiqlabs/base";
2
- import { SwapHandlerSwap } from "../../SwapHandlerSwap";
3
- export declare enum FromBtcTrustedSwapState {
4
- DOUBLE_SPENT = -4,
5
- REFUNDED = -3,
6
- REFUNDABLE = -2,
7
- EXPIRED = -1,
8
- CREATED = 0,
9
- RECEIVED = 1,
10
- BTC_CONFIRMED = 2,
11
- SENT = 3,
12
- CONFIRMED = 4,
13
- FINISHED = 5
14
- }
15
- export declare class FromBtcTrustedSwap extends SwapHandlerSwap<FromBtcTrustedSwapState> {
16
- readonly amount: bigint;
17
- readonly sequence: bigint;
18
- readonly btcAddress: string;
19
- readonly dstAddress: string;
20
- readonly outputTokens: bigint;
21
- readonly createdHeight: number;
22
- readonly expiresAt: number;
23
- readonly recommendedFee: number;
24
- readonly token: string;
25
- refundAddress: string;
26
- adjustedInput: bigint;
27
- adjustedOutput: bigint;
28
- doubleSpent: boolean;
29
- scRawTx: string;
30
- btcTx: BtcTx;
31
- txFee: number;
32
- txSize: number;
33
- txId: string;
34
- vout: number;
35
- burnTxId: string;
36
- refundTxId: string;
37
- constructor(chainIdentifier: string, swapFee: bigint, swapFeeInToken: bigint, btcAddress: string, inputSats: bigint, dstAddress: string, outputTokens: bigint, createdHeight: number, expiresAt: number, recommendedFee: number, refundAddress: string, token: string);
38
- constructor(obj: any);
39
- serialize(): any;
40
- getSequence(): bigint;
41
- getToken(): string;
42
- getOutputAmount(): bigint;
43
- getTotalInputAmount(): bigint;
44
- getSwapFee(): {
45
- inInputToken: bigint;
46
- inOutputToken: bigint;
47
- };
48
- isFailed(): boolean;
49
- isInitiated(): boolean;
50
- isSuccess(): boolean;
51
- getIdentifierHash(): string;
52
- }
1
+ import { BtcTx } from "@atomiqlabs/base";
2
+ import { SwapHandlerSwap } from "../../SwapHandlerSwap";
3
+ export declare enum FromBtcTrustedSwapState {
4
+ DOUBLE_SPENT = -4,
5
+ REFUNDED = -3,
6
+ REFUNDABLE = -2,
7
+ EXPIRED = -1,
8
+ CREATED = 0,
9
+ RECEIVED = 1,
10
+ BTC_CONFIRMED = 2,
11
+ SENT = 3,
12
+ CONFIRMED = 4,
13
+ FINISHED = 5
14
+ }
15
+ export declare class FromBtcTrustedSwap extends SwapHandlerSwap<FromBtcTrustedSwapState> {
16
+ readonly amount: bigint;
17
+ readonly sequence: bigint;
18
+ readonly btcAddress: string;
19
+ readonly dstAddress: string;
20
+ readonly outputTokens: bigint;
21
+ readonly createdHeight: number;
22
+ readonly expiresAt: number;
23
+ readonly recommendedFee: number;
24
+ readonly token: string;
25
+ refundAddress: string;
26
+ adjustedInput: bigint;
27
+ adjustedOutput: bigint;
28
+ doubleSpent: boolean;
29
+ scRawTx: string;
30
+ btcTx: BtcTx;
31
+ txFee: number;
32
+ txSize: number;
33
+ txId: string;
34
+ vout: number;
35
+ burnTxId: string;
36
+ refundTxId: string;
37
+ constructor(chainIdentifier: string, swapFee: bigint, swapFeeInToken: bigint, btcAddress: string, inputSats: bigint, dstAddress: string, outputTokens: bigint, createdHeight: number, expiresAt: number, recommendedFee: number, refundAddress: string, token: string);
38
+ constructor(obj: any);
39
+ serialize(): any;
40
+ getSequence(): bigint;
41
+ getToken(): string;
42
+ getOutputAmount(): bigint;
43
+ getTotalInputAmount(): bigint;
44
+ getSwapFee(): {
45
+ inInputToken: bigint;
46
+ inOutputToken: bigint;
47
+ };
48
+ isFailed(): boolean;
49
+ isInitiated(): boolean;
50
+ isSuccess(): boolean;
51
+ getIdentifierHash(): string;
52
+ }
@@ -1,118 +1,118 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FromBtcTrustedSwap = exports.FromBtcTrustedSwapState = void 0;
4
- const base_1 = require("@atomiqlabs/base");
5
- const Utils_1 = require("../../../utils/Utils");
6
- const crypto_1 = require("crypto");
7
- const SwapHandlerSwap_1 = require("../../SwapHandlerSwap");
8
- const SwapHandler_1 = require("../../SwapHandler");
9
- var FromBtcTrustedSwapState;
10
- (function (FromBtcTrustedSwapState) {
11
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["DOUBLE_SPENT"] = -4] = "DOUBLE_SPENT";
12
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["REFUNDED"] = -3] = "REFUNDED";
13
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["REFUNDABLE"] = -2] = "REFUNDABLE";
14
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["EXPIRED"] = -1] = "EXPIRED";
15
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["CREATED"] = 0] = "CREATED";
16
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["RECEIVED"] = 1] = "RECEIVED";
17
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["BTC_CONFIRMED"] = 2] = "BTC_CONFIRMED";
18
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["SENT"] = 3] = "SENT";
19
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["CONFIRMED"] = 4] = "CONFIRMED";
20
- FromBtcTrustedSwapState[FromBtcTrustedSwapState["FINISHED"] = 5] = "FINISHED";
21
- })(FromBtcTrustedSwapState = exports.FromBtcTrustedSwapState || (exports.FromBtcTrustedSwapState = {}));
22
- class FromBtcTrustedSwap extends SwapHandlerSwap_1.SwapHandlerSwap {
23
- constructor(objOrChainIdentifier, swapFee, swapFeeInToken, btcAddress, inputSats, dstAddress, outputTokens, createdHeight, expiresAt, recommendedFee, refundAddress, token) {
24
- if (typeof (objOrChainIdentifier) === "string") {
25
- super(objOrChainIdentifier, swapFee, swapFeeInToken);
26
- this.state = FromBtcTrustedSwapState.CREATED;
27
- this.doubleSpent = false;
28
- this.amount = inputSats;
29
- this.sequence = base_1.BigIntBufferUtils.fromBuffer((0, crypto_1.randomBytes)(8));
30
- this.btcAddress = btcAddress;
31
- this.dstAddress = dstAddress;
32
- this.outputTokens = outputTokens;
33
- this.createdHeight = createdHeight;
34
- this.expiresAt = expiresAt;
35
- this.recommendedFee = recommendedFee;
36
- this.refundAddress = refundAddress;
37
- this.token = token;
38
- }
39
- else {
40
- super(objOrChainIdentifier);
41
- this.btcAddress = objOrChainIdentifier.btcAddress;
42
- this.amount = (0, Utils_1.deserializeBN)(objOrChainIdentifier.amount);
43
- this.sequence = (0, Utils_1.deserializeBN)(objOrChainIdentifier.sequence);
44
- this.dstAddress = objOrChainIdentifier.dstAddress;
45
- this.outputTokens = (0, Utils_1.deserializeBN)(objOrChainIdentifier.outputTokens);
46
- this.adjustedInput = (0, Utils_1.deserializeBN)(objOrChainIdentifier.adjustedInput);
47
- this.adjustedOutput = (0, Utils_1.deserializeBN)(objOrChainIdentifier.adjustedOutput);
48
- this.createdHeight = objOrChainIdentifier.createdHeight;
49
- this.expiresAt = objOrChainIdentifier.expiresAt;
50
- this.recommendedFee = objOrChainIdentifier.recommendedFee;
51
- this.refundAddress = objOrChainIdentifier.refundAddress;
52
- this.doubleSpent = objOrChainIdentifier.doubleSpent;
53
- this.scRawTx = objOrChainIdentifier.scRawTx;
54
- this.btcTx = objOrChainIdentifier.btcTx;
55
- this.txFee = objOrChainIdentifier.txFee;
56
- this.txSize = objOrChainIdentifier.txSize;
57
- this.txId = objOrChainIdentifier.txId;
58
- this.vout = objOrChainIdentifier.vout;
59
- this.burnTxId = objOrChainIdentifier.burnTxId;
60
- this.refundTxId = objOrChainIdentifier.refundTxId;
61
- this.token = objOrChainIdentifier.token;
62
- }
63
- this.type = SwapHandler_1.SwapHandlerType.FROM_BTC_TRUSTED;
64
- }
65
- serialize() {
66
- const partialSerialized = super.serialize();
67
- partialSerialized.btcAddress = this.btcAddress;
68
- partialSerialized.amount = (0, Utils_1.serializeBN)(this.amount);
69
- partialSerialized.sequence = (0, Utils_1.serializeBN)(this.sequence);
70
- partialSerialized.dstAddress = this.dstAddress;
71
- partialSerialized.outputTokens = (0, Utils_1.serializeBN)(this.outputTokens);
72
- partialSerialized.adjustedInput = (0, Utils_1.serializeBN)(this.adjustedInput);
73
- partialSerialized.adjustedOutput = (0, Utils_1.serializeBN)(this.adjustedOutput);
74
- partialSerialized.createdHeight = this.createdHeight;
75
- partialSerialized.expiresAt = this.expiresAt;
76
- partialSerialized.recommendedFee = this.recommendedFee;
77
- partialSerialized.refundAddress = this.refundAddress;
78
- partialSerialized.doubleSpent = this.doubleSpent;
79
- partialSerialized.scRawTx = this.scRawTx;
80
- partialSerialized.btcTx = this.btcTx;
81
- partialSerialized.txFee = this.txFee;
82
- partialSerialized.txSize = this.txSize;
83
- partialSerialized.txId = this.txId;
84
- partialSerialized.vout = this.vout;
85
- partialSerialized.burnTxId = this.burnTxId;
86
- partialSerialized.refundTxId = this.refundTxId;
87
- partialSerialized.token = this.token;
88
- return partialSerialized;
89
- }
90
- getSequence() {
91
- return this.sequence;
92
- }
93
- getToken() {
94
- return this.token;
95
- }
96
- getOutputAmount() {
97
- return this.adjustedOutput || this.outputTokens;
98
- }
99
- getTotalInputAmount() {
100
- return this.adjustedInput || this.amount;
101
- }
102
- getSwapFee() {
103
- return { inInputToken: this.swapFee, inOutputToken: this.swapFeeInToken };
104
- }
105
- isFailed() {
106
- return this.state === FromBtcTrustedSwapState.EXPIRED || this.state === FromBtcTrustedSwapState.REFUNDED || this.state === FromBtcTrustedSwapState.DOUBLE_SPENT;
107
- }
108
- isInitiated() {
109
- return this.state !== FromBtcTrustedSwapState.CREATED;
110
- }
111
- isSuccess() {
112
- return this.state === FromBtcTrustedSwapState.CONFIRMED;
113
- }
114
- getIdentifierHash() {
115
- return (0, crypto_1.createHash)("sha256").update(this.btcAddress).digest().toString("hex");
116
- }
117
- }
118
- exports.FromBtcTrustedSwap = FromBtcTrustedSwap;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FromBtcTrustedSwap = exports.FromBtcTrustedSwapState = void 0;
4
+ const base_1 = require("@atomiqlabs/base");
5
+ const Utils_1 = require("../../../utils/Utils");
6
+ const crypto_1 = require("crypto");
7
+ const SwapHandlerSwap_1 = require("../../SwapHandlerSwap");
8
+ const SwapHandler_1 = require("../../SwapHandler");
9
+ var FromBtcTrustedSwapState;
10
+ (function (FromBtcTrustedSwapState) {
11
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["DOUBLE_SPENT"] = -4] = "DOUBLE_SPENT";
12
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["REFUNDED"] = -3] = "REFUNDED";
13
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["REFUNDABLE"] = -2] = "REFUNDABLE";
14
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["EXPIRED"] = -1] = "EXPIRED";
15
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["CREATED"] = 0] = "CREATED";
16
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["RECEIVED"] = 1] = "RECEIVED";
17
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["BTC_CONFIRMED"] = 2] = "BTC_CONFIRMED";
18
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["SENT"] = 3] = "SENT";
19
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["CONFIRMED"] = 4] = "CONFIRMED";
20
+ FromBtcTrustedSwapState[FromBtcTrustedSwapState["FINISHED"] = 5] = "FINISHED";
21
+ })(FromBtcTrustedSwapState = exports.FromBtcTrustedSwapState || (exports.FromBtcTrustedSwapState = {}));
22
+ class FromBtcTrustedSwap extends SwapHandlerSwap_1.SwapHandlerSwap {
23
+ constructor(objOrChainIdentifier, swapFee, swapFeeInToken, btcAddress, inputSats, dstAddress, outputTokens, createdHeight, expiresAt, recommendedFee, refundAddress, token) {
24
+ if (typeof (objOrChainIdentifier) === "string") {
25
+ super(objOrChainIdentifier, swapFee, swapFeeInToken);
26
+ this.state = FromBtcTrustedSwapState.CREATED;
27
+ this.doubleSpent = false;
28
+ this.amount = inputSats;
29
+ this.sequence = base_1.BigIntBufferUtils.fromBuffer((0, crypto_1.randomBytes)(8));
30
+ this.btcAddress = btcAddress;
31
+ this.dstAddress = dstAddress;
32
+ this.outputTokens = outputTokens;
33
+ this.createdHeight = createdHeight;
34
+ this.expiresAt = expiresAt;
35
+ this.recommendedFee = recommendedFee;
36
+ this.refundAddress = refundAddress;
37
+ this.token = token;
38
+ }
39
+ else {
40
+ super(objOrChainIdentifier);
41
+ this.btcAddress = objOrChainIdentifier.btcAddress;
42
+ this.amount = (0, Utils_1.deserializeBN)(objOrChainIdentifier.amount);
43
+ this.sequence = (0, Utils_1.deserializeBN)(objOrChainIdentifier.sequence);
44
+ this.dstAddress = objOrChainIdentifier.dstAddress;
45
+ this.outputTokens = (0, Utils_1.deserializeBN)(objOrChainIdentifier.outputTokens);
46
+ this.adjustedInput = (0, Utils_1.deserializeBN)(objOrChainIdentifier.adjustedInput);
47
+ this.adjustedOutput = (0, Utils_1.deserializeBN)(objOrChainIdentifier.adjustedOutput);
48
+ this.createdHeight = objOrChainIdentifier.createdHeight;
49
+ this.expiresAt = objOrChainIdentifier.expiresAt;
50
+ this.recommendedFee = objOrChainIdentifier.recommendedFee;
51
+ this.refundAddress = objOrChainIdentifier.refundAddress;
52
+ this.doubleSpent = objOrChainIdentifier.doubleSpent;
53
+ this.scRawTx = objOrChainIdentifier.scRawTx;
54
+ this.btcTx = objOrChainIdentifier.btcTx;
55
+ this.txFee = objOrChainIdentifier.txFee;
56
+ this.txSize = objOrChainIdentifier.txSize;
57
+ this.txId = objOrChainIdentifier.txId;
58
+ this.vout = objOrChainIdentifier.vout;
59
+ this.burnTxId = objOrChainIdentifier.burnTxId;
60
+ this.refundTxId = objOrChainIdentifier.refundTxId;
61
+ this.token = objOrChainIdentifier.token;
62
+ }
63
+ this.type = SwapHandler_1.SwapHandlerType.FROM_BTC_TRUSTED;
64
+ }
65
+ serialize() {
66
+ const partialSerialized = super.serialize();
67
+ partialSerialized.btcAddress = this.btcAddress;
68
+ partialSerialized.amount = (0, Utils_1.serializeBN)(this.amount);
69
+ partialSerialized.sequence = (0, Utils_1.serializeBN)(this.sequence);
70
+ partialSerialized.dstAddress = this.dstAddress;
71
+ partialSerialized.outputTokens = (0, Utils_1.serializeBN)(this.outputTokens);
72
+ partialSerialized.adjustedInput = (0, Utils_1.serializeBN)(this.adjustedInput);
73
+ partialSerialized.adjustedOutput = (0, Utils_1.serializeBN)(this.adjustedOutput);
74
+ partialSerialized.createdHeight = this.createdHeight;
75
+ partialSerialized.expiresAt = this.expiresAt;
76
+ partialSerialized.recommendedFee = this.recommendedFee;
77
+ partialSerialized.refundAddress = this.refundAddress;
78
+ partialSerialized.doubleSpent = this.doubleSpent;
79
+ partialSerialized.scRawTx = this.scRawTx;
80
+ partialSerialized.btcTx = this.btcTx;
81
+ partialSerialized.txFee = this.txFee;
82
+ partialSerialized.txSize = this.txSize;
83
+ partialSerialized.txId = this.txId;
84
+ partialSerialized.vout = this.vout;
85
+ partialSerialized.burnTxId = this.burnTxId;
86
+ partialSerialized.refundTxId = this.refundTxId;
87
+ partialSerialized.token = this.token;
88
+ return partialSerialized;
89
+ }
90
+ getSequence() {
91
+ return this.sequence;
92
+ }
93
+ getToken() {
94
+ return this.token;
95
+ }
96
+ getOutputAmount() {
97
+ return this.adjustedOutput || this.outputTokens;
98
+ }
99
+ getTotalInputAmount() {
100
+ return this.adjustedInput || this.amount;
101
+ }
102
+ getSwapFee() {
103
+ return { inInputToken: this.swapFee, inOutputToken: this.swapFeeInToken };
104
+ }
105
+ isFailed() {
106
+ return this.state === FromBtcTrustedSwapState.EXPIRED || this.state === FromBtcTrustedSwapState.REFUNDED || this.state === FromBtcTrustedSwapState.DOUBLE_SPENT;
107
+ }
108
+ isInitiated() {
109
+ return this.state !== FromBtcTrustedSwapState.CREATED;
110
+ }
111
+ isSuccess() {
112
+ return this.state === FromBtcTrustedSwapState.CONFIRMED;
113
+ }
114
+ getIdentifierHash() {
115
+ return (0, crypto_1.createHash)("sha256").update(this.btcAddress).digest().toString("hex");
116
+ }
117
+ }
118
+ exports.FromBtcTrustedSwap = FromBtcTrustedSwap;
@@ -1,77 +1,77 @@
1
- import { Express } from "express";
2
- import { FromBtcLnTrustedSwap, FromBtcLnTrustedSwapState } from "./FromBtcLnTrustedSwap";
3
- import { ISwapPrice } from "../../../prices/ISwapPrice";
4
- import { MultichainData, SwapBaseConfig, SwapHandler, SwapHandlerType } from "../../SwapHandler";
5
- import { IIntermediaryStorage } from "../../../storage/IIntermediaryStorage";
6
- import { ILightningWallet } from "../../../wallets/ILightningWallet";
7
- import { FromBtcAmountAssertions } from "../../assertions/FromBtcAmountAssertions";
8
- import { LightningAssertions } from "../../assertions/LightningAssertions";
9
- export type SwapForGasServerConfig = SwapBaseConfig & {
10
- minCltv: bigint;
11
- invoiceTimeoutSeconds?: number;
12
- };
13
- export type FromBtcLnTrustedRequestType = {
14
- address: string;
15
- amount: bigint;
16
- exactIn?: boolean;
17
- token?: string;
18
- };
19
- /**
20
- * Swap handler handling from BTCLN swaps using submarine swaps
21
- */
22
- export declare class FromBtcLnTrusted extends SwapHandler<FromBtcLnTrustedSwap, FromBtcLnTrustedSwapState> {
23
- readonly type = SwapHandlerType.FROM_BTCLN_TRUSTED;
24
- readonly inflightSwapStates: Set<FromBtcLnTrustedSwapState>;
25
- activeSubscriptions: Map<string, AbortController>;
26
- processedTxIds: Map<string, string>;
27
- readonly config: SwapForGasServerConfig;
28
- readonly lightning: ILightningWallet;
29
- readonly LightningAssertions: LightningAssertions;
30
- readonly AmountAssertions: FromBtcAmountAssertions;
31
- constructor(storageDirectory: IIntermediaryStorage<FromBtcLnTrustedSwap>, path: string, chains: MultichainData, lightning: ILightningWallet, swapPricing: ISwapPrice, config: SwapForGasServerConfig);
32
- /**
33
- * Unsubscribe from the pending lightning network invoice
34
- *
35
- * @param paymentHash
36
- * @private
37
- */
38
- private unsubscribeInvoice;
39
- /**
40
- * Subscribe to a pending lightning network invoice
41
- *
42
- * @param invoiceData
43
- */
44
- private subscribeToInvoice;
45
- /**
46
- *
47
- * @param swap
48
- * @protected
49
- * @returns {Promise<boolean>} Whether the invoice should be cancelled
50
- */
51
- protected processPastSwap(swap: FromBtcLnTrustedSwap): Promise<boolean>;
52
- protected cancelInvoices(swaps: FromBtcLnTrustedSwap[]): Promise<void>;
53
- /**
54
- * Checks past swaps, refunds and deletes ones that are already expired.
55
- */
56
- protected processPastSwaps(): Promise<void>;
57
- private cancelSwapAndInvoice;
58
- /**
59
- * Saves the state of received HTLC of the lightning payment
60
- *
61
- * @param invoiceData
62
- * @param invoice
63
- */
64
- private htlcReceived;
65
- /**
66
- *
67
- * Checks if the lightning invoice is in HELD state (htlcs received but yet unclaimed)
68
- *
69
- * @param paymentHash
70
- * @throws {DefinedRuntimeError} Will throw if the lightning invoice is not found, or if it isn't in the HELD state
71
- * @returns the fetched lightning invoice
72
- */
73
- private checkInvoiceStatus;
74
- startRestServer(restServer: Express): void;
75
- init(): Promise<void>;
76
- getInfoData(): any;
77
- }
1
+ import { Express } from "express";
2
+ import { FromBtcLnTrustedSwap, FromBtcLnTrustedSwapState } from "./FromBtcLnTrustedSwap";
3
+ import { ISwapPrice } from "../../../prices/ISwapPrice";
4
+ import { MultichainData, SwapBaseConfig, SwapHandler, SwapHandlerType } from "../../SwapHandler";
5
+ import { IIntermediaryStorage } from "../../../storage/IIntermediaryStorage";
6
+ import { ILightningWallet } from "../../../wallets/ILightningWallet";
7
+ import { FromBtcAmountAssertions } from "../../assertions/FromBtcAmountAssertions";
8
+ import { LightningAssertions } from "../../assertions/LightningAssertions";
9
+ export type SwapForGasServerConfig = SwapBaseConfig & {
10
+ minCltv: bigint;
11
+ invoiceTimeoutSeconds?: number;
12
+ };
13
+ export type FromBtcLnTrustedRequestType = {
14
+ address: string;
15
+ amount: bigint;
16
+ exactIn?: boolean;
17
+ token?: string;
18
+ };
19
+ /**
20
+ * Swap handler handling from BTCLN swaps using submarine swaps
21
+ */
22
+ export declare class FromBtcLnTrusted extends SwapHandler<FromBtcLnTrustedSwap, FromBtcLnTrustedSwapState> {
23
+ readonly type = SwapHandlerType.FROM_BTCLN_TRUSTED;
24
+ readonly inflightSwapStates: Set<FromBtcLnTrustedSwapState>;
25
+ activeSubscriptions: Map<string, AbortController>;
26
+ processedTxIds: Map<string, string>;
27
+ readonly config: SwapForGasServerConfig;
28
+ readonly lightning: ILightningWallet;
29
+ readonly LightningAssertions: LightningAssertions;
30
+ readonly AmountAssertions: FromBtcAmountAssertions;
31
+ constructor(storageDirectory: IIntermediaryStorage<FromBtcLnTrustedSwap>, path: string, chains: MultichainData, lightning: ILightningWallet, swapPricing: ISwapPrice, config: SwapForGasServerConfig);
32
+ /**
33
+ * Unsubscribe from the pending lightning network invoice
34
+ *
35
+ * @param paymentHash
36
+ * @private
37
+ */
38
+ private unsubscribeInvoice;
39
+ /**
40
+ * Subscribe to a pending lightning network invoice
41
+ *
42
+ * @param invoiceData
43
+ */
44
+ private subscribeToInvoice;
45
+ /**
46
+ *
47
+ * @param swap
48
+ * @protected
49
+ * @returns {Promise<boolean>} Whether the invoice should be cancelled
50
+ */
51
+ protected processPastSwap(swap: FromBtcLnTrustedSwap): Promise<boolean>;
52
+ protected cancelInvoices(swaps: FromBtcLnTrustedSwap[]): Promise<void>;
53
+ /**
54
+ * Checks past swaps, refunds and deletes ones that are already expired.
55
+ */
56
+ protected processPastSwaps(): Promise<void>;
57
+ private cancelSwapAndInvoice;
58
+ /**
59
+ * Saves the state of received HTLC of the lightning payment
60
+ *
61
+ * @param invoiceData
62
+ * @param invoice
63
+ */
64
+ private htlcReceived;
65
+ /**
66
+ *
67
+ * Checks if the lightning invoice is in HELD state (htlcs received but yet unclaimed)
68
+ *
69
+ * @param paymentHash
70
+ * @throws {DefinedRuntimeError} Will throw if the lightning invoice is not found, or if it isn't in the HELD state
71
+ * @returns the fetched lightning invoice
72
+ */
73
+ private checkInvoiceStatus;
74
+ startRestServer(restServer: Express): void;
75
+ init(): Promise<void>;
76
+ getInfoData(): any;
77
+ }