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

@bsv/amountinator

v2.1.0

Published

Currency amount conversion

Readme

@bsv/amountinator

npm version npm downloads

Currency amount conversion and display for BSV wallet UIs. Convert between satoshis, BSV, and fiat currencies (USD, EUR, GBP, JPY, and more) using live exchange rates, and format amounts for human-readable display with proper thousands separators, currency symbols, and adaptive precision.

Install

npm install @bsv/amountinator

Peer dependencies: @bsv/sdk, @bsv/wallet-toolbox-client.

Quick start

import { CurrencyConverter, formatAmountWithCurrency } from '@bsv/amountinator'

const converter = new CurrencyConverter()
await converter.initialize()

// User's preferred currency from wallet settings (e.g. 'USD', 'EUR', 'BSV', 'SATS').
const preferred = converter.preferredCurrency

// Convert 50,000 satoshis to the user's preferred currency.
const amount = await converter.convertSatoshisToCurrency(50_000, preferred)

const { formattedAmount } = formatAmountWithCurrency(amount, preferred)
console.log(formattedAmount) // e.g. "$0.04"

Use cases

Display a transaction value in the user's preferred currency

const converter = new CurrencyConverter()
await converter.initialize()

const value = await converter.convertSatoshisToCurrency(txOutput.satoshis, converter.preferredCurrency)
const { formattedAmount, hoverText } = formatAmountWithCurrency(value, converter.preferredCurrency)
// `hoverText` is set for very small amounts (e.g. "< $0.01" / "$0.001").

Accept fiat input, send satoshis

const sats = await converter.convertCurrencyToSatoshis(9.99, 'USD')
// pass `sats` to a wallet action / payment output

Format with custom separators

formatAmountWithCurrency(1234567.89, 'BSV', { useUnderscores: true })
// { formattedAmount: '1_234_567.89 BSV' }

Live-refreshing prices in a dashboard

const converter = new CurrencyConverter(60_000) // refresh every 60s
await converter.initialize()
// converter.exchangeRates is kept up-to-date by an internal timer
// call converter.dispose() to stop the timer on unmount

API

| Export | Purpose | |--------|---------| | CurrencyConverter | Fetches exchange rates, reads the wallet's preferred currency, and converts between satoshis and fiat | | formatAmountWithCurrency(amount, currency, options?) | Formats a number with currency symbol, thousands separators, and adaptive precision; returns { formattedAmount, hoverText? } |

Supported currencies: BSV, SATS, USD, EUR, GBP, JPY, CNY, INR, AUD, CAD, CHF, HKD, SGD, NZD, SEK, NOK, MXN.

License

Open BSV License — see LICENSE.txt.