| Crates.io | apex-sdk-cli |
| lib.rs | apex-sdk-cli |
| version | 0.1.5 |
| created_at | 2025-11-15 09:16:39.093646+00 |
| updated_at | 2026-01-13 20:14:43.16567+00 |
| description | CLI tool for Apex SDK |
| homepage | https://github.com/carbobit/apex-sdk |
| repository | https://github.com/carbobit/apex-sdk |
| max_upload_size | |
| id | 1934173 |
| size | 329,586 |
Command-line interface for Apex SDK - unified Rust SDK for Substrate & EVM blockchain development.
cargo install apex-sdk-cli
# Create a new project
apex new my-project --template defi
# Navigate and build
cd my-project
cargo build
# Create new project with templates (default, defi, nft)
apex new <project-name> [--template <template>]
# Build project
apex build [--release]
# Run tests
apex test [--filter <pattern>]
# Run benchmarks
apex bench [--filter <pattern>]
# Generate new account
apex account generate --account-type <substrate|evm> --name <name>
# List accounts
apex account list
# Import from mnemonic
apex account import --name <name>
# Export mnemonic
apex account export --name <name>
# Get balance
apex account balance --name <name> --chain <chain>
# Initialize config interactively
apex config init
# Show current configuration
apex config show
# Set a value
apex config set <key> <value>
# Get a value
apex config get <key>
# Validate configuration
apex config validate
# Reset to defaults
apex config reset
# List supported chains
apex chain list
# Get chain info
apex chain info <chain>
# Check chain health
apex chain health <chain>
# Deploy contract
apex deploy <contract> --chain <chain> --endpoint <url> [--dry-run]
# Generate completions for your shell
apex completions <bash|zsh|fish|powershell|elvish>
# Example: Add to your .bashrc
apex completions bash >> ~/.bashrc
# Show version
apex version
# Show help
apex --help
Substrate: Polkadot, Kusama, Paseo, Westend, Moonbeam, Astar
EVM: Ethereum, Polygon, BSC, Avalanche, Arbitrum, Optimism, zkSync, Sepolia
Config file location: ~/.config/apex-sdk/config.json
Default configuration includes:
Apache-2.0