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

@wankmi/wankmi

v0.1.3

Published

Reactive React hooks for building Solana dApps

Readme

wankmi 🟢

Reactive React hooks for building Solana dApps.

npm version license TypeScript

Wallets, balances, tokens, transactions — all the hooks you need, none of the boilerplate. Built from scratch for Solana's account model. Not an Ethereum port.


Install

npm install @wankmi/wankmi
# or
pnpm add @wankmi/wankmi
# or
yarn add @wankmi/wankmi

Quick start

Wrap your app with WankmiProvider:

import { WankmiProvider } from '@wankmi/wankmi'
import { PhantomAdapter } from '@wankmi/wankmi/adapters'

const config = {
  network: 'mainnet-beta',
  wallets: [new PhantomAdapter()],
  autoConnect: true,
}

function App() {
  return (
    <WankmiProvider config={config}>
      <YourApp />
    </WankmiProvider>
  )
}

Then use hooks anywhere in your tree:

import { useWallet, useSolBalance } from '@wankmi/wankmi'

function Dashboard() {
  const { publicKey, connected, connect } = useWallet()
  const { data: balance } = useSolBalance({ watch: true })

  if (!connected) {
    return <button onClick={connect}>Connect Wallet</button>
  }

  return (
    <div>
      <p>{publicKey?.toBase58()}</p>
      <p>{balance?.formatted}</p>
    </div>
  )
}

Hooks

Core

| Hook | Description | |---|---| | useWallet() | Wallet connection state, publicKey, connect/disconnect | | useConnection() | The active Connection instance |

Balances & Tokens

| Hook | Description | |---|---| | useSolBalance(options) | SOL balance, optionally reactive via WebSocket | | useTokenAccounts(options) | All SPL token accounts for an address | | useMint(options) | Mint info (decimals, supply, authorities) |

Transactions

| Hook | Description | |---|---| | useSendTransaction() | Build, sign, send and confirm transactions | | useSignMessage() | Sign arbitrary messages (e.g. SIWS auth) |


API Reference

useWallet()

const {
  wallet,           // WalletAdapter | null
  wallets,          // WalletAdapter[]
  publicKey,        // PublicKey | null
  connected,        // boolean
  connecting,       // boolean
  disconnecting,    // boolean
  select,           // (name: string) => void
  connect,          // () => Promise<void>
  disconnect,       // () => Promise<void>
  signTransaction,  // WalletAdapter['signTransaction'] | null
  signAllTransactions,
  signMessage,
} = useWallet()

useSolBalance(options)

const { data, isLoading, isError, refetch } = useSolBalance({
  address?: PublicKey | string,  // defaults to connected wallet
  watch?: boolean,               // WebSocket subscription (default: false)
  refetchInterval?: number,
  enabled?: boolean,
})

// data: { lamports: bigint, sol: number, formatted: string }

useTokenAccounts(options)

const { data, isLoading } = useTokenAccounts({
  address?: PublicKey | string,
  mint?: PublicKey | string,     // filter to a specific mint
  enabled?: boolean,
})

// data: TokenAccount[]
// TokenAccount: { mint, address, amount, decimals, uiAmount, formatted }

useMint(options)

const { data } = useMint({
  mint: PublicKey | string,
})

// data: { address, decimals, supply, mintAuthority, freezeAuthority, isInitialized }

useSendTransaction()

const { sendTransaction, status, signature, isLoading, error, reset } = useSendTransaction()

// status: 'idle' | 'signing' | 'sending' | 'confirming' | 'confirmed' | 'error'

const { signature } = await sendTransaction(transaction, {
  skipPreflight?: boolean,
  preflightCommitment?: 'processed' | 'confirmed' | 'finalized',
  maxRetries?: number,
})

useSignMessage()

const { signMessage, result, isLoading } = useSignMessage()

const { signature, signatureBase58 } = await signMessage('Sign in to my dApp')

Wallet Adapters

import { PhantomAdapter, BackpackAdapter, SolflareAdapter } from '@wankmi/wankmi/adapters'

WankmiProvider Config

interface WankmiConfig {
  network: 'mainnet-beta' | 'devnet' | 'testnet' | 'localnet'
  endpoint?: string | { http: string; ws?: string }  // custom RPC
  wallets: WalletAdapter[]
  autoConnect?: boolean      // default: false
  staleTime?: number         // TanStack Query stale time, default: 30_000ms
  commitment?: 'processed' | 'confirmed' | 'finalized'  // default: 'confirmed'
}

License

MIT