An in-game command showing top-level economy stats like the UI — e.g. broken-down total balances of players / businesses / government.
Technical notes — In-game only /baltop exists (BaltopCommand → AccountMapper.getTopBalances, PERSONAL-only, per-player). The UI-style aggregate (total money supply + sum grouped by PERSONAL/BUSINESS/GOVERNMENT) exists only in the explorer's lib/sql/ledger.ts (totalSupply/byType), not in Treasury's command layer or treasury-api. Add a SUM(balance) GROUP BY account_type query to AccountMapper and a new /economy-style command (mirroring BaltopCommand) printing player/business/government totals + grand total via accountService.formatAmount.
Code context — In-game only
/baltopexists (BaltopCommand→AccountMapper.getTopBalances, PERSONAL-only, per-player). The UI-style aggregate (total money supply + sum grouped by PERSONAL/BUSINESS/GOVERNMENT) exists only in the explorer'slib/sql/ledger.ts(totalSupply/byType), not in Treasury's command layer ortreasury-api.Approach: add a
SUM(balance) GROUP BY account_typequery toAccountMapperand a new/economy-style command (mirroringBaltopCommand) printing player/business/government totals + grand total viaaccountService.formatAmount.