npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dlc-btc-lib

v2.6.9

Published

This library provides a comprehensive set of interfaces and functions for minting dlcBTC tokens on supported blockchains.

Downloads

295

Readme

dlc-btc-lib

dlc-btc-lib is a comprehensive library for interacting with DLC.Link smart contracts and the Bitcoin blockchain. It includes functions for creating valid Partially Signed Bitcoin Transactions, handling setup, deposit, and withdrawal interactions, and interfacing with Attestors. This library provides all the essential tools and utilities for seamless blockchain and smart contract interactions.

Fee Rate Calculation

The transaction fee rate is calculated by taking the maximum value among three metrics from the Bitcoin blockchain:

  • Average fee rate from the last two blocks /api/v1/mining/blocks/fee-rates/24h
  • Current mempool block's median fee rate /api/v1/fees/mempool-blocks
  • Recommended "fastest" fee rate by API /api/v1/fees/recommended

Each metric is adjusted by an optional multiplier (defaults to 1.0) and the final result is rounded up to the nearest whole number. For regtest environments, a fixed fee rate of 2 is used.

Proof of Reserve Calculation

The Proof of Reserve system verifies and calculates the total value of Bitcoin deposits across all vaults. This is handled by the ProofOfReserveHandler class which:

  1. Takes a list of vaults and verifies each vault's deposit by:

    • Checking for valid transaction IDs (either funding or withdraw-deposit)
    • Fetching the transaction from the Bitcoin blockchain
    • Verifying the transaction has sufficient confirmations
    • For transactions with insufficient confirmations that represent deposit-more or withdraw transactions (those spending a previous vault UTXO), the system returns the value of the input corresponding to the vault's multisig address
    • For confirmed transactions, the system identifies and returns the value of the output matching the vault's multisig script
  2. Aggregates the verified deposit values to determine the total Bitcoin reserves

The handler requires:

  • Bitcoin blockchain API endpoint for transaction lookups
  • Bitcoin network object (mainnet/testnet/regtest)
  • Extended public key of the attestor group for validating vault payments

Example usage:

import { RawVault } from './models/ethereum-models';
import { testnet } from 'bitcoinjs-lib/src/networks.js';
import { ProofOfReserveHandler } from './proof-of-reserve-handlers/proof-of-reserve-handler';

const vaults: RawVault[] = [...];

const extendedAttestorGroupPublicKey = 'tpubDDRekL64eJJav32TLhNhG59qra7wAMaei8YMGXNiJE8ksdYrKgvaFM1XG6JrSt31W97XryScrX37RUEujjZT4qScNf8Zu1JxWj4VYkwz4rU';
const bitcoinBlockchainAPI = 'https://testnet.dlc.link/electrs';
const bitcoinNetwork = testnet;

// Instantiate the Proof of Reserve handler
const proofOfReserveHandler = new ProofOfReserveHandler(bitcoinBlockchainAPI, bitcoinNetwork, extendedAttestorGroupPublicKey);

// Function to calculate and verify reserves
async function calculateAndVerifyReserves() {
  try {
    const totalReservesInSats = await proofOfReserveHandler.calculateProofOfReserve(vaults);
    console.log(`Total reserves in satoshis: ${totalReservesInSats}`);
  } catch (error) {
    console.error('Error calculating reserves:', error);
  }
}