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

genlayer

v0.32.5

Published

GenLayer Command Line Tool

Readme

GenLayer CLI

Description

The GenLayer CLI is designed to streamline the setup and local execution of the GenLayer simulator. This tool automates the process of downloading and launching the GenLayer simulator, making it easy to start simulating and testing locally with minimal setup.

Installation

Before installing the GenLayer CLI, ensure you have Node.js installed on your system. You can then install the CLI globally using npm:

npm install -g genlayer

Linux Dependencies

On some Linux distributions with minimal setups (like Debian netinst or Docker images), you may need to manually install libsecret:

# Ubuntu/Debian
sudo apt-get install libsecret-1-0

# CentOS/RHEL/Fedora
sudo yum install libsecret
# or for newer versions
sudo dnf install libsecret

# Arch Linux
sudo pacman -S libsecret

The GenLayer CLI uses the keytar library for secure key storage, which relies on libsecret on Linux systems.

Usage

Each command includes syntax, usage information, and examples to help you effectively use the CLI for interacting with the GenLayer environment.

Command line syntax

General syntax for using the GenLayer CLI:

genlayer command [command options] [arguments...]

Commands and usage

Initialize

Prepares and verifies your environment to run the GenLayer Studio.

USAGE:
   genlayer init [options]

OPTIONS:
   --numValidators <numValidators>       Number of validators (default: "5")
   --headless                            Headless mode (default: false)
   --reset-db                            Reset Database (default: false)
   --localnet-version <localnetVersion>  Select a specific localnet version
   --ollama                              Enable Ollama container (default: false)

EXAMPLES:
   genlayer init
   genlayer init --numValidators 10 --headless --reset-db --localnet-version v0.10.2
   genlayer init --ollama
Version Compatibility

The GenLayer CLI always uses the latest compatible version of the environment, ensuring that you benefit from the most recent features, bug fixes, and optimizations without requiring manual updates. If a specific version is needed, you can specify it using the --localnet-version option when initializing the environment.

genlayer init --localnet-version v0.10.2

Start GenLayer environment

Launches the GenLayer environment and the Studio, initializing a fresh set of database and accounts.

USAGE:
   genlayer up [options]

OPTIONS:
   --reset-validators               Remove all current validators and create new random ones (default: false)
   --numValidators <numValidators>  Number of validators (default: "5")
   --headless                       Headless mode (default: false)
   --reset-db                       Reset Database (default: false)
   --ollama                         Enable Ollama container (default: false)

EXAMPLES:
   genlayer up
   genlayer up --reset-validators --numValidators 8 --headless --reset-db
   genlayer up --ollama

Stop GenLayer environment

Stops all running GenLayer Localnet services.

USAGE:
   genlayer stop

Create a New GenLayer Project

Initialize a new GenLayer project using a local template.

USAGE:
   genlayer new <projectName> [options]

OPTIONS:
   --path <directory>  Specify the directory for the new project (default: ".")
   --overwrite         Overwrite existing directory if it exists (default: false)

EXAMPLES:
   genlayer new myProject
   genlayer new myProject --path ./customDir
   genlayer new myProject --overwrite

Manage CLI Configuration

Configure the GenLayer CLI settings.

USAGE:
   genlayer config <command> [options]

COMMANDS:
   set <key=value>  Set a configuration value
   get [key]        Get the current configuration
   reset <key>      Reset a configuration value to its default

EXAMPLES:
   genlayer config get
   genlayer config get defaultOllamaModel
   genlayer config set defaultOllamaModel=deepseek-r1
   genlayer config reset keyPairPath

Network Management

Set the network to use for contract operations.

USAGE:
   genlayer network [network]

EXAMPLES:
   genlayer network
   genlayer network testnet
   genlayer network mainnet

Deploy and Call Intelligent Contracts

Deploy and interact with intelligent contracts.

USAGE:
   genlayer deploy [options]
   genlayer call <contractAddress> <method> [options]
   genlayer write <contractAddress> <method> [options]
   genlayer schema <contractAddress> [options]

OPTIONS (deploy):
   --contract <contractPath>  (Optional) Path to the intelligent contract to deploy
   --rpc <rpcUrl>             RPC URL for the network
   --args <args...>           Positional arguments for the contract (space-separated, use quotes for multi-word arguments)

OPTIONS (call):
   --rpc <rpcUrl>             RPC URL for the network
   --args <args...>           Positional arguments for the method (space-separated, use quotes for multi-word arguments)

OPTIONS (write):
   --rpc <rpcUrl>             RPC URL for the network
   --args <args...>           Positional arguments for the method (space-separated, use quotes for multi-word arguments)

OPTIONS (schema):
   --rpc <rpcUrl>             RPC URL for the network

EXAMPLES:
   genlayer deploy
   genlayer deploy --contract ./my_contract.gpy
   genlayer deploy --contract ./my_contract.gpy --args "arg1" "arg2" 123
   genlayer call 0x123456789abcdef greet --args "Hello World!"
   genlayer write 0x123456789abcdef updateValue --args 42
   genlayer schema 0x123456789abcdef
Deploy Behavior
  • If --contract is specified, the command will deploy the given contract.
  • If --contract is omitted, the CLI will search for scripts inside the deploy folder, sort them, and execute them sequentially.
Call vs Write
  • call - Calls a contract method without sending a transaction or changing the state (read-only)
  • write - Sends a transaction to a contract method that modifies the state
Schema
  • schema - Retrieves the contract schema

Account Management

View and manage your account.

USAGE:
   genlayer account                   Show account info (address, balance, network, status)
   genlayer account create [options]  Create a new account
   genlayer account send <to> <amount> Send GEN to an address
   genlayer account unlock            Unlock account (cache key in OS keychain)
   genlayer account lock              Lock account (remove key from OS keychain)

OPTIONS (create):
   --output <path>    Path to save the keystore (default: "./keypair.json")
   --overwrite        Overwrite existing file (default: false)

EXAMPLES:
   genlayer account
   genlayer account create
   genlayer account create --output ./my_key.json --overwrite
   genlayer account send 0x123...abc 10gen
   genlayer account send 0x123...abc 0.5gen
   genlayer account unlock
   genlayer account lock

Update Resources

Manage and update models or configurations.

USAGE:
   genlayer update ollama [options]

OPTIONS:
   --model [model-name]  Specify the model to update or pull
   --remove              Remove the specified model instead of updating

EXAMPLES:
   genlayer update ollama
   genlayer update ollama --model deepseek-r1
   genlayer update ollama --model deepseek-r1 --remove

Localnet Validator Management

Manage localnet validator operations.

USAGE:
   genlayer localnet validators <command> [options]

COMMANDS:
   get [--address <validatorAddress>]     Retrieve details of a specific validator or all validators
   delete [--address <validatorAddress>]  Delete a specific validator or all validators
   count                                  Count all validators
   update <validatorAddress> [options]    Update a validator details
   create-random [options]                Create random validators
   create [options]                       Create a new validator

OPTIONS (update):
   --stake <stake>                        New stake for the validator
   --provider <provider>                  New provider for the validator
   --model <model>                        New model for the validator
   --config <config>                      New JSON config for the validator

OPTIONS (create-random):
   --count <count>                        Number of validators to create (default: "1")
   --providers <providers...>             Space-separated list of provider names (e.g., openai ollama)
   --models <models...>                   Space-separated list of model names (e.g., gpt-4 gpt-4o)

OPTIONS (create):
   --stake <stake>                        Stake amount for the validator (default: "1")
   --config <config>                      Optional JSON configuration for the validator
   --provider <provider>                  Specify the provider for the validator
   --model <model>                        Specify the model for the validator

EXAMPLES:
   genlayer localnet validators get
   genlayer localnet validators get --address 0x123456789abcdef

   genlayer localnet validators count
   genlayer localnet validators delete --address 0x123456789abcdef
   genlayer localnet validators update 0x123456789abcdef --stake 100 --provider openai --model gpt-4

   genlayer localnet validators create
   genlayer localnet validators create --stake 50 --provider openai --model gpt-4
   genlayer localnet validators create-random --count 3 --providers openai --models gpt-4 gpt-4o

Staking Operations

Manage staking for validators and delegators on testnet-asimov. Staking is not available on localnet/studio.

USAGE:
   genlayer staking <command> [options]

COMMANDS:
   validator-join [options]      Join as a validator by staking tokens
   validator-deposit [options]   Make an additional deposit as a validator
   validator-exit [options]      Exit as a validator by withdrawing shares
   validator-claim [options]     Claim validator withdrawals after unbonding period
   delegator-join [options]      Join as a delegator by staking with a validator
   delegator-exit [options]      Exit as a delegator by withdrawing shares
   delegator-claim [options]     Claim delegator withdrawals after unbonding period
   validator-info [options]      Get information about a validator
   delegation-info [options]     Get delegation info for a delegator with a validator
   epoch-info [options]          Get epoch info with timing estimates
   active-validators [options]   List all active validators

COMMON OPTIONS (all commands):
   --network <network>           Network to use (localnet, testnet-asimov)
   --rpc <rpcUrl>                RPC URL override
   --staking-address <address>   Staking contract address override

OPTIONS (validator-join):
   --amount <amount>             Amount to stake (in wei or with 'gen' suffix)
   --operator <address>          Operator address (defaults to signer)

OPTIONS (delegator-join):
   --validator <address>         Validator address to delegate to
   --amount <amount>             Amount to stake (in wei or with 'gen' suffix)

OPTIONS (exit commands):
   --shares <shares>             Number of shares to withdraw
   --validator <address>         Validator address (for delegator commands)

EXAMPLES:
   # Get epoch info (uses --network to specify testnet-asimov)
   genlayer staking epoch-info --network testnet-asimov

   # Or set network globally first
   genlayer network testnet-asimov

   # Join as validator with 42000 GEN
   genlayer staking validator-join --amount 42000gen

   # Join as delegator with 42 GEN
   genlayer staking delegator-join --validator 0x... --amount 42gen

   # Check validator info
   genlayer staking validator-info --validator 0x...
   # Output:
   # {
   #   validator: '0xa8f1BF1e5e709593b4468d7ac5DC315Ea3CAe130',
   #   vStake: '0.01 GEN',
   #   vShares: '10000000000000000',
   #   dStake: '0 GEN',
   #   dShares: '0',
   #   vDeposit: '0 GEN',
   #   vWithdrawal: '0 GEN',
   #   epoch: '0',
   #   live: true,
   #   banned: 'Not banned'
   # }

   # Get current epoch info (includes timing estimates)
   genlayer staking epoch-info
   # Output:
   # {
   #   currentEpoch: '2',
   #   epochStarted: '2025-11-28T09:57:49.000Z',
   #   epochEnded: 'Not ended',
   #   nextEpochEstimate: '2025-11-29T09:57:49.000Z',
   #   timeUntilNextEpoch: '19h 56m',
   #   minEpochDuration: '24h 0m',
   #   validatorMinStake: '0.01 GEN',
   #   delegatorMinStake: '42 GEN',
   #   activeValidatorsCount: '6'
   # }

   # List active validators
   genlayer staking active-validators
   # Output:
   # {
   #   count: 6,
   #   validators: [
   #     '0xa8f1BF1e5e709593b4468d7ac5DC315Ea3CAe130',
   #     '0xe9246A020cbb4fC6C46e60677981879c9219e8B9',
   #     ...
   #   ]
   # }

   # Exit and claim (requires validator wallet address)
   genlayer staking validator-exit --validator 0x... --shares 100
   genlayer staking validator-claim --validator 0x...

Running the CLI from the repository

First, install the dependencies and start the build process

npm install
npm run dev

This will continuously rebuild the CLI from the source

Then in another window execute the CLI commands like so:

node dist/index.js init

Guides

Documentation

For detailed information on how to use GenLayer CLI, please refer to our documentation.

Contributing

We welcome contributions to GenLayerJS SDK! Whether it's new features, improved infrastructure, or better documentation, your input is valuable. Please read our CONTRIBUTING guide for guidelines on how to submit your contributions.

License

This project is licensed under the ... License - see the LICENSE file for details.