$ cnpm install @radar/htlc
A library used to construct and interact with HTLCs across multiple networks & network models
npm install @radar/htlc
yarn add @radar/htlc
import { HTLC, UTXO } from '@radar/htlc';
const htlc = HTLC.construct(Network.BITCOIN, BitcoinSubnet.SIMNET, {
paymentHash: 'fba6da3ff596b9c6fabe67d4f728474697640ef6edd9e361c2a46be345112839',
claimerPublicKey: '0286ab3b59ce3862515b01c8a282edb6011b4eb50c608ab298bfd70f6033f7bc65',
refundAddress: 'sb1qxnqqm56ta40p3uhtsmtdxglhwuxjk3tul94mq0',
timelock: {
type: UTXO.LockType.ABSOLUTE,
blockHeight: 597732,
},
});
import { HTLC, UTXO } from '@radar/htlc';
const htlc = HTLC.construct(Network.BITCOIN, BitcoinSubnet.SIMNET, {
paymentHash: 'fba6da3ff596b9c6fabe67d4f728474697640ef6edd9e361c2a46be345112839',
claimerPublicKey: '0286ab3b59ce3862515b01c8a282edb6011b4eb50c608ab298bfd70f6033f7bc65',
refundAddress: 'sb1qxnqqm56ta40p3uhtsmtdxglhwuxjk3tul94mq0',
timelock: {
type: UTXO.LockType.RELATIVE,
blockBuffer: 50,
},
});
import { HTLC } from '@radar/htlc';
const htlc = HTLC.construct(
Network.BITCOIN,
BitcoinSubnet.SIMNET,
'76a914c15949a2e2a414b5c641f32c4c2ee07be644e165876375210398c9a44bed9f59c6041a574602aab0af6a08f3f0fb847fd9a167f7afd71b8d256776a9145c86f3f039e4b4f0bd46780dcc73e45db404068387640114b2687576a9143f1857b3db895b4d481a46e5a0129cb2b04781c88868ac',
);
Get the HTLC details:
const { details } = htlc;
Get the redeem script:
const { redeemScript } = htlc;
Generate the fund transaction. You can now broadcast it using sendrawtransaction
:
const fundTxHex = htlc.fund(utxos, fundingAmount, privateKey);
Generate the claim transaction. You can now broadcast it using sendrawtransaction
:
const claimTxHex = htlc.claim(
utxos,
destinationAddress,
currentBlockHeight,
feeTokensPerVirtualByte,
paymentSecret,
privateKey,
);
Generate the refund transaction. You can now broadcast it using sendrawtransaction
:
const refundTxHex = htlc.refund(
utxos,
destinationAddress,
currentBlockHeight,
feeTokensPerVirtualByte,
privateKey,
);
For working examples, view the Absolute or Relative Timelock Bitcoin HTLC tests.
import { HTLC } from '@radar/htlc';
const htlc = HTLC.construct(Network.ETHEREUM, EthereumSubnet.GANACHE_SIMNET, {
orderUUID,
provider: web3.currentProvider,
assetType: EVM.AssetType.ETHER,
});
import { HTLC } from '@radar/htlc';
const htlc = HTLC.construct(Network.ETHEREUM, EthereumSubnet.GANACHE_SIMNET, {
orderUUID,
provider: web3.currentProvider,
tokenContractAddress,
assetType: EVM.AssetType.ERC20,
});
Get the deployed HTLC contract instance:
const { contract } = htlc;
Generate, sign, and broadcast the fund transaction using the passed provider:
const txReceipt = await htlc.fund(details);
Generate, and optionally send, the swap funding transaction with admin refund functionality enabled:
const txReceipt = await htlc.fundWithAdminRefundEnabled(details);
Generate and broadcast the claim transaction using the passed provider:
const txReceipt = await htlc.claim(paymentSecret);
Generate and broadcast the admin refund transaction using the passed provider:
const txReceipt = await htlc.adminRefund(refundPreimage);
Generate and broadcast the refund transaction using the passed provider:
const txReceipt = await htlc.refund();
Want to pass in additional tx params? Pass all desired tx params as the last argument:
const txReceipt = await htlc.refund(true, {
gas: 200000,
});
Don't want to sign and broadcast the transaction? Set shouldBroadcast
to false to return the unsigned transaction. You can now broadcast it using eth_sendTransaction
:
const unsignedTx = await htlc.refund(false);
For working examples, view the Ether or ERC20 Ethereum HTLC tests.
import { HTLC } from '@radar/htlc';
const htlc = HTLC.construct(Network.STELLAR, StellarSubnet.TESTNET, {
secret: 'SCHMRGINH4CDPUPKBEQZTFZHNRSZKC3NYEFMSUYNDKA4OQK3ZA7JT7C6',
});
Build, sign, and broadcast a transaction (envelope) to create an escrow account (escrowPubKey):
await htlc.create();
Build the fundEnvelope
and refundEnvelope
for the user:
const fundEnvelope = await htlc.fund(
userPubKey,
fundAmount,
paymentHash,
);
const refundEnvelope = await htlc.refund(
userPubKey,
timelockInSeconds,
);
Once the user funds, pay the invoice to get the payment secret. Use the payment secret to claim the funds. Once broadcast, the escrow account gets merged into the server account. Swap Complete.
await htlc.claim(paymentSecret);
For a working example, view the Stellar HTLC tests.
docker-compose up -d
yarn test
Subnets should be named SIMNET
, TESTNET
, or MAINNET
if there is only one instance of the subnet type. If there are two or more instances of a single subnet type (multiple testnets, etc.) then the naming convention should be SUBNETNAME_SUBNETTYPE
. e.g. KOVAN_TESTNET
.
Copyright 2014 - 2016 © taobao.org |