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

accounts

v0.5.4

Published

Tempo Accounts SDK

Readme


Quick Prompt

Prompt your agent:

Read docs.tempo.xyz/accounts and integrate Tempo Wallet into my application

Install

npm i accounts
pnpm i accounts
bun i accounts

Documentation

For documentation and guides, visit docs.tempo.xyz/accounts.

Getting Help

Have questions or building something cool with the Accounts SDK?

Join the Telegram group to chat with the team and other devs: @mpp_devs

Examples

| Example | Description | | ----------------------------------------------------------------------- | --------------------------------------------------------------------------------- | | basic | Wagmi-based setup using the tempoWallet connector to connect to Tempo Wallets. | | cli | Minimal CLI setup to connect and authorize local keys using Tempo Wallets. | | domain-bound-webauthn | Domain-bound passkey example using Wagmi and the webAuthn connector. | | with-access-key | Authorize access keys using Tempo Wallets to submit transactions without prompts. | | with-access-key-and-webauthn | Authorize access keys using domain-bound Passkeys. | | with-fee-payer | Sponsor transactions via Tempo Wallets. | | with-fee-payer-and-webauthn | Sponsor transactions using a Cloudflare Worker with domain-bound Passkeys. |

Development

pnpm dev              # start dialog + dialog-ref + web playground dev servers
pnpm dev:cli          # start the CLI playground client
pnpm dev:dialog       # start Tempo Wallet dialog only
pnpm dev:dialog-ref   # start reference dialog implementation only (port 5174)
pnpm dev:playground   # start web playground only
pnpm dev:hosts        # start dialog + web playground instances on different TLDs
pnpm build            # build library
pnpm check            # lint + format
pnpm check:types      # type checks
pnpm test             # run tests

pnpm dev:hosts starts three dev servers on different domains for cross-origin testing:

  • https://app.moderato.tempo.local:3001
  • https://playground.a:5173
  • https://playground.b:5175

Playgrounds

| Playground | Command | Description | | ---------------------------- | ---------------- | -------------------------------------------- | | web | pnpm dev | Web playground for dialog + adapter testing. | | wagmi | pnpm dev:wagmi | Wagmi-based playground with connectors. | | cli | pnpm dev:cli | CLI playground for device-code auth flow. |

Reference Implementations

The ref-impls/ directory contains reference implementations for building on the Account SDK:

| Directory | Description | | --------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ref-impls/dialog/ | Minimal, unstyled embed dialog app demonstrating how to build a custom embed using the Remote API. Select dialogRefImpl in the web playground's adapter dropdown to test against it. | | ref-impls/cli-auth/ | Minimal React + Cloudflare/Vite host reference for device-code CLI auth: built-in code-auth endpoints plus a single unstyled approval screen and local smoke client. |

License