Not just a trading bot CLI. Gate checks, airdrops, agent orchestration, DEX trading, and governance — all with on-chain permission enforcement. The only CLI where your agent has to qualify before it can act.
Every command is permission-aware. Gates aren't optional — they're the foundation.
Check wallet permissions against on-chain conditions. Balance, tokens, NFTs, staking, custom.
txai gate check --wallet core1... --holds TOKEN
Create, configure, and run permission-aware agents. Market maker, sniper, airdrop, custom strategies.
txai agent create --name "Bot" --strategy market-maker
Parse natural language, dry-run distributions, execute gate-checked airdrops.
txai airdrop parse "Send 1000 TOKEN to stakers"
Query balances, check holdings, inspect token metadata on testnet or mainnet.
txai token balance --wallet core1...
Query the on-chain DEX orderbook. Bids, asks, depth, spread — all from the terminal.
txai orderbook depth --pair TOKEN/CORE
Set network, API endpoint, default wallet. Persists across sessions.
txai config set network testnet
Most crypto CLIs are just trading bots. TXAI agents have to qualify before they can act.
The CLI workflow mirrors the SDK. Configure, gate-check, create, run.
Set your network and defaults. Persists to ~/.txai/config.json
txai config set network testnet
Verify your wallet meets the requirements before creating agents or running airdrops.
txai gate check --wallet core1... --holds MYTOKEN --min 10000
Define strategy, gate conditions, and run interval. Saved as a reusable JSON config.
txai agent create --name "MM Bot" --strategy market-maker --holds MYTOKEN
Execute with dry-run first, then for real. The agent checks gates on every cycle.
txai agent run --name "MM Bot" --dry-run
Install from npm. Run your first gate check in 30 seconds.