Elixir.dev

Web3 CLI Toolkit

Command-line interface for blockchain development with smart contract management, deployment, and analytics integration.

Start Using the CLI
🚀

Smart Contract Commands

Deploy, compile, and test solidity contracts with single commands.

📦

Multi-chain Support

Ethereum, BSC, Solana, and over 10+ other blockchain protocols supported natively.

📊

Analytics Integration

Real-time analytics and monitoring with one-command dashboard integration.

Getting Started

Installation

Install the CLI using either package managers or shell scripts:

npm install -g @elxir/web3-cli
# Or with brew:
brew install elixir-cli

Verify the installation by checking the version:

elixir --version
# Output: elixir web3 cli 4.0.1

Authentication

Login using your Elixir account:

elixir auth configure
# Follow the interactive setup wizard...

Core Commands

Smart Contract Development

Create and manage smart contracts via:

elixir contracts new MyToken
elixir contracts deploy MyToken.sol
elixir contracts verify --txhash 0x123...

Analytics Dashboard

Generate reports and monitor activity:

elixir analytics dashboard --network ethereum
elixir tx monitor 0x123...456

Automation & Scripting

Run complex workflows using config files:

{
  "steps": [
    {
      "task": "deploy",
      "contract": "ERC20Token",
      "network": "testnet"
    },
    {
      "task": "verify",
      "txhash": "[TX_HASH]"
    }
  ]
}

Run with: elixir run workflow.json

Examples

Deploy a Contract

elixir contracts deploy \
  --network mainnet \
  --gasprice fast \
  --contract MyToken.sol \
  --constructor-args '{"_name": "MyToken", "_symbol": "MTK"}'

Supports constructor arguments in JSON format and environment variables.

Query Contract Balance

elixir balance \
  0xYourContractAddress \
  --network polygon \
  --token 0xERC20ContractAddress

Query native or ERC-20 balances across all supported networks.

Enterprise CLI Features

Private Key Management

  • • Secure key storage with hardware security modules
  • • Multi-factor authentication for critical actions
  • • Key rotation and audit logs

CI/CD Integration

  • • GitHub Actions templates included
  • • Automated testing for EVM compliance
  • • Deployment history tracking

Ready to Build?

Join 3,500+ developers using Elixir CLI for enterprise blockchain development, contract automation, and cross-chain analytics.

```