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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@everyprotocol/every-cli

v0.1.19

Published

A command-line interface for interacting with the Every Protocol.

Readme

Every CLI

A command-line interface for interacting with the Every Protocol.

Installation

bun add -g @everyprotocol/every-cli
npm install -g @everyprotocol/every-cli

Configuration

Note: You normally don’t need to configure anything manually. A default configuration is bundled with support for all chains officially supported by the protocol.

The CLI looks for configuration in the following locations (in order of precedence):

  1. .every.toml in the current directory
  2. .every.toml in your home directory
  3. The default configuration bundled with the package

Example configuration:

[universes.local]
rpc_url = "http://localhost:8545"
contracts.KindRegistry = "0x5FbDB2315678afecb367f032d93F642f64180aa3"
contracts.SetRegistry = "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512"
contracts.ElementRegistry = "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0"
contracts.OmniRegistry = "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9"
contracts.ObjectMinter = "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9"

[universes.testnet]
rpc_url = "https://testnet-rpc.example.com"
contracts.KindRegistry = "0x..."
# Add other contract addresses as needed

Usage

The CLI provides commands for interacting with different aspects of the Every Protocol:

every --help

Main Commands

  • every kind - Manage kinds
  • every set - Manage sets
  • every relation - Manage relations
  • every unique - Manage uniques
  • every value - Manage values
  • every object - Create and interact with objects
  • every mintpolicy - Manage mint policies

Examples

Minting an Object

every object mint 17.1 0xYourAddress

Relating objects

every object relate 17.1 42 18.2

Viewing Object Information

every object owner 17.1

Signing Transactions

Most write operations require signing with a wallet or private key. You can provide your private key or use a keystore:

-k, --private-key <key>       Private key to sign the transaction
-a, --account <account>       Name of the keystore to sign the transaction
-p, --password [password]     Password to decrypt the keystore
-f, --password-file <file>    File containing the password to decrypt the keystore
    --foundry                 Use keystore from Foundry directory (~/.foundry/keystores)

Using a private key

every object mint 17.1 0xRecipient --private-key 0xYourPrivateKey

Using a keystore

every object mint 17.1 0xRecipient --account myaccount

License

MIT