Show claimable reward and withdraw status.
wallet-cli reward balance [options]
Shows the currently claimable voting/block reward and whether it can be withdrawn now. Read-only — the "check before you claim" companion to reward withdraw, so you never have to probe the 24-hour limit by triggering its withdraw_too_frequent error.
Withdraw status derives from the account's on-chain latest_withdraw_time + 24 h: past it (or never withdrawn) → available now; otherwise available from <absolute time> (~relative).
No command-specific options; the global options only (--network / --account).
Claimable right now:
wallet-cli reward balance --account main --network tron:nileLabel main
Claimable 123.456789 TRX
Withdraw status available nowWithin 24 h of the last withdrawal:
wallet-cli reward balance --account main --network tron:nileLabel main
Claimable 5.678901 TRX
Withdraw status available from 2026-07-06 09:30 (~18h)wallet-cli reward balance --account main --network tron:nile -o json{"schema":"wallet-cli.result.v1","success":true,"command":"reward.balance","data":{"address":"TQk...","rewardSun":"123456789","withdrawableNow":true,"withdrawableAt":null},"meta":{"durationMs":14,"warnings":[]},"chain":{"family":"tron","network":"tron:nile","chainId":"nile"}}| Field | Type | Meaning |
|---|---|---|
address |
string | Queried account |
rewardSun |
string | Claimable reward, in SUN |
withdrawableNow |
boolean | Whether it can be withdrawn now |
withdrawableAt |
number | null | When it becomes withdrawable (epoch ms); null when already withdrawable |
0 success · 1 execution failure (rpc_error) · 2 usage error (invalid_value).