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

@speciehq/widget

v0.1.0

Published

Embeddable USDC checkout widget for Arc

Readme

@speciehq/widget

Embeddable USDC checkout for Arc.

npm install @speciehq/widget
import { SpecieCheckout } from "@speciehq/widget";

<SpecieCheckout
  paymentId={payment.id}
  baseUrl="https://checkout.example.com"
  onSuccess={(p) => router.push(`/thanks?id=${p.id}`)}
/>

Why there is no amount prop

Creating a payment requires the secret API key. A widget that accepted an amount would either need that key in the browser — where anyone could read it and issue payments against your account — or let the payer choose what to pay.

So your server creates the payment with @speciehq/sdk and passes the resulting id to the widget. The amount is fixed server-side and the payer cannot alter it. This is the same split as Stripe's PaymentIntent.

The payment id is a 256-bit random value and is safe to expose to the payer; it grants nothing except the ability to see and pay that one payment.

Styling

The widget renders inside a shadow root with its own stylesheet, so your CSS cannot break it and its CSS cannot leak into your page. It follows the system light or dark preference and needs no build step, CSS import, or bundler plugin.

Props

| Prop | | | |---|---|---| | paymentId | required | From payments.create on your server | | baseUrl | | Origin of your Specie deployment | | pollIntervalMs | 4000 | How often status is refreshed | | onStatusChange | | Called on every status transition | | onSuccess | | Called once when the payment is fully paid |

onSuccess is a UI convenience, not proof of payment. Fulfil orders from the payment.confirmed webhook, which is signed and comes from your server. A browser callback can be forged by anyone with devtools.

Requirements

React 18 or 19. The customer needs no wallet: the widget shows a deposit address and QR they can pay from anywhere, with a link to the hosted page for wallet payment.