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

@dorafactory/maci-operator

v2.2.1

Published

An operator for managing MACI (Minimal Anti-Collusion Infrastructure)/aMACI deployments and interactions.

Readme

aMACI operator

The aMACI operator service is a unique feature offered by the Dora Factory Anonymous MACI protocol (aMACI). Running an aMACI operator means that you will run and tally an aMACI round for a community, and validate the round with zero-knowledge proofs. From the protocol's frontend, users will be able to create aMACI rounds and select an aMACI operator.

Installation

npm install -g @dorafactory/maci-operator

Quick Start

Option 1: Run with Node.js (Traditional)

# 1. Initialize operator workspace
maci init ./my-operator

# 2. Configure the operator
cd my-operator
vim config.toml  # Edit configuration file

# 3. Set operator identity (first time only)
maci set-operator identity .
maci set-operator maciPubKey .

# 4. Start the operator
maci start .

Option 2: Run with Docker (Recommended)

# 1. Initialize operator workspace
maci init ./my-operator

# 2. Configure the operator
cd my-operator
vim config.toml  # Edit configuration file

# 3. Set operator identity (first time only)
maci set-operator identity .
maci set-operator maciPubKey .

# 4. Start with Docker Compose
docker-compose up -d

# 5. View logs
docker-compose logs -f

For detailed Docker deployment instructions, see DOCKER.md.

Available Commands

maci init <dir>                    # Initialize operator workspace
maci start <dir>                   # Start the operator
maci set-operator identity <dir>   # Set operator identity on-chain
maci set-operator maciPubKey <dir> # Set operator MACI public key on-chain
maci zkey download <dir>           # Download circuit files
maci --help                        # Show help

Configuration

After running maci init, edit config.toml to configure:

  • rpcEndpoint - Chain RPC endpoint
  • indexerEndpoint - GraphQL indexer endpoint
  • registryContract - Registry contract address
  • identity - Your operator identity
  • mnemonic - Operator wallet mnemonic
  • coordinatorPrivKey - MACI coordinator private key
  • zkeyPath - Path to circuit files
  • Other prover and logging settings

Documentation

For the most up to date documentation, please visit how to run aMACI operator service

Explanation

  • aMACI operator(support 2-1-1-5, 4-2-2-25, 6-3-3-125, and 9-4-3-125 circuit power): main branch
  • MACI operator(support 9-4-3-625 circuit power): maci-operator branch (attention: 1p1v and qv circuit type are seperated)
  • MACI operator(support 2-1-1-5 and 4-2-2-25 circuit power): maci-operator-minipower