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

@monkeymask/wallet-standard

v0.2.2

Published

Banano Wallet Standard types, SIWB, and protocol for MonkeyMask

Readme

@monkeymask/wallet-standard

Banano Wallet Standard types, protocol helpers, and Sign In With Banano (SIWB) for MonkeyMask.

Framework-agnostic and safe to import on the server (SIWB verify, codecs, URI parsing).

Install

npm install @monkeymask/wallet-standard

Optional peer (only needed for client-side signing helpers that call bananojs):

npm install @bananocoin/bananojs

What's included

| Module | Purpose | |--------|---------| | chains | banano: chain identifiers | | features | Wallet Standard feature + operation types (send, mint, transfer, …) | | protocol | Request/response envelope for extension messaging | | siwb | Build and verify SIWB sign-in messages | | nft / nftScan | NFT representative codecs and ledger scan helpers | | representatives | Representative list helpers | | uri | ban: payment URI build/parse, BAN ↔ raw conversion | | errors | Standard error codes (4001 = user rejected) |

SIWB (server)

import {
  createSignInMessageText,
  deserializeSignInOutput,
  verifySignIn,
  generateNonce,
} from '@monkeymask/wallet-standard';
import bananojs from '@bananocoin/bananojs';

// 1. Issue a nonce (store it durably — e.g. Convex, Redis, DB).
const input = {
  domain: 'yourdapp.com',
  address: 'ban_1…',
  nonce: generateNonce(),
  issuedAt: new Date().toISOString(),
};
const message = createSignInMessageText(input);

// 2. Wallet signs via banano:signIn; POST { input, output } to your API.
const output = deserializeSignInOutput(rawOutput);
const valid = verifySignIn(input, output, bananojs.BananoUtil, {
  expectedDomain: 'yourdapp.com',
});

Payment URIs

import {
  buildBananoUri,
  parseBananoUri,
  banToRaw,
  rawToBan,
} from '@monkeymask/wallet-standard';

const uri = buildBananoUri({ address: 'ban_1…', amount: '1.5' });
// ban:ban_1…?amount=1.5

const req = parseBananoUri(uri);

Docs

Full integration guide (features, transaction intents, NFT ops, error handling):

Related packages

License

See the monkeymask repository.