@atomiqlabs/sdk
Version:
atomiq labs SDK for cross-chain swaps between smart chains and bitcoin
10 lines (9 loc) • 328 B
TypeScript
/**
* A type with minimum possible required functionality to be usable with lightning network swaps, i.e.
* a function to pay bolt11 lightning network invoices.
*
* @category Lightning
*/
export type MinimalLightningNetworkWalletInterface = {
payInvoice: (bolt11PaymentRequest: string) => Promise<string>;
};