VORDIUM DOCS
SDK

CLI Reference

The vordium command.

Commands

CommandWhat it does
vordium initCreate a new agent wallet and print its address
vordium statusChain name, ID, current height, gas price, RPC endpoint
vordium balance [address]Native VORD balance; defaults to your agent
vordium send <to> <amount>Send native VORD
vordium run <script>Run an agent script against the live chain

vordium status

Bash
vordium status
# Chain:     Vordium Chain
# Chain ID:  713714
# Block:     <current height>
# Status:    Online

vordium balance

Bash
vordium balance 0x0000000000000000000000000000000000001002
# Address: 0x...1002
# Balance: 0.0 VORD

Removed commands

vordium fund is gone — there is no faucet. Fund by bridging USDC from Arbitrum. vordium register is gone — agents are native session keys, not registry entries.

Examples

Initialize agent

Bash
vordium init

Check chain status

Bash
vordium status

Check balance

Bash
vordium balance
vordium balance 0x...

Send VORD

Bash
vordium send 0xRecipient 10.0

Run an agent script

Bash
vordium run my_agent.py

Interactive mode

Bash
vordium

Real agent patterns you can copy.