/** * Generate a swap redeem script * * @param preimageHash hash of the preimage of the swap * @param claimPublicKey public key of the keypair needed for claiming * @param refundPublicKey public key of the keypair needed for refunding * @param timeoutBlockHeight at what block the HTLC should time out * * @returns redeem script */ declare const swapScript: (preimageHash: Uint8Array, claimPublicKey: Uint8Array, refundPublicKey: Uint8Array, timeoutBlockHeight: number) => Uint8Array; export default swapScript; //# sourceMappingURL=SwapScript.d.ts.map