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

@moon-x/evm-adapter

v0.3.3

Published

Chain-aware EVM signing helpers for MoonX ephemeral signers. Builds the keccak256 digest and assembles ready-to-broadcast signatures/transactions so integrators never hand-roll payload construction.

Readme

@moon-x/evm-adapter

Chain-aware EVM signing helpers for MoonX ephemeral signers.

The low-level signWithEphemeralSigner primitive in @moon-x/core signs an arbitrary keccak256 digest — which means the integrator is responsible for building the exact bytes to sign (EIP-191 prefixing, EIP-712 hashing, RLP serialization, EIP-7702 auth hashing) and for re-assembling the result into something broadcastable. That's the most security-sensitive and error-prone part of signing, and every integration ends up re-implementing the same viem glue.

This adapter does it for you. You pass intent — a message, typed data, a transaction — and get back a ready-to-use artifact.

Install

pnpm add @moon-x/evm-adapter viem

viem is a peer dependency, so your app's single viem instance is the one used.

Usage

import { createEvmSigner } from "@moon-x/evm-adapter";

const signer = createEvmSigner({
  apiPubHex,        // from provisioning
  apiPrivHex,       // never leaves your backend
  walletId,         // the EVM wallet the agent was provisioned for
  baseUrl,          // wallets backend URL
  secretKey,        // moon_sk_* (server-only; the sign routes are secret-key-only)
});

// EIP-191 personal message → 65-byte 0x signature
const sig = await signer.signMessage("gm");

// EIP-712 typed data → 65-byte 0x signature
const tdSig = await signer.signTypedData(typedData);

// Transaction → wire-ready serialized tx for eth_sendRawTransaction
const rawTx = await signer.signTransaction({
  type: "eip1559",
  chainId: 1,
  nonce: 0,
  to,
  value: 0n,
  maxFeePerGas: 2_000_000_000n,
  maxPriorityFeePerGas: 1_000_000_000n,
  gas: 21_000n,
});

// EIP-7702 authorization → signed authorization for authorizationList
const signedAuth = await signer.signAuthorization(authorization);

Scheme safety

The adapter enforces that the target wallet is ECDSA/secp256k1. Pointing it at an ed25519 (Solana) wallet throws EvmSchemeMismatchError instead of producing a valid-but-wrong signature — use @moon-x/solana-adapter for those.

Escape hatch

For custom chains or digests this adapter doesn't model, drop down to signWithEphemeralSigner from @moon-x/core/sdk and build the digest yourself.