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

@signordev/arc-onboard

v0.1.1

Published

Guided onboarding wizard for Circle dev-controlled wallets on Arc Testnet and other Circle-supported testnets.

Readme

Arc Onboard

npm version License: MIT CI CodeQL PRs Welcome

A guided wizard that takes a brand-new developer from "I have a Circle API key" to a funded dev-controlled wallet on Arc Testnet, ready to send transfers in one tab, with no copy-paste from the docs.

Open source under MIT. Issues, suggestions, and pull requests are welcome — see CONTRIBUTING.md.

┌─────────────────────────────────────────────────┐
│  1. Disclaimer       6. Create wallet           │
│  2. API key          7. Fund + verify           │
│  3. Entity secret    8. First transfer          │
│  4. Register         9. Export .env             │
│  5. Wallet set                                  │
└─────────────────────────────────────────────────┘

Why

The Circle dev-controlled wallets quickstart asks a first-time dev to juggle:

  • generating + encrypting an entity secret,
  • registering the ciphertext,
  • saving a recovery file (which is the only path back if they lose the secret),
  • creating a wallet set,
  • creating a wallet,
  • funding it from the faucet,
  • and finally sending a transfer.

That is too many context switches between docs, a terminal, and Circle Console. This wizard collapses all of it into a single guided flow with a Swagger-style request inspector so you see exactly what is sent to Circle.

Quickstart

Two ways to run it. Both keep your credentials entirely on your machine — they only travel from your browser to your own localhost server, which then talks to Circle. No third-party server ever sees them. Same security posture as prisma studio or vercel dev.

Option A — npx (no install)

npx @signordev/arc-onboard

Spawns a local server on a random 127.0.0.1 port and opens your browser. Requires Node.js 20+.

Option B — clone and run

git clone https://github.com/Signor1/arc-onboard.git
cd arc-onboard
pnpm install
pnpm dev

Open http://localhost:3000. Use this if you want hot-reload, want to read the code, or want to fork it.

Optional: hosted "deep-link checklist" mode

If you ever deploy this app behind NEXT_PUBLIC_ARC_ONBOARD_MODE=hosted, the wizard switches to a smart checklist that never proxies your credentials. Sensitive operations are handed off to console.circle.com via deep-links; the wizard generates your entity secret in the browser and walks you through pasting it into Circle's own UI. This is opt-in only — the default cloned setup is the local-server flow above.

NEXT_PUBLIC_ARC_ONBOARD_MODE=hosted pnpm dev

| Step | Local mode (default) | Hosted mode | | ------------------------ | ---------------------------------- | ---------------------------------------- | | Generate entity secret | Browser (crypto.getRandomValues) | Browser (crypto.getRandomValues) | | Register entity secret | Localhost API → Circle | User pastes into Circle Console | | Create wallet set/wallet | Localhost API → Circle | User creates in Circle Console | | Recovery file | Auto-downloaded | Saved from Circle Console | | Trust required | Your own machine | Just Circle (we never see your key) |

Security model

  • The app never writes credentials to disk.
  • API key + entity secret live in React state only, closing the tab clears them.
  • The request inspector redacts apiKey (first 12 chars only) and entitySecret ([redacted]) in its log, so screenshots don't leak.
  • Recovery file is generated by Circle and forced as a browser download you save yourself.
  • The .env export is a download; it is never POSTed back to the server.

If you are evaluating whether to trust this code, the request flow is small enough to read end-to-end:

  • src/app/api/*/route.ts — every server entry point. They construct a fresh SDK client per request and discard credentials when the response is sent.
  • src/lib/circle.ts — the only place credentials touch the SDK.
  • src/lib/api-client.ts — the only place the browser calls our server.

Scripts

| Script | What it does | | ---------------- | --------------------------------------------------------------------- | | pnpm dev | Dev server with hot reload (port 3000) — primary path | | pnpm build | Production build | | pnpm start | Start a built app on port 3000 (requires prior pnpm build) | | pnpm typecheck | Strict tsc --noEmit |

Stack

  • Next.js 15 (App Router) + React 19
  • Tailwind CSS + shadcn-style primitives
  • TanStack Query for server state
  • Zustand for wizard state
  • @circle-fin/developer-controlled-wallets SDK on the server

Status

Initial release covers Arc Testnet and the EVM testnets supported by Circle's faucet, plus Solana Devnet. Mainnet is not exposed by the wizard on purpose — onboard there once you've validated your flow on testnet.

Contributing

Arc Onboard is community-maintained. Anyone can:

  • File a bug or feature request → open an issue.
  • Improve the code → fork, branch off main, open a pull request.
  • Improve the docs → same flow; small docs PRs are very welcome.

Read CONTRIBUTING.md for development setup, project layout, PR conventions, and the security-disclosure flow. The main branch is protected — every change lands via PR review, including from the maintainer.

License

MIT · Built by SignorDev