Skip to content

CLI Commands

Every view in the TUI is also available as a standalone command for scripting and CI use.

FlagDescriptionDefault
-n, --network <network>mainnet, testnet, or localnetmainnet
-j, --jsonOutput as JSONoff

Quick dashboard showing core DAO settings.

Terminal window
akita-dao info
akita-dao -n testnet info

Full decoded global state — all configuration fields, app lists, fee structures, and proposal settings.

Terminal window
akita-dao state
akita-dao --json state

List all proposals, newest first.

Terminal window
akita-dao proposals list
akita-dao proposals list -s active # Draft + voting only
akita-dao proposals list -s past # Rejected, approved, executed
akita-dao proposals list -l 5 # Limit to 5 results
FlagDescription
-s, --status <status>Filter: active or past
-l, --limit <number>Limit number of results

Detailed view of a specific proposal with decoded actions.

Terminal window
akita-dao proposals get 117
akita-dao --json proposals get 117

Wallet global state — admin, controlled address, registration status.

Terminal window
akita-dao wallet info

All installed plugins with method restrictions, cooldowns, and escrow assignments.

Terminal window
akita-dao wallet plugins

Named plugin aliases mapping human-readable names to plugin keys.

Terminal window
akita-dao wallet named-plugins

Escrow accounts with IDs, names, and lock status.

Terminal window
akita-dao wallet escrows

Spending allowances per asset per escrow.

Terminal window
akita-dao wallet allowances

Execution keys — pre-authorized transaction groups.

Terminal window
akita-dao wallet executions

Check wallet balances.

Terminal window
akita-dao wallet balance # ALGO, AKTA, BONES
akita-dao wallet balance 31566704 # Specific asset (USDC)
akita-dao wallet balance -e rec_gov # Escrow balance
FlagDescription
-e, --escrow <name>Check a specific escrow’s balance

Add --json to any command for machine-readable output. BigInts are serialized as strings, byte arrays as hex.

Terminal window
akita-dao --json state
akita-dao --json proposals list -l 10
akita-dao --json wallet plugins
Terminal window
akita-dao -n testnet info
akita-dao -n testnet proposals list
akita-dao -n localnet wallet plugins