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

@runonflux/account-abstraction

v1.2.1

Published

Account Abstraction Schnorr Multi-Signatures

Readme

Account Abstraction Schnorr MultiSig

Account Abstraction - Schnorr Multi Signature ERC-4337 compliant smart contracts.

Overview

This package provides a robust implementation of ERC-4337 Account Abstraction using Schnorr Multi-Signatures. It includes two main smart contracts:

  • MultiSigSmartAccount: Implements the ERC-4337 Account Abstraction.
  • MultiSigSmartAccountFactory: A factory contract for creating account abstractions.

The contracts are designed to be UUPS Upgradeable Proxies, allowing upgrades by the Owner. The Owner role is assigned to the combined public address (combinedAddress) during account initialization, ensuring that critical functions like upgrades or withdrawals require Schnorr Multi-signature authorization.

Key Features

  • Secure Multi-Signature Transactions: Utilizes Schnorr signatures for enhanced security.
  • Upgradeable Contracts: Supports UUPS proxy pattern for contract upgrades.
  • ERC-4337 Compliance: Adheres to the latest Ethereum standards for account abstraction.

Requirements

  • Node.js: Version >=18
  • npm: Version >=9

Installation

NPM package

npm install @runonflux/account-abstraction

Clone the repository and install dependencies:

git clone https://github.com/RunOnFlux/account-abstraction.git
cd account-abstraction
npm install

Testing

Run the test suite using:

npm run test

Deployments

Refer to the Deployments for information about deployed contracts.

Deploy the MultiSigSmartAccount Factory on Ethereum Sepolia Testnet:

npm run deploy:sepolia

For other supported networks, use:

npx hardhat deploy --network <NETWORK_NAME> --tags ACCOUNT_FACTORY

Supported networks include:

  • mainnet
  • sepolia
  • polygon-mainnet

Build Package

Build the package with:

npm run prebuild
npm run build

The package includes:

  • abi: Generated ABI JSON files for smart contracts.
  • deployments: Addresses of deployed contracts for each supported network.
  • typechain: TypeScript typings generated from ABI files.

Associated Packages

SSP Wallet

The SSP Wallet is a multi-signature, multi-asset wallet leveraging this SDK for EVM chains. For more information and usage examples, visit the SSP Wallet Repository.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Reporting Issues

Found a bug? Please report it on our issue tracker.

Inspiration, Credits & Acknowledgements

Security Audits

The smart contracts and SDK underwent a comprehensive security audit by Halborn finalised in February 2025.

Audit Reports

📄 Smart Contracts Audit

📄 SDK Audit

Findings & Notes

  • Smart Contracts: All findings were in unused code, which has been removed in the main branch. Contracts were redeployed, and the main branch is recommended for production while master branch is an archive where audits were assessed and perfectly safe to continue using. (Fix PR)
  • SDK: All important findigs were addressed in the main branch. Be noted that examples are using hard coded values, furthermore this library requires proper nonce management on the client side, and following a strict error-throwing approach. (Fix PR)