UNPKG

@atomiqlabs/sdk

Version:

atomiq labs SDK for cross-chain swaps between smart chains and bitcoin

173 lines (159 loc) 7.21 kB
import {ChainType, LightningNetworkApi, LNNodeLiquidity, SwapData} from "@atomiqlabs/base"; import {IFromBTCDefinition, IFromBTCWrapper} from "./IFromBTCWrapper"; import {ISwapWrapperOptions, WrapperCtorTokens} from "../../ISwapWrapper"; import {UnifiedSwapStorage} from "../../../storage/UnifiedSwapStorage"; import {UnifiedSwapEventListener} from "../../../events/UnifiedSwapEventListener"; import {ISwapPrice} from "../../../prices/abstract/ISwapPrice"; import {EventEmitter} from "events"; import {Buffer} from "buffer"; import {randomBytes} from "../../../utils/Utils"; import {Intermediary} from "../../../intermediaries/Intermediary"; import {PaymentRequestObject, TagsObject} from "@atomiqlabs/bolt11"; import {IntermediaryError} from "../../../errors/IntermediaryError"; import {LNURL} from "../../../lnurl/LNURL"; import {UserError} from "../../../errors/UserError"; import { sha256 } from "@noble/hashes/sha256"; import {IEscrowSwap} from "../IEscrowSwap"; import {LNURLWithdrawParamsWithUrl} from "../../../types/lnurl/LNURLWithdraw"; import {IntermediaryAPI} from "../../../intermediaries/apis/IntermediaryAPI"; export type IFromBTCLNDefinition<T extends ChainType, W extends IFromBTCLNWrapper<T, any>, S extends IEscrowSwap<T>> = IFromBTCDefinition<T, W, S>; /** * Base class for wrappers of escrow-based Lightning -> Smart chain swaps * * @category Swaps/Abstract */ export abstract class IFromBTCLNWrapper< T extends ChainType, D extends IFromBTCLNDefinition<T, IFromBTCLNWrapper<T, D>, IEscrowSwap<T, D>>, O extends ISwapWrapperOptions = ISwapWrapperOptions > extends IFromBTCWrapper<T, D, O> { /** * @internal */ protected readonly lnApi: LightningNetworkApi; /** * @param chainIdentifier * @param unifiedStorage Storage interface for the current environment * @param unifiedChainEvents On-chain event listener * @param chain * @param prices Swap pricing handler * @param tokens * @param versionedContracts * @param lnApi * @param lpApi * @param options * @param events Instance to use for emitting events */ constructor( chainIdentifier: string, unifiedStorage: UnifiedSwapStorage<T>, unifiedChainEvents: UnifiedSwapEventListener<T>, chain: T["ChainInterface"], prices: ISwapPrice, tokens: WrapperCtorTokens, versionedContracts: { [version: string]: { swapContract: T["Contract"], swapDataConstructor: new (data: any) => T["Data"] } }, lnApi: LightningNetworkApi, lpApi: IntermediaryAPI, options: O, events?: EventEmitter<{swapState: [IEscrowSwap]}> ) { super(chainIdentifier, unifiedStorage, unifiedChainEvents, chain, prices, tokens, lpApi, options, versionedContracts, events); this.lnApi = lnApi; } /** * Generates a new 32-byte secret to be used as pre-image for lightning network invoice & HTLC swap * * @returns Hash pre-image & payment hash * * @internal */ protected getSecretAndHash(): {secret: Buffer, paymentHash: Buffer} { const secret = randomBytes(32); const paymentHash = Buffer.from(sha256(secret)); return {secret, paymentHash}; } /** * Pre-fetches intermediary's LN node capacity, doesn't throw, instead returns null * * @param pubkeyPromise Promise that resolves when we receive "lnPublicKey" param from the intermediary through * streaming * * @returns LN Node liquidity * * @internal */ protected preFetchLnCapacity(pubkeyPromise: Promise<string | null>): Promise<LNNodeLiquidity | null> { return pubkeyPromise.then(pubkey => { if(pubkey==null) return null; return this.lnApi.getLNNodeLiquidity(pubkey) }).catch(e => { this.logger.warn("preFetchLnCapacity(): Error: ", e); return null; }) } /** * Verifies whether the intermediary's lightning node has enough inbound capacity to receive the LN payment * * @param lp Intermediary * @param decodedPr Decoded bolt11 lightning network invoice * @param lnCapacityPrefetchPromise Pre-fetch for LN node capacity, preFetchLnCapacity() * @param abortSignal Abort signal * * @throws {IntermediaryError} if the lightning network node doesn't have enough inbound liquidity * @throws {Error} if the lightning network node's inbound liquidity might be enough, but the swap would * deplete more than half of the liquidity * * @internal */ protected async verifyLnNodeCapacity( lp: Intermediary, decodedPr: PaymentRequestObject & {tagsObject: TagsObject}, lnCapacityPrefetchPromise?: Promise<LNNodeLiquidity | null>, abortSignal?: AbortSignal ): Promise<void> { if(decodedPr.payeeNodeKey==null) throw new Error("Unable to extract payee pubkey from the swap invoice!"); if(decodedPr.millisatoshis==null) throw new Error("Swap invoice doesn't contains msat amount field!"); const _result = await lnCapacityPrefetchPromise ?? await this.lnApi.getLNNodeLiquidity(decodedPr.payeeNodeKey); if(_result===null) throw new IntermediaryError("LP's lightning node not found in the lightning network graph!"); if(abortSignal!=null) abortSignal.throwIfAborted(); lp.lnData = _result; if(decodedPr.payeeNodeKey!==_result.publicKey) throw new IntermediaryError("Invalid pr returned - payee pubkey"); const amountIn = (BigInt(decodedPr.millisatoshis) + 999n) / 1000n; if(_result.capacity < amountIn) throw new IntermediaryError("LP's lightning node doesn't have enough inbound capacity for the swap!"); if((_result.capacity / 2n) < amountIn) throw new Error("LP's lightning node probably doesn't have enough inbound capacity for the swap!"); } /** * Parses and fetches lnurl withdraw params from the specified lnurl * * @param lnurl LNURL to be parsed and fetched * @param abortSignal Abort signal * * @throws {UserError} if the LNURL is invalid or if it's not a LNURL-withdraw * * @internal */ protected async getLNURLWithdraw(lnurl: string | LNURLWithdrawParamsWithUrl, abortSignal: AbortSignal): Promise<LNURLWithdrawParamsWithUrl> { if(typeof(lnurl)!=="string") return lnurl; const res = await LNURL.getLNURL(lnurl, true, this._options.getRequestTimeout, abortSignal); if(res==null) throw new UserError("Invalid LNURL"); if(res.tag!=="withdrawRequest") throw new UserError("Not a LNURL-withdrawal"); return res; } /** * Returns the swap expiry, leaving enough time for the user to claim the HTLC * * @param data Parsed swap data * * @internal */ _getHtlcTimeout(data: SwapData): bigint { return data.getExpiry() - 600n; } }