StarkFiStarkFi

CLI Overview

All 50 StarkFi CLI commands at a glance — grouped by feature area

Before you begin: Install StarkFi and authenticate your wallet before using CLI commands.

Command Groups

GroupCommandsDescription
Authenticationauth login, auth verify, auth logoutEmail OTP authentication
Walletaddress, balance, send, deployWallet management
Tradingtrade, multi-swapToken swaps via Fibrous
Stakingstake, unstake, rewards, pools, validators, stake-statusStaking operations
Lendinglend-pools, lend-supply, lend-withdraw, lend-borrow, lend-repay, lend-close, lend-status, lend-monitor, lend-autoVesu V2 lending
DCAdca-preview, dca-create, dca-list, dca-cancelDollar-Cost Averaging
Trovestroves-list, troves-position, troves-deposit, troves-withdrawDeFi yield vaults
LSTlst-position, lst-stats, lst-stake, lst-redeem, lst-exit-allEndur liquid staking
Confidentialconf-setup, conf-balance, conf-fund, conf-transfer, conf-withdraw, conf-ragequit, conf-rolloverTongo Cash (ZK privacy)
Portfolioportfolio, portfolio-rebalanceDeFi dashboard & optimization
OperationsbatchAtomic multicall
ConfigurationconfigRPC, network, gas settings
Systemstatus, tx-status, mcp-startStatus checks, MCP server

Global Flags

Available on all commands:

FlagDescription
--jsonOutput as JSON instead of formatted table
--simulateDry-run — estimate fees without executing (transaction commands only)
--helpShow help for any command

Quick Start

# 1. Authenticate
starkfi auth login user@example.com
starkfi auth verify user@example.com 123456

# 2. Check your wallet
starkfi balance
starkfi address

# 3. Swap tokens
starkfi trade 0.1 ETH USDC

# 4. Check transaction
starkfi tx-status 0x123abc...

# 5. View full portfolio
starkfi portfolio

Simulation

Every transaction command supports --simulate for dry-run execution:

starkfi trade 100 USDC ETH --simulate
starkfi send 10 STRK 0x04a3... --simulate
starkfi batch --swap "0.1 ETH USDC" --stake "100 STRK karnot" --simulate

Simulation returns estimated fees, call count, and validates the transaction without spending gas.

Edit on GitHub

Last updated on

On this page