@atomiqlabs/sdk 7.0.11 → 8.0.7
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/README.md +45 -29
- package/dist/SmartChainAssets.d.ts +11 -3
- package/dist/SmartChainAssets.js +7 -3
- package/dist/bitcoin/BitcoinRpcWithAddressIndex.d.ts +68 -0
- package/dist/bitcoin/BitcoinRpcWithAddressIndex.js +2 -0
- package/dist/bitcoin/LightningNetworkApi.d.ts +12 -0
- package/dist/bitcoin/LightningNetworkApi.js +2 -0
- package/dist/bitcoin/coinselect2/accumulative.d.ts +6 -0
- package/dist/bitcoin/coinselect2/accumulative.js +52 -0
- package/dist/bitcoin/coinselect2/blackjack.d.ts +6 -0
- package/dist/bitcoin/coinselect2/blackjack.js +38 -0
- package/dist/bitcoin/coinselect2/index.d.ts +19 -0
- package/dist/bitcoin/coinselect2/index.js +69 -0
- package/dist/bitcoin/coinselect2/utils.d.ts +71 -0
- package/dist/bitcoin/coinselect2/utils.js +123 -0
- package/dist/bitcoin/mempool/MempoolApi.d.ts +350 -0
- package/dist/bitcoin/mempool/MempoolApi.js +311 -0
- package/dist/bitcoin/mempool/MempoolBitcoinBlock.d.ts +44 -0
- package/dist/bitcoin/mempool/MempoolBitcoinBlock.js +48 -0
- package/dist/bitcoin/mempool/MempoolBitcoinRpc.d.ts +119 -0
- package/dist/bitcoin/mempool/MempoolBitcoinRpc.js +361 -0
- package/dist/bitcoin/mempool/synchronizer/MempoolBtcRelaySynchronizer.d.ts +22 -0
- package/dist/bitcoin/mempool/synchronizer/MempoolBtcRelaySynchronizer.js +105 -0
- package/dist/bitcoin/wallet/BitcoinWallet.d.ts +93 -0
- package/dist/bitcoin/wallet/BitcoinWallet.js +273 -0
- package/dist/bitcoin/wallet/IBitcoinWallet.d.ts +28 -0
- package/dist/bitcoin/wallet/IBitcoinWallet.js +20 -0
- package/dist/bitcoin/wallet/MinimalBitcoinWalletInterface.d.ts +21 -0
- package/dist/bitcoin/wallet/MinimalBitcoinWalletInterface.js +2 -0
- package/dist/bitcoin/wallet/MinimalLightningNetworkWalletInterface.d.ts +7 -0
- package/dist/bitcoin/wallet/MinimalLightningNetworkWalletInterface.js +2 -0
- package/dist/bitcoin/wallet/SingleAddressBitcoinWallet.d.ts +40 -0
- package/dist/bitcoin/wallet/SingleAddressBitcoinWallet.js +86 -0
- package/dist/enums/FeeType.d.ts +8 -0
- package/dist/enums/FeeType.js +12 -0
- package/dist/enums/SwapAmountType.d.ts +8 -0
- package/dist/enums/SwapAmountType.js +12 -0
- package/dist/enums/SwapDirection.d.ts +8 -0
- package/dist/enums/SwapDirection.js +12 -0
- package/dist/enums/SwapType.d.ts +14 -0
- package/dist/enums/SwapType.js +18 -0
- package/dist/errors/IntermediaryError.d.ts +9 -0
- package/dist/errors/IntermediaryError.js +26 -0
- package/dist/errors/PaymentAuthError.d.ts +11 -0
- package/dist/errors/PaymentAuthError.js +23 -0
- package/dist/errors/RequestError.d.ts +18 -0
- package/dist/errors/RequestError.js +46 -0
- package/dist/errors/UserError.d.ts +7 -0
- package/dist/errors/UserError.js +15 -0
- package/dist/events/UnifiedSwapEventListener.d.ts +23 -0
- package/dist/events/UnifiedSwapEventListener.js +130 -0
- package/dist/http/HttpUtils.d.ts +27 -0
- package/dist/http/HttpUtils.js +91 -0
- package/dist/http/paramcoders/IParamReader.d.ts +8 -0
- package/dist/http/paramcoders/IParamReader.js +2 -0
- package/dist/http/paramcoders/ParamDecoder.d.ts +44 -0
- package/dist/http/paramcoders/ParamDecoder.js +132 -0
- package/dist/http/paramcoders/ParamEncoder.d.ts +20 -0
- package/dist/http/paramcoders/ParamEncoder.js +31 -0
- package/dist/http/paramcoders/SchemaVerifier.d.ts +26 -0
- package/dist/http/paramcoders/SchemaVerifier.js +145 -0
- package/dist/http/paramcoders/client/ResponseParamDecoder.d.ts +11 -0
- package/dist/http/paramcoders/client/ResponseParamDecoder.js +57 -0
- package/dist/http/paramcoders/client/StreamParamEncoder.d.ts +13 -0
- package/dist/http/paramcoders/client/StreamParamEncoder.js +26 -0
- package/dist/http/paramcoders/client/StreamingFetchPromise.d.ts +16 -0
- package/dist/http/paramcoders/client/StreamingFetchPromise.js +174 -0
- package/dist/index.d.ts +82 -4
- package/dist/index.js +128 -4
- package/dist/intermediaries/Intermediary.d.ts +111 -0
- package/dist/intermediaries/Intermediary.js +115 -0
- package/dist/intermediaries/IntermediaryDiscovery.d.ts +166 -0
- package/dist/intermediaries/IntermediaryDiscovery.js +390 -0
- package/dist/intermediaries/apis/IntermediaryAPI.d.ts +436 -0
- package/dist/intermediaries/apis/IntermediaryAPI.js +600 -0
- package/dist/intermediaries/apis/TrustedIntermediaryAPI.d.ts +154 -0
- package/dist/intermediaries/apis/TrustedIntermediaryAPI.js +136 -0
- package/dist/lnurl/LNURL.d.ts +102 -0
- package/dist/lnurl/LNURL.js +321 -0
- package/dist/prices/RedundantSwapPrice.d.ts +89 -0
- package/dist/prices/RedundantSwapPrice.js +202 -0
- package/dist/prices/SingleSwapPrice.d.ts +31 -0
- package/dist/prices/SingleSwapPrice.js +41 -0
- package/dist/prices/SwapPriceWithChain.d.ts +70 -0
- package/dist/prices/SwapPriceWithChain.js +91 -0
- package/dist/prices/abstract/ICachedSwapPrice.d.ts +28 -0
- package/dist/prices/abstract/ICachedSwapPrice.js +62 -0
- package/dist/prices/abstract/IPriceProvider.d.ts +81 -0
- package/dist/prices/abstract/IPriceProvider.js +74 -0
- package/dist/prices/abstract/ISwapPrice.d.ts +117 -0
- package/dist/prices/abstract/ISwapPrice.js +219 -0
- package/dist/prices/providers/BinancePriceProvider.d.ts +16 -0
- package/dist/prices/providers/BinancePriceProvider.js +23 -0
- package/dist/prices/providers/CoinGeckoPriceProvider.d.ts +17 -0
- package/dist/prices/providers/CoinGeckoPriceProvider.js +23 -0
- package/dist/prices/providers/CoinPaprikaPriceProvider.d.ts +19 -0
- package/dist/prices/providers/CoinPaprikaPriceProvider.js +23 -0
- package/dist/prices/providers/CustomPriceProvider.d.ts +13 -0
- package/dist/prices/providers/CustomPriceProvider.js +24 -0
- package/dist/prices/providers/KrakenPriceProvider.d.ts +29 -0
- package/dist/prices/providers/KrakenPriceProvider.js +36 -0
- package/dist/prices/providers/OKXPriceProvider.d.ts +28 -0
- package/dist/prices/providers/OKXPriceProvider.js +23 -0
- package/dist/prices/providers/abstract/ExchangePriceProvider.d.ts +14 -0
- package/dist/prices/providers/abstract/ExchangePriceProvider.js +18 -0
- package/dist/prices/providers/abstract/HttpPriceProvider.d.ts +7 -0
- package/dist/prices/providers/abstract/HttpPriceProvider.js +12 -0
- package/dist/storage/IUnifiedStorage.d.ts +73 -0
- package/dist/storage/IUnifiedStorage.js +2 -0
- package/dist/storage/UnifiedSwapStorage.d.ts +82 -0
- package/dist/storage/UnifiedSwapStorage.js +83 -0
- package/dist/storage-browser/IndexedDBUnifiedStorage.d.ts +39 -0
- package/dist/storage-browser/IndexedDBUnifiedStorage.js +275 -0
- package/dist/{storage → storage-browser}/LocalStorageManager.d.ts +1 -0
- package/dist/{storage → storage-browser}/LocalStorageManager.js +2 -1
- package/dist/swapper/Swapper.d.ts +533 -0
- package/dist/swapper/Swapper.js +1566 -0
- package/dist/swapper/SwapperFactory.d.ts +87 -0
- package/dist/{SwapperFactory.js → swapper/SwapperFactory.js} +40 -22
- package/dist/swapper/SwapperUtils.d.ts +153 -0
- package/dist/swapper/SwapperUtils.js +420 -0
- package/dist/swapper/SwapperWithChain.d.ts +214 -0
- package/dist/swapper/SwapperWithChain.js +315 -0
- package/dist/swapper/SwapperWithSigner.d.ts +178 -0
- package/dist/swapper/SwapperWithSigner.js +172 -0
- package/dist/swaps/IAddressSwap.d.ts +13 -0
- package/dist/swaps/IAddressSwap.js +13 -0
- package/dist/swaps/IBTCWalletSwap.d.ts +55 -0
- package/dist/swaps/IBTCWalletSwap.js +17 -0
- package/dist/swaps/IClaimableSwap.d.ts +17 -0
- package/dist/swaps/IClaimableSwap.js +14 -0
- package/dist/swaps/IClaimableSwapWrapper.d.ts +5 -0
- package/dist/swaps/IClaimableSwapWrapper.js +2 -0
- package/dist/swaps/IRefundableSwap.d.ts +17 -0
- package/dist/swaps/IRefundableSwap.js +13 -0
- package/dist/swaps/ISwap.d.ts +207 -0
- package/dist/swaps/ISwap.js +264 -0
- package/dist/swaps/ISwapWithGasDrop.d.ts +15 -0
- package/dist/swaps/ISwapWithGasDrop.js +11 -0
- package/dist/swaps/ISwapWrapper.d.ts +153 -0
- package/dist/swaps/ISwapWrapper.js +227 -0
- package/dist/swaps/escrow_swaps/IEscrowSelfInitSwap.d.ts +53 -0
- package/dist/swaps/escrow_swaps/IEscrowSelfInitSwap.js +116 -0
- package/dist/swaps/escrow_swaps/IEscrowSwap.d.ts +70 -0
- package/dist/swaps/escrow_swaps/IEscrowSwap.js +132 -0
- package/dist/swaps/escrow_swaps/IEscrowSwapWrapper.d.ts +85 -0
- package/dist/swaps/escrow_swaps/IEscrowSwapWrapper.js +122 -0
- package/dist/swaps/escrow_swaps/frombtc/IFromBTCLNWrapper.d.ts +86 -0
- package/dist/swaps/escrow_swaps/frombtc/IFromBTCLNWrapper.js +115 -0
- package/dist/swaps/escrow_swaps/frombtc/IFromBTCSelfInitSwap.d.ts +93 -0
- package/dist/swaps/escrow_swaps/frombtc/IFromBTCSelfInitSwap.js +121 -0
- package/dist/swaps/escrow_swaps/frombtc/IFromBTCWrapper.d.ts +45 -0
- package/dist/swaps/escrow_swaps/frombtc/IFromBTCWrapper.js +65 -0
- package/dist/swaps/escrow_swaps/frombtc/ln/FromBTCLNSwap.d.ts +263 -0
- package/dist/swaps/escrow_swaps/frombtc/ln/FromBTCLNSwap.js +933 -0
- package/dist/swaps/escrow_swaps/frombtc/ln/FromBTCLNWrapper.d.ts +110 -0
- package/dist/swaps/escrow_swaps/frombtc/ln/FromBTCLNWrapper.js +307 -0
- package/dist/swaps/escrow_swaps/frombtc/ln_auto/FromBTCLNAutoSwap.d.ts +236 -0
- package/dist/swaps/escrow_swaps/frombtc/ln_auto/FromBTCLNAutoSwap.js +898 -0
- package/dist/swaps/escrow_swaps/frombtc/ln_auto/FromBTCLNAutoWrapper.d.ts +125 -0
- package/dist/swaps/escrow_swaps/frombtc/ln_auto/FromBTCLNAutoWrapper.js +393 -0
- package/dist/swaps/escrow_swaps/frombtc/onchain/FromBTCSwap.d.ts +245 -0
- package/dist/swaps/escrow_swaps/frombtc/onchain/FromBTCSwap.js +841 -0
- package/dist/swaps/escrow_swaps/frombtc/onchain/FromBTCWrapper.d.ts +120 -0
- package/dist/swaps/escrow_swaps/frombtc/onchain/FromBTCWrapper.js +294 -0
- package/dist/swaps/escrow_swaps/tobtc/IToBTCSwap.d.ts +228 -0
- package/dist/swaps/escrow_swaps/tobtc/IToBTCSwap.js +721 -0
- package/dist/swaps/escrow_swaps/tobtc/IToBTCWrapper.d.ts +37 -0
- package/dist/swaps/escrow_swaps/tobtc/IToBTCWrapper.js +93 -0
- package/dist/swaps/escrow_swaps/tobtc/ln/ToBTCLNSwap.d.ts +86 -0
- package/dist/swaps/escrow_swaps/tobtc/ln/ToBTCLNSwap.js +213 -0
- package/dist/swaps/escrow_swaps/tobtc/ln/ToBTCLNWrapper.d.ts +170 -0
- package/dist/swaps/escrow_swaps/tobtc/ln/ToBTCLNWrapper.js +520 -0
- package/dist/swaps/escrow_swaps/tobtc/onchain/ToBTCSwap.d.ts +50 -0
- package/dist/swaps/escrow_swaps/tobtc/onchain/ToBTCSwap.js +109 -0
- package/dist/swaps/escrow_swaps/tobtc/onchain/ToBTCWrapper.d.ts +93 -0
- package/dist/swaps/escrow_swaps/tobtc/onchain/ToBTCWrapper.js +217 -0
- package/dist/swaps/spv_swaps/SpvFromBTCSwap.d.ts +315 -0
- package/dist/swaps/spv_swaps/SpvFromBTCSwap.js +1098 -0
- package/dist/swaps/spv_swaps/SpvFromBTCWrapper.d.ts +125 -0
- package/dist/swaps/spv_swaps/SpvFromBTCWrapper.js +631 -0
- package/dist/swaps/trusted/ln/LnForGasSwap.d.ts +107 -0
- package/dist/swaps/trusted/ln/LnForGasSwap.js +343 -0
- package/dist/swaps/trusted/ln/LnForGasWrapper.d.ts +21 -0
- package/dist/swaps/trusted/ln/LnForGasWrapper.js +62 -0
- package/dist/swaps/trusted/onchain/OnchainForGasSwap.d.ts +164 -0
- package/dist/swaps/trusted/onchain/OnchainForGasSwap.js +520 -0
- package/dist/swaps/trusted/onchain/OnchainForGasWrapper.d.ts +48 -0
- package/dist/swaps/trusted/onchain/OnchainForGasWrapper.js +74 -0
- package/dist/types/AmountData.d.ts +9 -0
- package/dist/types/AmountData.js +2 -0
- package/dist/types/CustomPriceFunction.d.ts +5 -0
- package/dist/types/CustomPriceFunction.js +2 -0
- package/dist/types/PriceInfoType.d.ts +28 -0
- package/dist/types/PriceInfoType.js +57 -0
- package/dist/types/SwapExecutionAction.d.ts +7 -0
- package/dist/types/SwapExecutionAction.js +2 -0
- package/dist/types/SwapWithSigner.d.ts +14 -0
- package/dist/types/SwapWithSigner.js +40 -0
- package/dist/types/Token.d.ts +53 -0
- package/dist/types/Token.js +58 -0
- package/dist/types/TokenAmount.d.ts +57 -0
- package/dist/types/TokenAmount.js +47 -0
- package/dist/types/fees/Fee.d.ts +49 -0
- package/dist/types/fees/Fee.js +2 -0
- package/dist/types/fees/FeeBreakdown.d.ts +10 -0
- package/dist/types/fees/FeeBreakdown.js +2 -0
- package/dist/types/fees/PercentagePPM.d.ts +15 -0
- package/dist/types/fees/PercentagePPM.js +17 -0
- package/dist/types/lnurl/LNURLPay.d.ts +54 -0
- package/dist/types/lnurl/LNURLPay.js +28 -0
- package/dist/types/lnurl/LNURLWithdraw.d.ts +42 -0
- package/dist/types/lnurl/LNURLWithdraw.js +24 -0
- package/dist/utils/AutomaticClockDriftCorrection.d.ts +1 -0
- package/dist/utils/AutomaticClockDriftCorrection.js +70 -0
- package/dist/utils/BitcoinUtils.d.ts +13 -0
- package/dist/utils/BitcoinUtils.js +98 -0
- package/dist/utils/BitcoinWalletUtils.d.ts +7 -0
- package/dist/utils/BitcoinWalletUtils.js +14 -0
- package/dist/utils/Logger.d.ts +7 -0
- package/dist/utils/Logger.js +12 -0
- package/dist/utils/RetryUtils.d.ts +21 -0
- package/dist/utils/RetryUtils.js +66 -0
- package/dist/utils/SwapUtils.d.ts +31 -0
- package/dist/utils/SwapUtils.js +18 -0
- package/dist/{Utils.d.ts → utils/TimeoutUtils.d.ts} +9 -3
- package/dist/utils/TimeoutUtils.js +55 -0
- package/dist/utils/TokenUtils.d.ts +11 -0
- package/dist/utils/TokenUtils.js +29 -0
- package/dist/utils/TypeUtils.d.ts +7 -0
- package/dist/utils/TypeUtils.js +2 -0
- package/dist/utils/Utils.d.ts +57 -0
- package/dist/utils/Utils.js +178 -0
- package/package.json +14 -6
- package/src/SmartChainAssets.ts +11 -3
- package/src/bitcoin/BitcoinRpcWithAddressIndex.ts +87 -0
- package/src/bitcoin/LightningNetworkApi.ts +16 -0
- package/src/bitcoin/coinselect2/accumulative.ts +68 -0
- package/src/bitcoin/coinselect2/blackjack.ts +49 -0
- package/src/bitcoin/coinselect2/index.ts +92 -0
- package/src/bitcoin/coinselect2/utils.ts +189 -0
- package/src/bitcoin/mempool/MempoolApi.ts +554 -0
- package/src/bitcoin/mempool/MempoolBitcoinBlock.ts +88 -0
- package/src/bitcoin/mempool/MempoolBitcoinRpc.ts +437 -0
- package/src/bitcoin/mempool/synchronizer/MempoolBtcRelaySynchronizer.ts +134 -0
- package/src/bitcoin/wallet/BitcoinWallet.ts +375 -0
- package/src/bitcoin/wallet/IBitcoinWallet.ts +44 -0
- package/src/bitcoin/wallet/MinimalBitcoinWalletInterface.ts +19 -0
- package/src/bitcoin/wallet/MinimalLightningNetworkWalletInterface.ts +7 -0
- package/src/bitcoin/wallet/SingleAddressBitcoinWallet.ts +108 -0
- package/src/enums/FeeType.ts +9 -0
- package/src/enums/SwapAmountType.ts +9 -0
- package/src/enums/SwapDirection.ts +9 -0
- package/src/enums/SwapType.ts +15 -0
- package/src/errors/IntermediaryError.ts +24 -0
- package/src/errors/PaymentAuthError.ts +26 -0
- package/src/errors/RequestError.ts +51 -0
- package/src/errors/UserError.ts +14 -0
- package/src/events/UnifiedSwapEventListener.ts +171 -0
- package/src/http/HttpUtils.ts +92 -0
- package/src/http/paramcoders/IParamReader.ts +10 -0
- package/src/http/paramcoders/ParamDecoder.ts +142 -0
- package/src/http/paramcoders/ParamEncoder.ts +37 -0
- package/src/http/paramcoders/SchemaVerifier.ts +153 -0
- package/src/http/paramcoders/client/ResponseParamDecoder.ts +58 -0
- package/src/http/paramcoders/client/StreamParamEncoder.ts +29 -0
- package/src/http/paramcoders/client/StreamingFetchPromise.ts +193 -0
- package/src/index.ts +102 -4
- package/src/intermediaries/Intermediary.ts +204 -0
- package/src/intermediaries/IntermediaryDiscovery.ts +485 -0
- package/src/intermediaries/apis/IntermediaryAPI.ts +940 -0
- package/src/intermediaries/apis/TrustedIntermediaryAPI.ts +257 -0
- package/src/lnurl/LNURL.ts +403 -0
- package/src/prices/RedundantSwapPrice.ts +245 -0
- package/src/prices/SingleSwapPrice.ts +47 -0
- package/src/prices/SwapPriceWithChain.ts +157 -0
- package/src/prices/abstract/ICachedSwapPrice.ts +86 -0
- package/src/prices/abstract/IPriceProvider.ts +128 -0
- package/src/prices/abstract/ISwapPrice.ts +328 -0
- package/src/prices/providers/BinancePriceProvider.ts +41 -0
- package/src/prices/providers/CoinGeckoPriceProvider.ts +40 -0
- package/src/prices/providers/CoinPaprikaPriceProvider.ts +44 -0
- package/src/prices/providers/CustomPriceProvider.ts +29 -0
- package/src/prices/providers/KrakenPriceProvider.ts +74 -0
- package/src/prices/providers/OKXPriceProvider.ts +53 -0
- package/src/prices/providers/abstract/ExchangePriceProvider.ts +29 -0
- package/src/prices/providers/abstract/HttpPriceProvider.ts +15 -0
- package/src/storage/IUnifiedStorage.ts +83 -0
- package/src/storage/UnifiedSwapStorage.ts +104 -0
- package/src/storage-browser/IndexedDBUnifiedStorage.ts +328 -0
- package/src/{storage → storage-browser}/LocalStorageManager.ts +2 -1
- package/src/swapper/Swapper.ts +2107 -0
- package/src/{SwapperFactory.ts → swapper/SwapperFactory.ts} +116 -75
- package/src/swapper/SwapperUtils.ts +510 -0
- package/src/swapper/SwapperWithChain.ts +464 -0
- package/src/swapper/SwapperWithSigner.ts +300 -0
- package/src/swaps/IAddressSwap.ts +20 -0
- package/src/swaps/IBTCWalletSwap.ts +77 -0
- package/src/swaps/IClaimableSwap.ts +30 -0
- package/src/swaps/IClaimableSwapWrapper.ts +9 -0
- package/src/swaps/IRefundableSwap.ts +29 -0
- package/src/swaps/ISwap.ts +490 -0
- package/src/swaps/ISwapWithGasDrop.ts +19 -0
- package/src/swaps/ISwapWrapper.ts +344 -0
- package/src/swaps/escrow_swaps/IEscrowSelfInitSwap.ts +168 -0
- package/src/swaps/escrow_swaps/IEscrowSwap.ts +197 -0
- package/src/swaps/escrow_swaps/IEscrowSwapWrapper.ts +210 -0
- package/src/swaps/escrow_swaps/frombtc/IFromBTCLNWrapper.ts +150 -0
- package/src/swaps/escrow_swaps/frombtc/IFromBTCSelfInitSwap.ts +219 -0
- package/src/swaps/escrow_swaps/frombtc/IFromBTCWrapper.ts +84 -0
- package/src/swaps/escrow_swaps/frombtc/ln/FromBTCLNSwap.ts +1082 -0
- package/src/swaps/escrow_swaps/frombtc/ln/FromBTCLNWrapper.ts +429 -0
- package/src/swaps/escrow_swaps/frombtc/ln_auto/FromBTCLNAutoSwap.ts +1078 -0
- package/src/swaps/escrow_swaps/frombtc/ln_auto/FromBTCLNAutoWrapper.ts +549 -0
- package/src/swaps/escrow_swaps/frombtc/onchain/FromBTCSwap.ts +974 -0
- package/src/swaps/escrow_swaps/frombtc/onchain/FromBTCWrapper.ts +443 -0
- package/src/swaps/escrow_swaps/tobtc/IToBTCSwap.ts +860 -0
- package/src/swaps/escrow_swaps/tobtc/IToBTCWrapper.ts +104 -0
- package/src/swaps/escrow_swaps/tobtc/ln/ToBTCLNSwap.ts +256 -0
- package/src/swaps/escrow_swaps/tobtc/ln/ToBTCLNWrapper.ts +716 -0
- package/src/swaps/escrow_swaps/tobtc/onchain/ToBTCSwap.ts +151 -0
- package/src/swaps/escrow_swaps/tobtc/onchain/ToBTCWrapper.ts +299 -0
- package/src/swaps/spv_swaps/SpvFromBTCSwap.ts +1394 -0
- package/src/swaps/spv_swaps/SpvFromBTCWrapper.ts +796 -0
- package/src/swaps/trusted/ln/LnForGasSwap.ts +402 -0
- package/src/swaps/trusted/ln/LnForGasWrapper.ts +70 -0
- package/src/swaps/trusted/onchain/OnchainForGasSwap.ts +633 -0
- package/src/swaps/trusted/onchain/OnchainForGasWrapper.ts +110 -0
- package/src/types/AmountData.ts +9 -0
- package/src/types/CustomPriceFunction.ts +5 -0
- package/src/types/PriceInfoType.ts +67 -0
- package/src/types/SwapExecutionAction.ts +8 -0
- package/src/types/SwapWithSigner.ts +57 -0
- package/src/types/Token.ts +90 -0
- package/src/types/TokenAmount.ts +110 -0
- package/src/types/fees/Fee.ts +55 -0
- package/src/types/fees/FeeBreakdown.ts +11 -0
- package/src/types/fees/PercentagePPM.ts +24 -0
- package/src/types/lnurl/LNURLPay.ts +72 -0
- package/src/types/lnurl/LNURLWithdraw.ts +55 -0
- package/src/utils/AutomaticClockDriftCorrection.ts +71 -0
- package/src/utils/BitcoinUtils.ts +86 -0
- package/src/utils/BitcoinWalletUtils.ts +16 -0
- package/src/utils/Logger.ts +15 -0
- package/src/utils/RetryUtils.ts +71 -0
- package/src/utils/SwapUtils.ts +38 -0
- package/src/utils/TimeoutUtils.ts +50 -0
- package/src/utils/TokenUtils.ts +25 -0
- package/src/utils/TypeUtils.ts +9 -0
- package/src/utils/Utils.ts +182 -0
- package/dist/SwapperFactory.d.ts +0 -52
- package/dist/Utils.js +0 -37
- package/dist/fs-storage/FileSystemStorageManager.d.ts +0 -15
- package/dist/fs-storage/FileSystemStorageManager.js +0 -60
- package/dist/fs-storage/index.d.ts +0 -1
- package/dist/fs-storage/index.js +0 -17
- package/src/SmartChainAssets.js +0 -75
- package/src/SwapperFactory.js +0 -120
- package/src/Utils.js +0 -37
- package/src/Utils.ts +0 -31
- package/src/fs-storage/FileSystemStorageManager.ts +0 -71
- package/src/fs-storage/index.ts +0 -1
- package/src/index.js +0 -21
- package/src/storage/LocalStorageManager.js +0 -72
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import { SwapType } from "../../../enums/SwapType";
|
|
2
|
+
import { ChainType } from "@atomiqlabs/base";
|
|
3
|
+
import { ISwap, ISwapInit } from "../../ISwap";
|
|
4
|
+
import { OnchainForGasSwapTypeDefinition, OnchainForGasWrapper } from "./OnchainForGasWrapper";
|
|
5
|
+
import { Fee } from "../../../types/fees/Fee";
|
|
6
|
+
import { IBitcoinWallet } from "../../../bitcoin/wallet/IBitcoinWallet";
|
|
7
|
+
import { IAddressSwap } from "../../IAddressSwap";
|
|
8
|
+
import { IBTCWalletSwap } from "../../IBTCWalletSwap";
|
|
9
|
+
import { Transaction } from "@scure/btc-signer";
|
|
10
|
+
import { MinimalBitcoinWalletInterface, MinimalBitcoinWalletInterfaceWithSigner } from "../../../bitcoin/wallet/MinimalBitcoinWalletInterface";
|
|
11
|
+
import { FeeType } from "../../../enums/FeeType";
|
|
12
|
+
import { TokenAmount } from "../../../types/TokenAmount";
|
|
13
|
+
import { BtcToken, SCToken } from "../../../types/Token";
|
|
14
|
+
import { LoggerType } from "../../../utils/Logger";
|
|
15
|
+
/**
|
|
16
|
+
* State enum for trusted on-chain gas swaps
|
|
17
|
+
* @category Swaps
|
|
18
|
+
*/
|
|
19
|
+
export declare enum OnchainForGasSwapState {
|
|
20
|
+
EXPIRED = -3,
|
|
21
|
+
FAILED = -2,
|
|
22
|
+
REFUNDED = -1,
|
|
23
|
+
PR_CREATED = 0,
|
|
24
|
+
FINISHED = 1,
|
|
25
|
+
REFUNDABLE = 2
|
|
26
|
+
}
|
|
27
|
+
export type OnchainForGasSwapInit = ISwapInit & {
|
|
28
|
+
paymentHash: string;
|
|
29
|
+
sequence: bigint;
|
|
30
|
+
address: string;
|
|
31
|
+
inputAmount: bigint;
|
|
32
|
+
outputAmount: bigint;
|
|
33
|
+
recipient: string;
|
|
34
|
+
token: string;
|
|
35
|
+
refundAddress?: string;
|
|
36
|
+
};
|
|
37
|
+
export declare function isOnchainForGasSwapInit(obj: any): obj is OnchainForGasSwapInit;
|
|
38
|
+
/**
|
|
39
|
+
* Trusted on-chain BTC to gas token swap
|
|
40
|
+
* @category Swaps
|
|
41
|
+
*/
|
|
42
|
+
export declare class OnchainForGasSwap<T extends ChainType = ChainType> extends ISwap<T, OnchainForGasSwapTypeDefinition<T>> implements IAddressSwap, IBTCWalletSwap {
|
|
43
|
+
getSmartChainNetworkFee: null;
|
|
44
|
+
protected readonly TYPE: SwapType;
|
|
45
|
+
protected readonly logger: LoggerType;
|
|
46
|
+
private readonly paymentHash;
|
|
47
|
+
private readonly sequence;
|
|
48
|
+
private readonly address;
|
|
49
|
+
private readonly recipient;
|
|
50
|
+
private readonly token;
|
|
51
|
+
private inputAmount;
|
|
52
|
+
private outputAmount;
|
|
53
|
+
private refundAddress?;
|
|
54
|
+
scTxId?: string;
|
|
55
|
+
txId?: string;
|
|
56
|
+
refundTxId?: string;
|
|
57
|
+
wrapper: OnchainForGasWrapper<T>;
|
|
58
|
+
constructor(wrapper: OnchainForGasWrapper<T>, init: OnchainForGasSwapInit);
|
|
59
|
+
constructor(wrapper: OnchainForGasWrapper<T>, obj: any);
|
|
60
|
+
protected upgradeVersion(): void;
|
|
61
|
+
/**
|
|
62
|
+
* In case swapFee in BTC is not supplied it recalculates it based on swap price
|
|
63
|
+
* @protected
|
|
64
|
+
*/
|
|
65
|
+
protected tryRecomputeSwapPrice(): void;
|
|
66
|
+
_getEscrowHash(): string;
|
|
67
|
+
getOutputAddress(): string | null;
|
|
68
|
+
getInputAddress(): string | null;
|
|
69
|
+
getInputTxId(): string | null;
|
|
70
|
+
getOutputTxId(): string | null;
|
|
71
|
+
getId(): string;
|
|
72
|
+
getAddress(): string;
|
|
73
|
+
getHyperlink(): string;
|
|
74
|
+
requiresAction(): boolean;
|
|
75
|
+
isFinished(): boolean;
|
|
76
|
+
isQuoteExpired(): boolean;
|
|
77
|
+
isQuoteSoftExpired(): boolean;
|
|
78
|
+
isFailed(): boolean;
|
|
79
|
+
isSuccessful(): boolean;
|
|
80
|
+
verifyQuoteValid(): Promise<boolean>;
|
|
81
|
+
protected getOutAmountWithoutFee(): bigint;
|
|
82
|
+
getOutputToken(): SCToken<T["ChainId"]>;
|
|
83
|
+
getOutput(): TokenAmount<T["ChainId"], SCToken<T["ChainId"]>>;
|
|
84
|
+
getInputToken(): BtcToken<false>;
|
|
85
|
+
getInput(): TokenAmount<T["ChainId"], BtcToken<false>>;
|
|
86
|
+
getInputWithoutFee(): TokenAmount<T["ChainId"], BtcToken<false>>;
|
|
87
|
+
protected getSwapFee(): Fee<T["ChainId"], BtcToken<false>, SCToken<T["ChainId"]>>;
|
|
88
|
+
getFee(): Fee<T["ChainId"], BtcToken<false>, SCToken<T["ChainId"]>>;
|
|
89
|
+
getFeeBreakdown(): [{
|
|
90
|
+
type: FeeType.SWAP;
|
|
91
|
+
fee: Fee<T["ChainId"], BtcToken<false>, SCToken<T["ChainId"]>>;
|
|
92
|
+
}];
|
|
93
|
+
getRequiredConfirmationsCount(): number;
|
|
94
|
+
/**
|
|
95
|
+
* Returns the PSBT that is already funded with wallet's UTXOs (runs a coin-selection algorithm to choose UTXOs to use),
|
|
96
|
+
* also returns inputs indices that need to be signed by the wallet before submitting the PSBT back to the SDK with
|
|
97
|
+
* `swap.submitPsbt()`
|
|
98
|
+
*
|
|
99
|
+
* @param _bitcoinWallet Sender's bitcoin wallet
|
|
100
|
+
* @param feeRate Optional fee rate for the transaction, needs to be at least as big as {minimumBtcFeeRate} field
|
|
101
|
+
* @param additionalOutputs additional outputs to add to the PSBT - can be used to collect fees from users
|
|
102
|
+
*/
|
|
103
|
+
getFundedPsbt(_bitcoinWallet: IBitcoinWallet | MinimalBitcoinWalletInterface, feeRate?: number, additionalOutputs?: ({
|
|
104
|
+
amount: bigint;
|
|
105
|
+
outputScript: Uint8Array;
|
|
106
|
+
} | {
|
|
107
|
+
amount: bigint;
|
|
108
|
+
address: string;
|
|
109
|
+
})[]): Promise<{
|
|
110
|
+
psbt: Transaction;
|
|
111
|
+
psbtHex: string;
|
|
112
|
+
psbtBase64: string;
|
|
113
|
+
signInputs: number[];
|
|
114
|
+
}>;
|
|
115
|
+
/**
|
|
116
|
+
* Submits a PSBT signed by the wallet back to the SDK
|
|
117
|
+
*
|
|
118
|
+
* @param _psbt A psbt - either a Transaction object or a hex or base64 encoded PSBT string
|
|
119
|
+
*/
|
|
120
|
+
submitPsbt(_psbt: Transaction | string): Promise<string>;
|
|
121
|
+
estimateBitcoinFee(_bitcoinWallet: IBitcoinWallet | MinimalBitcoinWalletInterface, feeRate?: number): Promise<TokenAmount<any, BtcToken<false>> | null>;
|
|
122
|
+
sendBitcoinTransaction(wallet: IBitcoinWallet | MinimalBitcoinWalletInterfaceWithSigner, feeRate?: number): Promise<string>;
|
|
123
|
+
txsExecute(options?: {
|
|
124
|
+
bitcoinWallet?: MinimalBitcoinWalletInterface;
|
|
125
|
+
}): Promise<{
|
|
126
|
+
name: "Payment";
|
|
127
|
+
description: string;
|
|
128
|
+
chain: string;
|
|
129
|
+
txs: ({
|
|
130
|
+
address: string;
|
|
131
|
+
amount: number;
|
|
132
|
+
hyperlink: string;
|
|
133
|
+
type: string;
|
|
134
|
+
} | {
|
|
135
|
+
type: string;
|
|
136
|
+
psbt: Transaction;
|
|
137
|
+
psbtHex: string;
|
|
138
|
+
psbtBase64: string;
|
|
139
|
+
signInputs: number[];
|
|
140
|
+
address?: undefined;
|
|
141
|
+
amount?: undefined;
|
|
142
|
+
hyperlink?: undefined;
|
|
143
|
+
})[];
|
|
144
|
+
}[]>;
|
|
145
|
+
protected checkAddress(save?: boolean): Promise<boolean | null>;
|
|
146
|
+
protected setRefundAddress(refundAddress: string): Promise<void>;
|
|
147
|
+
/**
|
|
148
|
+
* A blocking promise resolving when payment was received by the intermediary and client can continue
|
|
149
|
+
* rejecting in case of failure
|
|
150
|
+
*
|
|
151
|
+
* @param abortSignal Abort signal
|
|
152
|
+
* @param checkIntervalSeconds How often to poll the intermediary for answer
|
|
153
|
+
* @param updateCallback Callback called when txId is found, and also called with subsequent confirmations
|
|
154
|
+
* @throws {PaymentAuthError} If swap expired or failed
|
|
155
|
+
* @throws {Error} When in invalid state (not PR_CREATED)
|
|
156
|
+
*/
|
|
157
|
+
waitForBitcoinTransaction(updateCallback?: (txId?: string, confirmations?: number, targetConfirmations?: number, txEtaMs?: number) => void, checkIntervalSeconds?: number, abortSignal?: AbortSignal): Promise<string>;
|
|
158
|
+
waitTillRefunded(checkIntervalSeconds?: number, abortSignal?: AbortSignal): Promise<void>;
|
|
159
|
+
requestRefund(refundAddress?: string, abortSignal?: AbortSignal): Promise<void>;
|
|
160
|
+
serialize(): any;
|
|
161
|
+
_getInitiator(): string;
|
|
162
|
+
_sync(save?: boolean): Promise<boolean>;
|
|
163
|
+
_tick(save?: boolean): Promise<boolean>;
|
|
164
|
+
}
|
|
@@ -0,0 +1,520 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OnchainForGasSwap = exports.isOnchainForGasSwapInit = exports.OnchainForGasSwapState = void 0;
|
|
4
|
+
const SwapType_1 = require("../../../enums/SwapType");
|
|
5
|
+
const PaymentAuthError_1 = require("../../../errors/PaymentAuthError");
|
|
6
|
+
const Utils_1 = require("../../../utils/Utils");
|
|
7
|
+
const BitcoinUtils_1 = require("../../../utils/BitcoinUtils");
|
|
8
|
+
const ISwap_1 = require("../../ISwap");
|
|
9
|
+
const TrustedIntermediaryAPI_1 = require("../../../intermediaries/apis/TrustedIntermediaryAPI");
|
|
10
|
+
const IBitcoinWallet_1 = require("../../../bitcoin/wallet/IBitcoinWallet");
|
|
11
|
+
const btc_signer_1 = require("@scure/btc-signer");
|
|
12
|
+
const SingleAddressBitcoinWallet_1 = require("../../../bitcoin/wallet/SingleAddressBitcoinWallet");
|
|
13
|
+
const buffer_1 = require("buffer");
|
|
14
|
+
const FeeType_1 = require("../../../enums/FeeType");
|
|
15
|
+
const PercentagePPM_1 = require("../../../types/fees/PercentagePPM");
|
|
16
|
+
const TokenAmount_1 = require("../../../types/TokenAmount");
|
|
17
|
+
const Token_1 = require("../../../types/Token");
|
|
18
|
+
const Logger_1 = require("../../../utils/Logger");
|
|
19
|
+
const TimeoutUtils_1 = require("../../../utils/TimeoutUtils");
|
|
20
|
+
const BitcoinWalletUtils_1 = require("../../../utils/BitcoinWalletUtils");
|
|
21
|
+
/**
|
|
22
|
+
* State enum for trusted on-chain gas swaps
|
|
23
|
+
* @category Swaps
|
|
24
|
+
*/
|
|
25
|
+
var OnchainForGasSwapState;
|
|
26
|
+
(function (OnchainForGasSwapState) {
|
|
27
|
+
OnchainForGasSwapState[OnchainForGasSwapState["EXPIRED"] = -3] = "EXPIRED";
|
|
28
|
+
OnchainForGasSwapState[OnchainForGasSwapState["FAILED"] = -2] = "FAILED";
|
|
29
|
+
OnchainForGasSwapState[OnchainForGasSwapState["REFUNDED"] = -1] = "REFUNDED";
|
|
30
|
+
OnchainForGasSwapState[OnchainForGasSwapState["PR_CREATED"] = 0] = "PR_CREATED";
|
|
31
|
+
OnchainForGasSwapState[OnchainForGasSwapState["FINISHED"] = 1] = "FINISHED";
|
|
32
|
+
OnchainForGasSwapState[OnchainForGasSwapState["REFUNDABLE"] = 2] = "REFUNDABLE";
|
|
33
|
+
})(OnchainForGasSwapState = exports.OnchainForGasSwapState || (exports.OnchainForGasSwapState = {}));
|
|
34
|
+
function isOnchainForGasSwapInit(obj) {
|
|
35
|
+
return typeof (obj.paymentHash) === "string" &&
|
|
36
|
+
typeof (obj.sequence) === "bigint" &&
|
|
37
|
+
typeof (obj.address) === "string" &&
|
|
38
|
+
typeof (obj.inputAmount) === "bigint" &&
|
|
39
|
+
typeof (obj.outputAmount) === "bigint" &&
|
|
40
|
+
typeof (obj.recipient) === "string" &&
|
|
41
|
+
typeof (obj.token) === "string" &&
|
|
42
|
+
(obj.refundAddress == null || typeof (obj.refundAddress) === "string") &&
|
|
43
|
+
(0, ISwap_1.isISwapInit)(obj);
|
|
44
|
+
}
|
|
45
|
+
exports.isOnchainForGasSwapInit = isOnchainForGasSwapInit;
|
|
46
|
+
/**
|
|
47
|
+
* Trusted on-chain BTC to gas token swap
|
|
48
|
+
* @category Swaps
|
|
49
|
+
*/
|
|
50
|
+
class OnchainForGasSwap extends ISwap_1.ISwap {
|
|
51
|
+
constructor(wrapper, initOrObj) {
|
|
52
|
+
if (isOnchainForGasSwapInit(initOrObj) && initOrObj.url != null)
|
|
53
|
+
initOrObj.url += "/frombtc_trusted";
|
|
54
|
+
super(wrapper, initOrObj);
|
|
55
|
+
this.getSmartChainNetworkFee = null;
|
|
56
|
+
this.TYPE = SwapType_1.SwapType.TRUSTED_FROM_BTC;
|
|
57
|
+
this.wrapper = wrapper;
|
|
58
|
+
if (isOnchainForGasSwapInit(initOrObj)) {
|
|
59
|
+
this.paymentHash = initOrObj.paymentHash;
|
|
60
|
+
this.sequence = initOrObj.sequence;
|
|
61
|
+
this.address = initOrObj.address;
|
|
62
|
+
this.inputAmount = initOrObj.inputAmount;
|
|
63
|
+
this.outputAmount = initOrObj.outputAmount;
|
|
64
|
+
this.recipient = initOrObj.recipient;
|
|
65
|
+
this.token = initOrObj.token;
|
|
66
|
+
this.refundAddress = initOrObj.refundAddress;
|
|
67
|
+
this.state = OnchainForGasSwapState.PR_CREATED;
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
this.paymentHash = initOrObj.paymentHash;
|
|
71
|
+
this.sequence = (0, Utils_1.toBigInt)(initOrObj.sequence);
|
|
72
|
+
this.address = initOrObj.address;
|
|
73
|
+
this.inputAmount = (0, Utils_1.toBigInt)(initOrObj.inputAmount);
|
|
74
|
+
this.outputAmount = (0, Utils_1.toBigInt)(initOrObj.outputAmount);
|
|
75
|
+
this.recipient = initOrObj.recipient;
|
|
76
|
+
this.token = initOrObj.token;
|
|
77
|
+
this.refundAddress = initOrObj.refundAddress;
|
|
78
|
+
this.scTxId = initOrObj.scTxId;
|
|
79
|
+
this.txId = initOrObj.txId;
|
|
80
|
+
this.refundTxId = initOrObj.refundTxId;
|
|
81
|
+
}
|
|
82
|
+
this.logger = (0, Logger_1.getLogger)("OnchainForGas(" + this.getId() + "): ");
|
|
83
|
+
this.tryRecomputeSwapPrice();
|
|
84
|
+
}
|
|
85
|
+
upgradeVersion() {
|
|
86
|
+
if (this.version == null) {
|
|
87
|
+
//Noop
|
|
88
|
+
this.version = 1;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* In case swapFee in BTC is not supplied it recalculates it based on swap price
|
|
93
|
+
* @protected
|
|
94
|
+
*/
|
|
95
|
+
tryRecomputeSwapPrice() {
|
|
96
|
+
if (this.swapFeeBtc == null && this.swapFee != null) {
|
|
97
|
+
this.swapFeeBtc = this.swapFee * this.getInput().rawAmount / this.getOutAmountWithoutFee();
|
|
98
|
+
}
|
|
99
|
+
super.tryRecomputeSwapPrice();
|
|
100
|
+
}
|
|
101
|
+
//////////////////////////////
|
|
102
|
+
//// Getters & utils
|
|
103
|
+
_getEscrowHash() {
|
|
104
|
+
return this.paymentHash;
|
|
105
|
+
}
|
|
106
|
+
getOutputAddress() {
|
|
107
|
+
return this.recipient;
|
|
108
|
+
}
|
|
109
|
+
getInputAddress() {
|
|
110
|
+
//TODO: Fuck this, it's not used anyway
|
|
111
|
+
return null;
|
|
112
|
+
}
|
|
113
|
+
getInputTxId() {
|
|
114
|
+
return this.txId ?? null;
|
|
115
|
+
}
|
|
116
|
+
getOutputTxId() {
|
|
117
|
+
return this.scTxId ?? null;
|
|
118
|
+
}
|
|
119
|
+
getId() {
|
|
120
|
+
return this.paymentHash;
|
|
121
|
+
}
|
|
122
|
+
getAddress() {
|
|
123
|
+
return this.address;
|
|
124
|
+
}
|
|
125
|
+
getHyperlink() {
|
|
126
|
+
return "bitcoin:" + this.address + "?amount=" + encodeURIComponent((Number(this.inputAmount) / 100000000).toString(10));
|
|
127
|
+
}
|
|
128
|
+
requiresAction() {
|
|
129
|
+
return this.state === OnchainForGasSwapState.REFUNDABLE;
|
|
130
|
+
}
|
|
131
|
+
isFinished() {
|
|
132
|
+
return this.state === OnchainForGasSwapState.FINISHED || this.state === OnchainForGasSwapState.FAILED || this.state === OnchainForGasSwapState.EXPIRED || this.state === OnchainForGasSwapState.REFUNDED;
|
|
133
|
+
}
|
|
134
|
+
isQuoteExpired() {
|
|
135
|
+
return this.state === OnchainForGasSwapState.EXPIRED;
|
|
136
|
+
}
|
|
137
|
+
isQuoteSoftExpired() {
|
|
138
|
+
return this.expiry < Date.now();
|
|
139
|
+
}
|
|
140
|
+
isFailed() {
|
|
141
|
+
return this.state === OnchainForGasSwapState.FAILED;
|
|
142
|
+
}
|
|
143
|
+
isSuccessful() {
|
|
144
|
+
return this.state === OnchainForGasSwapState.FINISHED;
|
|
145
|
+
}
|
|
146
|
+
verifyQuoteValid() {
|
|
147
|
+
return Promise.resolve(this.expiry > Date.now());
|
|
148
|
+
}
|
|
149
|
+
//////////////////////////////
|
|
150
|
+
//// Amounts & fees
|
|
151
|
+
getOutAmountWithoutFee() {
|
|
152
|
+
return this.outputAmount + (this.swapFee ?? 0n);
|
|
153
|
+
}
|
|
154
|
+
getOutputToken() {
|
|
155
|
+
return this.wrapper.tokens[this.wrapper.chain.getNativeCurrencyAddress()];
|
|
156
|
+
}
|
|
157
|
+
getOutput() {
|
|
158
|
+
return (0, TokenAmount_1.toTokenAmount)(this.outputAmount, this.wrapper.tokens[this.wrapper.chain.getNativeCurrencyAddress()], this.wrapper.prices, this.pricingInfo);
|
|
159
|
+
}
|
|
160
|
+
getInputToken() {
|
|
161
|
+
return Token_1.BitcoinTokens.BTC;
|
|
162
|
+
}
|
|
163
|
+
getInput() {
|
|
164
|
+
return (0, TokenAmount_1.toTokenAmount)(this.inputAmount, Token_1.BitcoinTokens.BTC, this.wrapper.prices, this.pricingInfo);
|
|
165
|
+
}
|
|
166
|
+
getInputWithoutFee() {
|
|
167
|
+
return (0, TokenAmount_1.toTokenAmount)(this.inputAmount - (this.swapFeeBtc ?? 0n), Token_1.BitcoinTokens.BTC, this.wrapper.prices, this.pricingInfo);
|
|
168
|
+
}
|
|
169
|
+
getSwapFee() {
|
|
170
|
+
if (this.pricingInfo == null)
|
|
171
|
+
throw new Error("No pricing info known!");
|
|
172
|
+
const feeWithoutBaseFee = this.swapFeeBtc == null ? 0n : this.swapFeeBtc - this.pricingInfo.satsBaseFee;
|
|
173
|
+
const swapFeePPM = feeWithoutBaseFee * 1000000n / this.getInputWithoutFee().rawAmount;
|
|
174
|
+
const amountInSrcToken = (0, TokenAmount_1.toTokenAmount)(this.swapFeeBtc ?? 0n, Token_1.BitcoinTokens.BTC, this.wrapper.prices, this.pricingInfo);
|
|
175
|
+
return {
|
|
176
|
+
amountInSrcToken,
|
|
177
|
+
amountInDstToken: (0, TokenAmount_1.toTokenAmount)(this.swapFee ?? 0n, this.wrapper.tokens[this.wrapper.chain.getNativeCurrencyAddress()], this.wrapper.prices, this.pricingInfo),
|
|
178
|
+
currentUsdValue: amountInSrcToken.currentUsdValue,
|
|
179
|
+
usdValue: amountInSrcToken.usdValue,
|
|
180
|
+
pastUsdValue: amountInSrcToken.pastUsdValue,
|
|
181
|
+
composition: {
|
|
182
|
+
base: (0, TokenAmount_1.toTokenAmount)(this.pricingInfo.satsBaseFee, Token_1.BitcoinTokens.BTC, this.wrapper.prices, this.pricingInfo),
|
|
183
|
+
percentage: (0, PercentagePPM_1.ppmToPercentage)(swapFeePPM)
|
|
184
|
+
}
|
|
185
|
+
};
|
|
186
|
+
}
|
|
187
|
+
getFee() {
|
|
188
|
+
return this.getSwapFee();
|
|
189
|
+
}
|
|
190
|
+
getFeeBreakdown() {
|
|
191
|
+
return [{
|
|
192
|
+
type: FeeType_1.FeeType.SWAP,
|
|
193
|
+
fee: this.getSwapFee()
|
|
194
|
+
}];
|
|
195
|
+
}
|
|
196
|
+
getRequiredConfirmationsCount() {
|
|
197
|
+
return 1;
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Returns the PSBT that is already funded with wallet's UTXOs (runs a coin-selection algorithm to choose UTXOs to use),
|
|
201
|
+
* also returns inputs indices that need to be signed by the wallet before submitting the PSBT back to the SDK with
|
|
202
|
+
* `swap.submitPsbt()`
|
|
203
|
+
*
|
|
204
|
+
* @param _bitcoinWallet Sender's bitcoin wallet
|
|
205
|
+
* @param feeRate Optional fee rate for the transaction, needs to be at least as big as {minimumBtcFeeRate} field
|
|
206
|
+
* @param additionalOutputs additional outputs to add to the PSBT - can be used to collect fees from users
|
|
207
|
+
*/
|
|
208
|
+
async getFundedPsbt(_bitcoinWallet, feeRate, additionalOutputs) {
|
|
209
|
+
if (this.state !== OnchainForGasSwapState.PR_CREATED)
|
|
210
|
+
throw new Error("Swap already paid for!");
|
|
211
|
+
let bitcoinWallet;
|
|
212
|
+
if ((0, IBitcoinWallet_1.isIBitcoinWallet)(_bitcoinWallet)) {
|
|
213
|
+
bitcoinWallet = _bitcoinWallet;
|
|
214
|
+
}
|
|
215
|
+
else {
|
|
216
|
+
bitcoinWallet = new SingleAddressBitcoinWallet_1.SingleAddressBitcoinWallet(this.wrapper.btcRpc, this.wrapper.options.bitcoinNetwork, _bitcoinWallet);
|
|
217
|
+
}
|
|
218
|
+
//TODO: Maybe re-introduce fee rate check here if passed from the user
|
|
219
|
+
if (feeRate == null) {
|
|
220
|
+
feeRate = await bitcoinWallet.getFeeRate();
|
|
221
|
+
}
|
|
222
|
+
const basePsbt = new btc_signer_1.Transaction({
|
|
223
|
+
allowUnknownOutputs: true,
|
|
224
|
+
allowLegacyWitnessUtxo: true
|
|
225
|
+
});
|
|
226
|
+
basePsbt.addOutput({
|
|
227
|
+
amount: this.outputAmount,
|
|
228
|
+
script: (0, BitcoinUtils_1.toOutputScript)(this.wrapper.options.bitcoinNetwork, this.address)
|
|
229
|
+
});
|
|
230
|
+
if (additionalOutputs != null)
|
|
231
|
+
additionalOutputs.forEach(output => {
|
|
232
|
+
basePsbt.addOutput({
|
|
233
|
+
amount: output.amount,
|
|
234
|
+
script: output.outputScript ?? (0, BitcoinUtils_1.toOutputScript)(this.wrapper.options.bitcoinNetwork, output.address)
|
|
235
|
+
});
|
|
236
|
+
});
|
|
237
|
+
const psbt = await bitcoinWallet.fundPsbt(basePsbt, feeRate);
|
|
238
|
+
//Sign every input
|
|
239
|
+
const signInputs = [];
|
|
240
|
+
for (let i = 0; i < psbt.inputsLength; i++) {
|
|
241
|
+
signInputs.push(i);
|
|
242
|
+
}
|
|
243
|
+
const serializedPsbt = buffer_1.Buffer.from(psbt.toPSBT());
|
|
244
|
+
return {
|
|
245
|
+
psbt,
|
|
246
|
+
psbtHex: serializedPsbt.toString("hex"),
|
|
247
|
+
psbtBase64: serializedPsbt.toString("base64"),
|
|
248
|
+
signInputs
|
|
249
|
+
};
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* Submits a PSBT signed by the wallet back to the SDK
|
|
253
|
+
*
|
|
254
|
+
* @param _psbt A psbt - either a Transaction object or a hex or base64 encoded PSBT string
|
|
255
|
+
*/
|
|
256
|
+
async submitPsbt(_psbt) {
|
|
257
|
+
const psbt = (0, BitcoinUtils_1.parsePsbtTransaction)(_psbt);
|
|
258
|
+
if (this.state !== OnchainForGasSwapState.PR_CREATED)
|
|
259
|
+
throw new Error("Swap already paid for!");
|
|
260
|
+
//Ensure not expired
|
|
261
|
+
if (this.expiry < Date.now()) {
|
|
262
|
+
throw new Error("Swap expired!");
|
|
263
|
+
}
|
|
264
|
+
const output0 = psbt.getOutput(0);
|
|
265
|
+
if (output0.amount !== this.outputAmount)
|
|
266
|
+
throw new Error("PSBT output amount invalid, expected: " + this.outputAmount + " got: " + output0.amount);
|
|
267
|
+
const expectedOutputScript = (0, BitcoinUtils_1.toOutputScript)(this.wrapper.options.bitcoinNetwork, this.address);
|
|
268
|
+
if (output0.script == null || !expectedOutputScript.equals(output0.script))
|
|
269
|
+
throw new Error("PSBT output script invalid!");
|
|
270
|
+
if (!psbt.isFinal)
|
|
271
|
+
psbt.finalize();
|
|
272
|
+
return await this.wrapper.btcRpc.sendRawTransaction(buffer_1.Buffer.from(psbt.toBytes(true, true)).toString("hex"));
|
|
273
|
+
}
|
|
274
|
+
async estimateBitcoinFee(_bitcoinWallet, feeRate) {
|
|
275
|
+
const bitcoinWallet = (0, BitcoinWalletUtils_1.toBitcoinWallet)(_bitcoinWallet, this.wrapper.btcRpc, this.wrapper.options.bitcoinNetwork);
|
|
276
|
+
const txFee = await bitcoinWallet.getTransactionFee(this.address, this.inputAmount, feeRate);
|
|
277
|
+
if (txFee == null)
|
|
278
|
+
return null;
|
|
279
|
+
return (0, TokenAmount_1.toTokenAmount)(BigInt(txFee), Token_1.BitcoinTokens.BTC, this.wrapper.prices, this.pricingInfo);
|
|
280
|
+
}
|
|
281
|
+
async sendBitcoinTransaction(wallet, feeRate) {
|
|
282
|
+
if (this.state !== OnchainForGasSwapState.PR_CREATED)
|
|
283
|
+
throw new Error("Swap already paid for!");
|
|
284
|
+
//Ensure not expired
|
|
285
|
+
if (this.expiry < Date.now()) {
|
|
286
|
+
throw new Error("Swap expired!");
|
|
287
|
+
}
|
|
288
|
+
if ((0, IBitcoinWallet_1.isIBitcoinWallet)(wallet)) {
|
|
289
|
+
return await wallet.sendTransaction(this.address, this.inputAmount, feeRate);
|
|
290
|
+
}
|
|
291
|
+
else {
|
|
292
|
+
const { psbt, psbtHex, psbtBase64, signInputs } = await this.getFundedPsbt(wallet, feeRate);
|
|
293
|
+
const signedPsbt = await wallet.signPsbt({
|
|
294
|
+
psbt, psbtHex, psbtBase64
|
|
295
|
+
}, signInputs);
|
|
296
|
+
return await this.submitPsbt(signedPsbt);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
async txsExecute(options) {
|
|
300
|
+
if (this.state === OnchainForGasSwapState.PR_CREATED) {
|
|
301
|
+
if (!await this.verifyQuoteValid())
|
|
302
|
+
throw new Error("Quote already expired or close to expiry!");
|
|
303
|
+
return [
|
|
304
|
+
{
|
|
305
|
+
name: "Payment",
|
|
306
|
+
description: "Send funds to the bitcoin swap address",
|
|
307
|
+
chain: "BITCOIN",
|
|
308
|
+
txs: [
|
|
309
|
+
options?.bitcoinWallet == null ? {
|
|
310
|
+
address: this.address,
|
|
311
|
+
amount: Number(this.inputAmount),
|
|
312
|
+
hyperlink: this.getHyperlink(),
|
|
313
|
+
type: "ADDRESS"
|
|
314
|
+
} : {
|
|
315
|
+
...await this.getFundedPsbt(options.bitcoinWallet),
|
|
316
|
+
type: "FUNDED_PSBT"
|
|
317
|
+
}
|
|
318
|
+
]
|
|
319
|
+
}
|
|
320
|
+
];
|
|
321
|
+
}
|
|
322
|
+
throw new Error("Invalid swap state to obtain execution txns, required PR_CREATED or CLAIM_COMMITED");
|
|
323
|
+
}
|
|
324
|
+
//////////////////////////////
|
|
325
|
+
//// Payment
|
|
326
|
+
async checkAddress(save = true) {
|
|
327
|
+
if (this.state === OnchainForGasSwapState.FAILED ||
|
|
328
|
+
this.state === OnchainForGasSwapState.EXPIRED ||
|
|
329
|
+
this.state === OnchainForGasSwapState.REFUNDED)
|
|
330
|
+
return false;
|
|
331
|
+
if (this.state === OnchainForGasSwapState.FINISHED)
|
|
332
|
+
return false;
|
|
333
|
+
if (this.url == null)
|
|
334
|
+
return false;
|
|
335
|
+
const response = await TrustedIntermediaryAPI_1.TrustedIntermediaryAPI.getAddressStatus(this.url, this.paymentHash, this.sequence, this.wrapper.options.getRequestTimeout);
|
|
336
|
+
switch (response.code) {
|
|
337
|
+
case TrustedIntermediaryAPI_1.AddressStatusResponseCodes.AWAIT_PAYMENT:
|
|
338
|
+
if (this.txId != null) {
|
|
339
|
+
this.txId = undefined;
|
|
340
|
+
if (save)
|
|
341
|
+
await this._save();
|
|
342
|
+
return true;
|
|
343
|
+
}
|
|
344
|
+
return false;
|
|
345
|
+
case TrustedIntermediaryAPI_1.AddressStatusResponseCodes.AWAIT_CONFIRMATION:
|
|
346
|
+
case TrustedIntermediaryAPI_1.AddressStatusResponseCodes.PENDING:
|
|
347
|
+
case TrustedIntermediaryAPI_1.AddressStatusResponseCodes.TX_SENT:
|
|
348
|
+
const inputAmount = BigInt(response.data.adjustedAmount);
|
|
349
|
+
const outputAmount = BigInt(response.data.adjustedTotal);
|
|
350
|
+
const adjustedFee = response.data.adjustedFee == null ? null : BigInt(response.data.adjustedFee);
|
|
351
|
+
const adjustedFeeSats = response.data.adjustedFeeSats == null ? null : BigInt(response.data.adjustedFeeSats);
|
|
352
|
+
const txId = response.data.txId;
|
|
353
|
+
if (this.txId != txId ||
|
|
354
|
+
this.inputAmount !== inputAmount ||
|
|
355
|
+
this.outputAmount !== outputAmount) {
|
|
356
|
+
this.txId = txId;
|
|
357
|
+
this.inputAmount = inputAmount;
|
|
358
|
+
this.outputAmount = outputAmount;
|
|
359
|
+
if (adjustedFee != null)
|
|
360
|
+
this.swapFee = adjustedFee;
|
|
361
|
+
if (adjustedFeeSats != null)
|
|
362
|
+
this.swapFeeBtc = adjustedFeeSats;
|
|
363
|
+
if (save)
|
|
364
|
+
await this._save();
|
|
365
|
+
return true;
|
|
366
|
+
}
|
|
367
|
+
return false;
|
|
368
|
+
case TrustedIntermediaryAPI_1.AddressStatusResponseCodes.PAID:
|
|
369
|
+
const txStatus = await this.wrapper.chain.getTxIdStatus(response.data.txId);
|
|
370
|
+
if (txStatus === "success") {
|
|
371
|
+
this.state = OnchainForGasSwapState.FINISHED;
|
|
372
|
+
this.scTxId = response.data.txId;
|
|
373
|
+
if (save)
|
|
374
|
+
await this._saveAndEmit();
|
|
375
|
+
return true;
|
|
376
|
+
}
|
|
377
|
+
return false;
|
|
378
|
+
case TrustedIntermediaryAPI_1.AddressStatusResponseCodes.EXPIRED:
|
|
379
|
+
this.state = OnchainForGasSwapState.EXPIRED;
|
|
380
|
+
if (save)
|
|
381
|
+
await this._saveAndEmit();
|
|
382
|
+
return true;
|
|
383
|
+
case TrustedIntermediaryAPI_1.AddressStatusResponseCodes.REFUNDABLE:
|
|
384
|
+
if (this.state === OnchainForGasSwapState.REFUNDABLE)
|
|
385
|
+
return null;
|
|
386
|
+
this.state = OnchainForGasSwapState.REFUNDABLE;
|
|
387
|
+
if (save)
|
|
388
|
+
await this._saveAndEmit();
|
|
389
|
+
return true;
|
|
390
|
+
case TrustedIntermediaryAPI_1.AddressStatusResponseCodes.REFUNDED:
|
|
391
|
+
this.state = OnchainForGasSwapState.REFUNDED;
|
|
392
|
+
this.refundTxId = response.data.txId;
|
|
393
|
+
if (save)
|
|
394
|
+
await this._saveAndEmit();
|
|
395
|
+
return true;
|
|
396
|
+
default:
|
|
397
|
+
this.state = OnchainForGasSwapState.FAILED;
|
|
398
|
+
if (save)
|
|
399
|
+
await this._saveAndEmit();
|
|
400
|
+
return true;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
async setRefundAddress(refundAddress) {
|
|
404
|
+
if (this.refundAddress != null) {
|
|
405
|
+
if (this.refundAddress !== refundAddress)
|
|
406
|
+
throw new Error("Different refund address already set!");
|
|
407
|
+
return;
|
|
408
|
+
}
|
|
409
|
+
if (this.url == null)
|
|
410
|
+
throw new Error("LP URL not known, cannot set refund address!");
|
|
411
|
+
await TrustedIntermediaryAPI_1.TrustedIntermediaryAPI.setRefundAddress(this.url, this.paymentHash, this.sequence, refundAddress, this.wrapper.options.getRequestTimeout);
|
|
412
|
+
this.refundAddress = refundAddress;
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* A blocking promise resolving when payment was received by the intermediary and client can continue
|
|
416
|
+
* rejecting in case of failure
|
|
417
|
+
*
|
|
418
|
+
* @param abortSignal Abort signal
|
|
419
|
+
* @param checkIntervalSeconds How often to poll the intermediary for answer
|
|
420
|
+
* @param updateCallback Callback called when txId is found, and also called with subsequent confirmations
|
|
421
|
+
* @throws {PaymentAuthError} If swap expired or failed
|
|
422
|
+
* @throws {Error} When in invalid state (not PR_CREATED)
|
|
423
|
+
*/
|
|
424
|
+
async waitForBitcoinTransaction(updateCallback, checkIntervalSeconds = 5, abortSignal) {
|
|
425
|
+
if (this.state !== OnchainForGasSwapState.PR_CREATED)
|
|
426
|
+
throw new Error("Must be in PR_CREATED state!");
|
|
427
|
+
if (!this.initiated) {
|
|
428
|
+
this.initiated = true;
|
|
429
|
+
await this._saveAndEmit();
|
|
430
|
+
}
|
|
431
|
+
while (!abortSignal?.aborted &&
|
|
432
|
+
this.state === OnchainForGasSwapState.PR_CREATED) {
|
|
433
|
+
await this.checkAddress(true);
|
|
434
|
+
if (this.txId != null && updateCallback != null) {
|
|
435
|
+
const res = await this.wrapper.btcRpc.getTransaction(this.txId);
|
|
436
|
+
if (res == null) {
|
|
437
|
+
updateCallback();
|
|
438
|
+
}
|
|
439
|
+
else if (res.confirmations != null && res.confirmations > 0) {
|
|
440
|
+
updateCallback(res.txid, res.confirmations, 1, 0);
|
|
441
|
+
}
|
|
442
|
+
else {
|
|
443
|
+
const delay = await this.wrapper.btcRpc.getConfirmationDelay(res, 1);
|
|
444
|
+
updateCallback(res.txid, 0, 1, delay ?? undefined);
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
if (this.state === OnchainForGasSwapState.PR_CREATED)
|
|
448
|
+
await (0, TimeoutUtils_1.timeoutPromise)(checkIntervalSeconds * 1000, abortSignal);
|
|
449
|
+
}
|
|
450
|
+
if (this.state === OnchainForGasSwapState.REFUNDABLE ||
|
|
451
|
+
this.state === OnchainForGasSwapState.REFUNDED)
|
|
452
|
+
return this.txId;
|
|
453
|
+
if (this.isQuoteExpired())
|
|
454
|
+
throw new PaymentAuthError_1.PaymentAuthError("Swap expired");
|
|
455
|
+
if (this.isFailed())
|
|
456
|
+
throw new PaymentAuthError_1.PaymentAuthError("Swap failed");
|
|
457
|
+
return this.txId;
|
|
458
|
+
}
|
|
459
|
+
async waitTillRefunded(checkIntervalSeconds, abortSignal) {
|
|
460
|
+
checkIntervalSeconds ??= 5;
|
|
461
|
+
if (this.state === OnchainForGasSwapState.REFUNDED)
|
|
462
|
+
return;
|
|
463
|
+
if (this.state !== OnchainForGasSwapState.REFUNDABLE)
|
|
464
|
+
throw new Error("Must be in REFUNDABLE state!");
|
|
465
|
+
while (!abortSignal?.aborted &&
|
|
466
|
+
this.state === OnchainForGasSwapState.REFUNDABLE) {
|
|
467
|
+
await this.checkAddress(true);
|
|
468
|
+
if (this.state === OnchainForGasSwapState.REFUNDABLE)
|
|
469
|
+
await (0, TimeoutUtils_1.timeoutPromise)(checkIntervalSeconds * 1000, abortSignal);
|
|
470
|
+
}
|
|
471
|
+
if (this.isQuoteExpired())
|
|
472
|
+
throw new PaymentAuthError_1.PaymentAuthError("Swap expired");
|
|
473
|
+
if (this.isFailed())
|
|
474
|
+
throw new PaymentAuthError_1.PaymentAuthError("Swap failed");
|
|
475
|
+
}
|
|
476
|
+
async requestRefund(refundAddress, abortSignal) {
|
|
477
|
+
if (refundAddress != null)
|
|
478
|
+
await this.setRefundAddress(refundAddress);
|
|
479
|
+
await this.waitTillRefunded(undefined, abortSignal);
|
|
480
|
+
}
|
|
481
|
+
//////////////////////////////
|
|
482
|
+
//// Storage
|
|
483
|
+
serialize() {
|
|
484
|
+
return {
|
|
485
|
+
...super.serialize(),
|
|
486
|
+
paymentHash: this.paymentHash,
|
|
487
|
+
sequence: this.sequence == null ? null : this.sequence.toString(10),
|
|
488
|
+
address: this.address,
|
|
489
|
+
inputAmount: this.inputAmount == null ? null : this.inputAmount.toString(10),
|
|
490
|
+
outputAmount: this.outputAmount == null ? null : this.outputAmount.toString(10),
|
|
491
|
+
recipient: this.recipient,
|
|
492
|
+
token: this.token,
|
|
493
|
+
refundAddress: this.refundAddress,
|
|
494
|
+
scTxId: this.scTxId,
|
|
495
|
+
txId: this.txId,
|
|
496
|
+
refundTxId: this.refundTxId,
|
|
497
|
+
};
|
|
498
|
+
}
|
|
499
|
+
_getInitiator() {
|
|
500
|
+
return this.recipient;
|
|
501
|
+
}
|
|
502
|
+
//////////////////////////////
|
|
503
|
+
//// Swap ticks & sync
|
|
504
|
+
async _sync(save) {
|
|
505
|
+
if (this.state === OnchainForGasSwapState.PR_CREATED) {
|
|
506
|
+
//Check if it's maybe already paid
|
|
507
|
+
const result = await this.checkAddress(false);
|
|
508
|
+
if (result) {
|
|
509
|
+
if (save)
|
|
510
|
+
await this._saveAndEmit();
|
|
511
|
+
return true;
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
return false;
|
|
515
|
+
}
|
|
516
|
+
_tick(save) {
|
|
517
|
+
return Promise.resolve(false);
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
exports.OnchainForGasSwap = OnchainForGasSwap;
|