@atomiqlabs/lp-lib 14.0.0-dev.13 → 14.0.0-dev.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -201
- package/dist/fees/IBtcFeeEstimator.d.ts +3 -3
- package/dist/fees/IBtcFeeEstimator.js +2 -2
- package/dist/index.d.ts +42 -42
- package/dist/index.js +58 -58
- package/dist/info/InfoHandler.d.ts +17 -17
- package/dist/info/InfoHandler.js +61 -61
- package/dist/plugins/IPlugin.d.ts +143 -143
- package/dist/plugins/IPlugin.js +34 -34
- package/dist/plugins/PluginManager.d.ts +112 -112
- package/dist/plugins/PluginManager.js +259 -259
- package/dist/prices/BinanceSwapPrice.d.ts +26 -26
- package/dist/prices/BinanceSwapPrice.js +92 -92
- package/dist/prices/CoinGeckoSwapPrice.d.ts +30 -30
- package/dist/prices/CoinGeckoSwapPrice.js +64 -64
- package/dist/prices/ISwapPrice.d.ts +43 -43
- package/dist/prices/ISwapPrice.js +55 -55
- package/dist/prices/OKXSwapPrice.d.ts +26 -26
- package/dist/prices/OKXSwapPrice.js +92 -92
- package/dist/storage/IIntermediaryStorage.d.ts +18 -18
- package/dist/storage/IIntermediaryStorage.js +2 -2
- package/dist/storagemanager/IntermediaryStorageManager.d.ts +19 -19
- package/dist/storagemanager/IntermediaryStorageManager.js +111 -111
- package/dist/storagemanager/StorageManager.d.ts +13 -13
- package/dist/storagemanager/StorageManager.js +64 -64
- package/dist/swaps/SwapHandler.d.ts +153 -153
- package/dist/swaps/SwapHandler.js +160 -160
- package/dist/swaps/SwapHandlerSwap.d.ts +79 -79
- package/dist/swaps/SwapHandlerSwap.js +78 -78
- package/dist/swaps/assertions/AmountAssertions.d.ts +28 -28
- package/dist/swaps/assertions/AmountAssertions.js +72 -72
- package/dist/swaps/assertions/FromBtcAmountAssertions.d.ts +76 -76
- package/dist/swaps/assertions/FromBtcAmountAssertions.js +180 -172
- package/dist/swaps/assertions/LightningAssertions.d.ts +44 -44
- package/dist/swaps/assertions/LightningAssertions.js +86 -86
- package/dist/swaps/assertions/ToBtcAmountAssertions.d.ts +53 -53
- package/dist/swaps/assertions/ToBtcAmountAssertions.js +150 -150
- package/dist/swaps/escrow/EscrowHandler.d.ts +51 -51
- package/dist/swaps/escrow/EscrowHandler.js +158 -158
- package/dist/swaps/escrow/EscrowHandlerSwap.d.ts +35 -35
- package/dist/swaps/escrow/EscrowHandlerSwap.js +69 -69
- package/dist/swaps/escrow/FromBtcBaseSwap.d.ts +14 -14
- package/dist/swaps/escrow/FromBtcBaseSwap.js +32 -32
- package/dist/swaps/escrow/FromBtcBaseSwapHandler.d.ts +102 -102
- package/dist/swaps/escrow/FromBtcBaseSwapHandler.js +210 -210
- package/dist/swaps/escrow/ToBtcBaseSwap.d.ts +36 -36
- package/dist/swaps/escrow/ToBtcBaseSwap.js +67 -67
- package/dist/swaps/escrow/ToBtcBaseSwapHandler.d.ts +53 -53
- package/dist/swaps/escrow/ToBtcBaseSwapHandler.js +81 -81
- package/dist/swaps/escrow/frombtc_abstract/FromBtcAbs.d.ts +83 -83
- package/dist/swaps/escrow/frombtc_abstract/FromBtcAbs.js +318 -318
- package/dist/swaps/escrow/frombtc_abstract/FromBtcSwapAbs.d.ts +21 -21
- package/dist/swaps/escrow/frombtc_abstract/FromBtcSwapAbs.js +50 -50
- package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnAbs.d.ts +107 -107
- package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnAbs.js +675 -675
- package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.d.ts +33 -33
- package/dist/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.js +91 -91
- package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAuto.d.ts +104 -104
- package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAuto.js +659 -659
- package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap.d.ts +55 -55
- package/dist/swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap.js +120 -120
- package/dist/swaps/escrow/tobtc_abstract/ToBtcAbs.d.ts +171 -171
- package/dist/swaps/escrow/tobtc_abstract/ToBtcAbs.js +706 -706
- package/dist/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.d.ts +26 -26
- package/dist/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.js +62 -62
- package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.d.ts +177 -177
- package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.js +861 -861
- package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.d.ts +23 -23
- package/dist/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.js +56 -56
- package/dist/swaps/spv_vault_swap/SpvVault.d.ts +41 -41
- package/dist/swaps/spv_vault_swap/SpvVault.js +111 -111
- package/dist/swaps/spv_vault_swap/SpvVaultSwap.d.ts +67 -67
- package/dist/swaps/spv_vault_swap/SpvVaultSwap.js +158 -158
- package/dist/swaps/spv_vault_swap/SpvVaultSwapHandler.d.ts +68 -68
- package/dist/swaps/spv_vault_swap/SpvVaultSwapHandler.js +491 -491
- package/dist/swaps/spv_vault_swap/SpvVaults.d.ts +52 -52
- package/dist/swaps/spv_vault_swap/SpvVaults.js +364 -364
- package/dist/swaps/trusted/frombtc_trusted/FromBtcTrusted.d.ts +51 -51
- package/dist/swaps/trusted/frombtc_trusted/FromBtcTrusted.js +650 -650
- package/dist/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.d.ts +52 -52
- package/dist/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.js +118 -118
- package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.d.ts +76 -76
- package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.js +494 -494
- package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.d.ts +34 -34
- package/dist/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.js +81 -81
- package/dist/utils/Utils.d.ts +29 -29
- package/dist/utils/Utils.js +89 -89
- package/dist/utils/paramcoders/IParamReader.d.ts +5 -5
- package/dist/utils/paramcoders/IParamReader.js +2 -2
- package/dist/utils/paramcoders/IParamWriter.d.ts +4 -4
- package/dist/utils/paramcoders/IParamWriter.js +2 -2
- package/dist/utils/paramcoders/LegacyParamEncoder.d.ts +10 -10
- package/dist/utils/paramcoders/LegacyParamEncoder.js +22 -22
- package/dist/utils/paramcoders/ParamDecoder.d.ts +25 -25
- package/dist/utils/paramcoders/ParamDecoder.js +222 -222
- package/dist/utils/paramcoders/ParamEncoder.d.ts +9 -9
- package/dist/utils/paramcoders/ParamEncoder.js +22 -22
- package/dist/utils/paramcoders/SchemaVerifier.d.ts +21 -21
- package/dist/utils/paramcoders/SchemaVerifier.js +84 -84
- package/dist/utils/paramcoders/server/ServerParamDecoder.d.ts +8 -8
- package/dist/utils/paramcoders/server/ServerParamDecoder.js +107 -107
- package/dist/utils/paramcoders/server/ServerParamEncoder.d.ts +11 -11
- package/dist/utils/paramcoders/server/ServerParamEncoder.js +65 -65
- package/dist/wallets/IBitcoinWallet.d.ts +67 -67
- package/dist/wallets/IBitcoinWallet.js +2 -2
- package/dist/wallets/ILightningWallet.d.ts +117 -117
- package/dist/wallets/ILightningWallet.js +37 -37
- package/dist/wallets/ISpvVaultSigner.d.ts +7 -7
- package/dist/wallets/ISpvVaultSigner.js +2 -2
- package/package.json +36 -36
- package/src/fees/IBtcFeeEstimator.ts +6 -6
- package/src/index.ts +53 -53
- package/src/info/InfoHandler.ts +106 -106
- package/src/plugins/IPlugin.ts +168 -168
- package/src/plugins/PluginManager.ts +336 -336
- package/src/prices/BinanceSwapPrice.ts +113 -113
- package/src/prices/CoinGeckoSwapPrice.ts +87 -87
- package/src/prices/ISwapPrice.ts +88 -88
- package/src/prices/OKXSwapPrice.ts +113 -113
- package/src/storage/IIntermediaryStorage.ts +19 -19
- package/src/storagemanager/IntermediaryStorageManager.ts +118 -118
- package/src/storagemanager/StorageManager.ts +78 -78
- package/src/swaps/SwapHandler.ts +277 -277
- package/src/swaps/SwapHandlerSwap.ts +141 -141
- package/src/swaps/assertions/AmountAssertions.ts +76 -76
- package/src/swaps/assertions/FromBtcAmountAssertions.ts +246 -238
- package/src/swaps/assertions/LightningAssertions.ts +103 -103
- package/src/swaps/assertions/ToBtcAmountAssertions.ts +203 -203
- package/src/swaps/escrow/EscrowHandler.ts +179 -179
- package/src/swaps/escrow/EscrowHandlerSwap.ts +86 -86
- package/src/swaps/escrow/FromBtcBaseSwap.ts +38 -38
- package/src/swaps/escrow/FromBtcBaseSwapHandler.ts +286 -286
- package/src/swaps/escrow/ToBtcBaseSwap.ts +85 -85
- package/src/swaps/escrow/ToBtcBaseSwapHandler.ts +129 -129
- package/src/swaps/escrow/frombtc_abstract/FromBtcAbs.ts +452 -452
- package/src/swaps/escrow/frombtc_abstract/FromBtcSwapAbs.ts +61 -61
- package/src/swaps/escrow/frombtcln_abstract/FromBtcLnAbs.ts +856 -856
- package/src/swaps/escrow/frombtcln_abstract/FromBtcLnSwapAbs.ts +141 -141
- package/src/swaps/escrow/frombtcln_autoinit/FromBtcLnAuto.ts +822 -822
- package/src/swaps/escrow/frombtcln_autoinit/FromBtcLnAutoSwap.ts +196 -196
- package/src/swaps/escrow/tobtc_abstract/ToBtcAbs.ts +879 -879
- package/src/swaps/escrow/tobtc_abstract/ToBtcSwapAbs.ts +102 -102
- package/src/swaps/escrow/tobtcln_abstract/ToBtcLnAbs.ts +1110 -1110
- package/src/swaps/escrow/tobtcln_abstract/ToBtcLnSwapAbs.ts +77 -77
- package/src/swaps/spv_vault_swap/SpvVault.ts +143 -143
- package/src/swaps/spv_vault_swap/SpvVaultSwap.ts +225 -225
- package/src/swaps/spv_vault_swap/SpvVaultSwapHandler.ts +627 -627
- package/src/swaps/spv_vault_swap/SpvVaults.ts +435 -435
- package/src/swaps/trusted/frombtc_trusted/FromBtcTrusted.ts +747 -747
- package/src/swaps/trusted/frombtc_trusted/FromBtcTrustedSwap.ts +185 -185
- package/src/swaps/trusted/frombtcln_trusted/FromBtcLnTrusted.ts +590 -590
- package/src/swaps/trusted/frombtcln_trusted/FromBtcLnTrustedSwap.ts +121 -121
- package/src/utils/Utils.ts +104 -104
- package/src/utils/paramcoders/IParamReader.ts +7 -7
- package/src/utils/paramcoders/IParamWriter.ts +8 -8
- package/src/utils/paramcoders/LegacyParamEncoder.ts +27 -27
- package/src/utils/paramcoders/ParamDecoder.ts +218 -218
- package/src/utils/paramcoders/ParamEncoder.ts +29 -29
- package/src/utils/paramcoders/SchemaVerifier.ts +96 -96
- package/src/utils/paramcoders/server/ServerParamDecoder.ts +118 -118
- package/src/utils/paramcoders/server/ServerParamEncoder.ts +75 -75
- package/src/wallets/IBitcoinWallet.ts +68 -68
- package/src/wallets/ILightningWallet.ts +178 -178
- 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
|
+
}
|