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

@moneyos/smart-account

v0.1.1

Published

MoneyOS smart-account primitives: account contracts, EIP-712 intent signing, nonce lanes, and the gasless relay client.

Readme

@moneyos/smart-account

MoneyOS smart-account primitives: everything you need to program, sign for, and submit intents from a MoneyOS smart account.

What's in the box

  • Solidity contracts: MoneyOSAccountV1 and MoneyOSAccountFactoryV1 with deterministic CREATE2 deployment.
  • EIP-712 IntentV1 types, hashing, and a signer that wraps a viem LocalAccount.
  • Signer-scoped nonce lanes (replay-safe) and helpers for idempotency keys.
  • Baked network defaults (currently Arbitrum mainnet) for factory, sponsor, and derived smart-account address.
  • RelayClient HTTP client for the MoneyOS gasless relay.
  • GaslessExecutor that implements ExecutionClient from @moneyos/core and routes calls through the relay.

Install

npm install @moneyos/smart-account

Peer deps: @moneyos/core, viem.

Typical use

import {
  GaslessExecutor,
  RelayClient,
  deriveDefaultGaslessAccount,
  getGaslessNetworkDefaults,
} from "@moneyos/smart-account";

End users of the moneyos CLI don't import this directly — the CLI wires everything up. This package is for SDK consumers, third-party tools, or anyone embedding MoneyOS smart accounts in their own app.

History

This package was previously named @moneyos/gasless and shipped bundled inside the moneyos CLI tarball. Starting with @moneyos/[email protected] it is a standalone package on npm. The name change reflects the fact that "gasless execution" is just one capability built on top of the smart-account primitives; the package now owns the broader smart-account surface.

Tooling

  • Contracts: Foundry (forge test)
  • SDK: TypeScript + viem (npm run test --workspace=packages/smart-account)

Contracts

  • contracts/MoneyOSAccountV1.sol
  • contracts/MoneyOSAccountFactoryV1.sol
  • contracts/lib/IntentHashV1.sol