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

@sea-pay/erc3009

v0.1.0

Published

TypeScript utilities for ERC-3009 (Transfer With Authorization) EIP-712 signing

Readme

@sea-pay/erc3009

TypeScript utilities for ERC-3009 (Transfer With Authorization) EIP-712 signing.

Installation

npm install @sea-pay/erc3009
# or
pnpm add @sea-pay/erc3009
# or
yarn add @sea-pay/erc3009

Usage

Basic Example

import { Wallet } from "ethers";
import {
  buildTypedData,
  buildTypes,
  message_5_minutes,
  signTransferWithAuthorization,
  type EIP712Domain,
  type TransferWithAuthorization,
} from "@sea-pay/erc3009";

// Create a wallet
const wallet = new Wallet("0x...");

// Define the token domain (EIP-712 domain)
const domain: EIP712Domain = {
  name: "USD Coin",
  version: "2",
  chainId: 84532, // Base Sepolia
  verifyingContract: "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
};

// Create a transfer authorization message
const message = message_5_minutes(
  wallet.address, // from
  "0x...", // to
  BigInt("1000000") // value (1 USDC if 6 decimals)
);

// Sign the authorization
const signature = await signTransferWithAuthorization(wallet, domain, message);

// Or build typed data manually
const typedData = buildTypedData({ domain, message });
const types = buildTypes();
// Use with wallet.signTypedData(typedData.domain, types, typedData.message)

API Reference

Types

  • TransferWithAuthorization: The message structure for ERC-3009 transfers
  • EIP712Domain: The EIP-712 domain structure

Functions

  • buildDomain(domain: EIP712Domain): Converts EIP712Domain to TypedDataDomain
  • buildTypes(): Returns the EIP-712 types for TransferWithAuthorization
  • buildMessage(message: TransferWithAuthorization): Normalizes message values
  • buildTypedData(params): Builds complete typed data for signing
  • signTransferWithAuthorization(wallet, domain, message): Convenience function to sign
  • message_5_minutes(from, to, value): Creates a message valid for 5 minutes
  • USDC_Domain(): Returns USDC domain for Base Sepolia (example)

Requirements

  • Node.js 18+
  • ethers v6

License

Apache-2.0