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/btms-permission-module-ui

v1.0.0

Published

React/MUI UI components for BTMS Permission Module

Readme

BTMS Permission Module UI

React/MUI UI components for BTMS token spending authorization.

Overview

This package provides ready-to-use React components with Material-UI styling for the BTMS Permission Module. It works in conjunction with @bsv/btms-permission-module (core package).

Target Audience

This UI package is for wallet developers integrating BTMS token support into BRC-100 wallets via BRC-98/99 hooks, using React/MUI for prompts.

Related Docs

Installation

npm install @bsv/btms-permission-module-ui

Peer Dependencies

npm install react @mui/material @mui/icons-material

Usage

Basic Setup

import { useTokenSpendPrompt } from '@bsv/btms-permission-module-ui'
import { BasicTokenModule } from '@bsv/btms-permission-module'

// Setup the UI hook
const { promptUser, PromptComponent } = useTokenSpendPrompt()

// Create the permission module with the prompt function
const basicTokenModule = new BasicTokenModule(promptUser)

// Render the component
return (
  <>
    {children}
    <PromptComponent />
  </>
)

With Focus Management (Desktop Apps)

import { useTokenSpendPrompt, type FocusHandlers } from '@bsv/btms-permission-module-ui'

const { isFocused, onFocusRequested, onFocusRelinquished } = useContext(UserContext)

const { promptUser, PromptComponent } = useTokenSpendPrompt({
  isFocused,
  onFocusRequested,
  onFocusRelinquished
})

API

useTokenSpendPrompt(focusHandlers?: FocusHandlers)

React hook for managing token usage prompts.

Parameters:

  • focusHandlers (optional): Window focus management functions
    • isFocused: () => Promise<boolean>
    • onFocusRequested: () => Promise<void>
    • onFocusRelinquished: () => Promise<void>

Returns:

  • promptUser: (app: string, message: string) => Promise<boolean> - Function to show prompt
  • PromptComponent: React.ComponentType - Component to render

TokenAccessPrompt

The underlying dialog component (exported as default).

Props:

  • app: string - Application name requesting permission
  • message: string - JSON-encoded token spend information
  • onAllow: () => void - Callback when user approves
  • onDeny: () => void - Callback when user denies

Custom UI Implementation

If you don't want to use MUI, you can implement your own UI by creating a custom prompt function:

import { BasicTokenModule } from '@bsv/btms-permission-module'

const customPrompt = async (app: string, message: string): Promise<boolean> => {
  const spendInfo = JSON.parse(message)
  
  // Show your custom UI (Vue, Angular, vanilla JS, etc.)
  const result = await showMyCustomDialog({
    app,
    tokenName: spendInfo.tokenName,
    amount: spendInfo.sendAmount,
    assetId: spendInfo.assetId
  })
  
  return result // true = approved, false = denied
}

const basicTokenModule = new BasicTokenModule(customPrompt)

Message Format

The message parameter contains JSON with:

{
  type: 'btms_spend',
  sendAmount: number,
  tokenName: string,
  assetId: string,
  recipient?: string,
  iconURL?: string,
  changeAmount: number,
  totalInputAmount: number
}

Components

TokenAccessPrompt

Displays a Material-UI dialog with:

  • Token icon and name
  • Application requesting permission
  • Send amount and recipient
  • Change amount
  • Total input amount
  • Approve/Deny buttons

Styling

The component uses Material-UI's theming system. Customize by wrapping your app in a ThemeProvider:

import { ThemeProvider, createTheme } from '@mui/material'

const theme = createTheme({
  // Your theme customization
})

<ThemeProvider theme={theme}>
  <App />
</ThemeProvider>

License

Open BSV