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

solana-stablecoin-tui

v0.1.1

Published

Interactive terminal UI for Solana Stablecoin Standard admin operations

Readme

SSS Admin TUI

Interactive terminal dashboard for Solana Stablecoin Standard monitoring and operations.


Screenshot

┌──────────────────────────────────────────────────────────────────────┐
│ ⬡ SSS Admin TUI  │  ● devnet  │  Mint: 6NMdvU…  │  q quit Tab ops  │
├─── Total Supply ──┬─── Total Minted ─┬── Total Burned ──┬─ Status ──┤
│                   │                  │                  │           │
│   1,000,000.00    │   1,200,000.00   │    200,000.00    │ ● ACTIVE  │
│                   │                  │                  │  SSS-2    │
│                   │                  │                  │ 45 holders│
├───── Supply History ────────────────────────┬─── Operations ────────┤
│  Minted ━━━━━╲    Burned ━━━━━━             │  ⬡  Mint Tokens      │
│              ╲━━━━━━━━━━━                   │  🔥 Burn Tokens      │
│  ━━━━━━━━━━━╱                               │  ⏸  Pause / Unpause  │
│           ╱                  ━━━━━━━━━━━━   │  ➕ Add Minter       │
│  ━━━━━━━╱━━━━━━━━━━╱                        │  ➖ Remove Minter    │
│                                             │  🧊 Freeze Account   │
│  t-9  t-8  t-7  t-6  t-5  t-4  t-3  t-2    │  🔓 Thaw Account     │
│                                             │  📋 View Holders     │
│                                             │  🔄 Refresh Data     │
├───── Event Log ─────────────────────────────┼─── Top Holders ──────┤
│ [12:34:05] SSS Admin TUI starting...        │ Address    Balance   │
│ [12:34:05] Cluster: devnet                  │ 6NMdvU…   500,000   │
│ [12:34:06] Connected to mint account        │ C6psRv…   300,000   │
│ [12:34:06] Found 45 token accounts          │ 8SXvCh…   100,000   │
│ [12:34:06] Data refreshed ✓                 │ HesSdr…    50,000   │
│ [12:34:06] Subscribed to account changes    │ GvDMxP…    25,000   │
├─── Wallet: 6NMdvU… │ Balance: 4.2 SOL │ Block: 285,432,100 ──────┤
└──────────────────────────────────────────────────────────────────────┘

Features

  • Real-time Dashboard: Supply stats, holder count, pause status
  • Operations Panel: Mint, burn, pause, freeze, thaw — all from the terminal
  • Event Log: Live event stream with timestamps
  • Supply Chart: Visual mint/burn history over time
  • Top Holders Table: Largest token accounts
  • Auto-refresh: Data refreshes every 30 seconds + WebSocket subscription
  • Keyboard Navigation: Tab for operations, r for refresh, q to quit

Usage

cd tui
npm install
npx tsx src/index.ts --cluster devnet --mint 6NMdvUa2n4WSLPx9yz7V9edFx9VQqWr5KUDZQGPK3GDL

npm Package Status

  • Package name: solana-stablecoin-tui
  • Local version: 0.1.1
  • npm status (2026-03-14): not yet published

After publish, usage will be:

npm i -g solana-stablecoin-tui
sss-tui --cluster devnet --mint <MINT_ADDRESS>

or without global install:

npx solana-stablecoin-tui --cluster devnet --mint <MINT_ADDRESS>

See root publishing guide: docs/PUBLISHING.md

Options

| Flag | Description | Default | |------|-------------|---------| | --cluster | devnet, mainnet, or localnet | devnet | | --mint | Stablecoin mint address | none | | --wallet | Path to wallet keypair JSON | ~/.config/solana/id.json |

Keyboard Shortcuts

| Key | Action | |-----|--------| | Tab | Focus operations panel | | r | Refresh all data | | / | Navigate operations | | Enter | Execute selected operation | | q / Ctrl+C | Quit |

Architecture

tui/
├── src/
│   └── index.ts     # Main TUI app (blessed + blessed-contrib)
├── package.json
├── tsconfig.json
└── README.md

The TUI connects directly to Solana RPC (no backend needed) and reads on-chain state using the same program IDL as the SDK. Operations prompt for confirmation before submitting transactions.