@atomiqlabs/lp-lib 15.0.2 → 15.0.4

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 (163) 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 +40 -40
  5. package/dist/index.js +56 -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 +18 -18
  23. package/dist/storagemanager/IntermediaryStorageManager.js +104 -104
  24. package/dist/storagemanager/StorageManager.d.ts +12 -12
  25. package/dist/storagemanager/StorageManager.js +57 -57
  26. package/dist/swaps/SwapHandler.d.ts +156 -156
  27. package/dist/swaps/SwapHandler.js +163 -163
  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 +172 -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 +101 -101
  45. package/dist/swaps/escrow/FromBtcBaseSwapHandler.js +207 -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 -675
  56. package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.d.ts +32 -32
  57. package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.js +88 -88
  58. package/dist/swaps/escrow/tobtc_abstract/ToBtcAbs.d.ts +171 -171
  59. package/dist/swaps/escrow/tobtc_abstract/ToBtcAbs.js +706 -706
  60. package/dist/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.d.ts +26 -26
  61. package/dist/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.js +62 -62
  62. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.d.ts +177 -177
  63. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.js +863 -861
  64. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.d.ts +24 -23
  65. package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.js +58 -56
  66. package/dist/swaps/spv_vault_swap/SpvVault.d.ts +41 -41
  67. package/dist/swaps/spv_vault_swap/SpvVault.js +111 -111
  68. package/dist/swaps/spv_vault_swap/SpvVaultSwap.d.ts +67 -67
  69. package/dist/swaps/spv_vault_swap/SpvVaultSwap.js +158 -158
  70. package/dist/swaps/spv_vault_swap/SpvVaultSwapHandler.d.ts +68 -68
  71. package/dist/swaps/spv_vault_swap/SpvVaultSwapHandler.js +492 -491
  72. package/dist/swaps/spv_vault_swap/SpvVaults.d.ts +57 -57
  73. package/dist/swaps/spv_vault_swap/SpvVaults.js +369 -369
  74. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrusted.d.ts +51 -51
  75. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrusted.js +650 -650
  76. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.d.ts +52 -52
  77. package/dist/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.js +118 -118
  78. package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.d.ts +76 -76
  79. package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.js +495 -495
  80. package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.d.ts +34 -34
  81. package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.js +81 -81
  82. package/dist/utils/BitcoinUtils.d.ts +2 -0
  83. package/dist/utils/BitcoinUtils.js +45 -0
  84. package/dist/utils/Utils.d.ts +29 -29
  85. package/dist/utils/Utils.js +88 -88
  86. package/dist/utils/paramcoders/IParamReader.d.ts +5 -5
  87. package/dist/utils/paramcoders/IParamReader.js +2 -2
  88. package/dist/utils/paramcoders/IParamWriter.d.ts +4 -4
  89. package/dist/utils/paramcoders/IParamWriter.js +2 -2
  90. package/dist/utils/paramcoders/LegacyParamEncoder.d.ts +10 -10
  91. package/dist/utils/paramcoders/LegacyParamEncoder.js +22 -22
  92. package/dist/utils/paramcoders/ParamDecoder.d.ts +25 -25
  93. package/dist/utils/paramcoders/ParamDecoder.js +222 -222
  94. package/dist/utils/paramcoders/ParamEncoder.d.ts +9 -9
  95. package/dist/utils/paramcoders/ParamEncoder.js +22 -22
  96. package/dist/utils/paramcoders/SchemaVerifier.d.ts +21 -21
  97. package/dist/utils/paramcoders/SchemaVerifier.js +84 -84
  98. package/dist/utils/paramcoders/server/ServerParamDecoder.d.ts +8 -8
  99. package/dist/utils/paramcoders/server/ServerParamDecoder.js +105 -105
  100. package/dist/utils/paramcoders/server/ServerParamEncoder.d.ts +11 -11
  101. package/dist/utils/paramcoders/server/ServerParamEncoder.js +65 -65
  102. package/dist/wallets/IBitcoinWallet.d.ts +67 -67
  103. package/dist/wallets/IBitcoinWallet.js +2 -2
  104. package/dist/wallets/ILightningWallet.d.ts +117 -117
  105. package/dist/wallets/ILightningWallet.js +37 -37
  106. package/dist/wallets/ISpvVaultSigner.d.ts +7 -7
  107. package/dist/wallets/ISpvVaultSigner.js +2 -2
  108. package/dist/wallets/ISpvVaultWallet.d.ts +42 -42
  109. package/dist/wallets/ISpvVaultWallet.js +2 -2
  110. package/package.json +36 -36
  111. package/src/fees/IBtcFeeEstimator.ts +6 -6
  112. package/src/index.ts +51 -51
  113. package/src/info/InfoHandler.ts +106 -106
  114. package/src/plugins/IPlugin.ts +168 -168
  115. package/src/plugins/PluginManager.ts +336 -336
  116. package/src/prices/BinanceSwapPrice.ts +113 -113
  117. package/src/prices/CoinGeckoSwapPrice.ts +87 -87
  118. package/src/prices/ISwapPrice.ts +88 -88
  119. package/src/prices/OKXSwapPrice.ts +113 -113
  120. package/src/storage/IIntermediaryStorage.ts +19 -19
  121. package/src/storagemanager/IntermediaryStorageManager.ts +109 -109
  122. package/src/storagemanager/StorageManager.ts +68 -68
  123. package/src/swaps/SwapHandler.ts +280 -280
  124. package/src/swaps/SwapHandlerSwap.ts +141 -141
  125. package/src/swaps/assertions/AmountAssertions.ts +76 -76
  126. package/src/swaps/assertions/FromBtcAmountAssertions.ts +238 -238
  127. package/src/swaps/assertions/LightningAssertions.ts +103 -103
  128. package/src/swaps/assertions/ToBtcAmountAssertions.ts +203 -203
  129. package/src/swaps/escrow/EscrowHandler.ts +179 -179
  130. package/src/swaps/escrow/EscrowHandlerSwap.ts +86 -86
  131. package/src/swaps/escrow/FromBtcBaseSwap.ts +38 -38
  132. package/src/swaps/escrow/FromBtcBaseSwapHandler.ts +283 -283
  133. package/src/swaps/escrow/ToBtcBaseSwap.ts +85 -85
  134. package/src/swaps/escrow/ToBtcBaseSwapHandler.ts +129 -129
  135. package/src/swaps/escrow/frombtc_abstract/FromBtcAbs.ts +452 -452
  136. package/src/swaps/escrow/frombtc_abstract/FromBtcSwapAbs.ts +61 -61
  137. package/src/swaps/escrow/frombtcln_abstract/FromBtcLnAbs.ts +856 -856
  138. package/src/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.ts +137 -137
  139. package/src/swaps/escrow/tobtc_abstract/ToBtcAbs.ts +879 -879
  140. package/src/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.ts +102 -102
  141. package/src/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.ts +1112 -1110
  142. package/src/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.ts +80 -77
  143. package/src/swaps/spv_vault_swap/SpvVault.ts +143 -143
  144. package/src/swaps/spv_vault_swap/SpvVaultSwap.ts +225 -225
  145. package/src/swaps/spv_vault_swap/SpvVaultSwapHandler.ts +628 -627
  146. package/src/swaps/spv_vault_swap/SpvVaults.ts +440 -440
  147. package/src/swaps/trusted/frombtc_trusted/FromBtcTrusted.ts +747 -747
  148. package/src/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.ts +185 -185
  149. package/src/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.ts +592 -592
  150. package/src/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.ts +121 -121
  151. package/src/utils/BitcoinUtils.ts +42 -0
  152. package/src/utils/Utils.ts +102 -102
  153. package/src/utils/paramcoders/IParamReader.ts +7 -7
  154. package/src/utils/paramcoders/IParamWriter.ts +8 -8
  155. package/src/utils/paramcoders/LegacyParamEncoder.ts +27 -27
  156. package/src/utils/paramcoders/ParamDecoder.ts +218 -218
  157. package/src/utils/paramcoders/ParamEncoder.ts +29 -29
  158. package/src/utils/paramcoders/SchemaVerifier.ts +96 -96
  159. package/src/utils/paramcoders/server/ServerParamDecoder.ts +115 -115
  160. package/src/utils/paramcoders/server/ServerParamEncoder.ts +75 -75
  161. package/src/wallets/IBitcoinWallet.ts +68 -68
  162. package/src/wallets/ILightningWallet.ts +178 -178
  163. 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,76 +1,76 @@
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
- activeSubscriptions: Map<string, AbortController>;
25
- processedTxIds: Map<string, string>;
26
- readonly config: SwapForGasServerConfig;
27
- readonly lightning: ILightningWallet;
28
- readonly LightningAssertions: LightningAssertions;
29
- readonly AmountAssertions: FromBtcAmountAssertions;
30
- constructor(storageDirectory: IIntermediaryStorage<FromBtcLnTrustedSwap>, path: string, chains: MultichainData, lightning: ILightningWallet, swapPricing: ISwapPrice, config: SwapForGasServerConfig);
31
- /**
32
- * Unsubscribe from the pending lightning network invoice
33
- *
34
- * @param paymentHash
35
- * @private
36
- */
37
- private unsubscribeInvoice;
38
- /**
39
- * Subscribe to a pending lightning network invoice
40
- *
41
- * @param invoiceData
42
- */
43
- private subscribeToInvoice;
44
- /**
45
- *
46
- * @param swap
47
- * @protected
48
- * @returns {Promise<boolean>} Whether the invoice should be cancelled
49
- */
50
- protected processPastSwap(swap: FromBtcLnTrustedSwap): Promise<boolean>;
51
- protected cancelInvoices(swaps: FromBtcLnTrustedSwap[]): Promise<void>;
52
- /**
53
- * Checks past swaps, refunds and deletes ones that are already expired.
54
- */
55
- protected processPastSwaps(): Promise<void>;
56
- private cancelSwapAndInvoice;
57
- /**
58
- * Saves the state of received HTLC of the lightning payment
59
- *
60
- * @param invoiceData
61
- * @param invoice
62
- */
63
- private htlcReceived;
64
- /**
65
- *
66
- * Checks if the lightning invoice is in HELD state (htlcs received but yet unclaimed)
67
- *
68
- * @param paymentHash
69
- * @throws {DefinedRuntimeError} Will throw if the lightning invoice is not found, or if it isn't in the HELD state
70
- * @returns the fetched lightning invoice
71
- */
72
- private checkInvoiceStatus;
73
- startRestServer(restServer: Express): void;
74
- init(): Promise<void>;
75
- getInfoData(): any;
76
- }
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
+ activeSubscriptions: Map<string, AbortController>;
25
+ processedTxIds: Map<string, string>;
26
+ readonly config: SwapForGasServerConfig;
27
+ readonly lightning: ILightningWallet;
28
+ readonly LightningAssertions: LightningAssertions;
29
+ readonly AmountAssertions: FromBtcAmountAssertions;
30
+ constructor(storageDirectory: IIntermediaryStorage<FromBtcLnTrustedSwap>, path: string, chains: MultichainData, lightning: ILightningWallet, swapPricing: ISwapPrice, config: SwapForGasServerConfig);
31
+ /**
32
+ * Unsubscribe from the pending lightning network invoice
33
+ *
34
+ * @param paymentHash
35
+ * @private
36
+ */
37
+ private unsubscribeInvoice;
38
+ /**
39
+ * Subscribe to a pending lightning network invoice
40
+ *
41
+ * @param invoiceData
42
+ */
43
+ private subscribeToInvoice;
44
+ /**
45
+ *
46
+ * @param swap
47
+ * @protected
48
+ * @returns {Promise<boolean>} Whether the invoice should be cancelled
49
+ */
50
+ protected processPastSwap(swap: FromBtcLnTrustedSwap): Promise<boolean>;
51
+ protected cancelInvoices(swaps: FromBtcLnTrustedSwap[]): Promise<void>;
52
+ /**
53
+ * Checks past swaps, refunds and deletes ones that are already expired.
54
+ */
55
+ protected processPastSwaps(): Promise<void>;
56
+ private cancelSwapAndInvoice;
57
+ /**
58
+ * Saves the state of received HTLC of the lightning payment
59
+ *
60
+ * @param invoiceData
61
+ * @param invoice
62
+ */
63
+ private htlcReceived;
64
+ /**
65
+ *
66
+ * Checks if the lightning invoice is in HELD state (htlcs received but yet unclaimed)
67
+ *
68
+ * @param paymentHash
69
+ * @throws {DefinedRuntimeError} Will throw if the lightning invoice is not found, or if it isn't in the HELD state
70
+ * @returns the fetched lightning invoice
71
+ */
72
+ private checkInvoiceStatus;
73
+ startRestServer(restServer: Express): void;
74
+ init(): Promise<void>;
75
+ getInfoData(): any;
76
+ }