An entity’s treasury holds USD balances, on-chain positions, and fixed-income holdings — all visible in a single view. Every disbursement passes through six policy gates before execution.

What’s tracked

  • USD balances — across Mercury, Relay, Meow, and manual-reconciled banks
  • Crypto balances — Solana (native SOL, USDC), Ethereum (L1 + major L2s), Bitcoin (via custodian)
  • Fixed-income — Treasury bills via a custodian
  • Pending — outbound proposals, unsettled transactions

Access

const balance = await orgs.treasury.balance("helios-research");
// {
//   total_available_usd: 127842.13,
//   reserve_locked_usd: 25000,
//   spent_today_usd: 4211.90,
//   daily_limit_usd: 10000,
//   accounts: [...],
// }

Six-layer disbursement

Every treasury action passes through:
  1. Escalation — constitution check
  2. Policy — balance, daily limit, reserve, counterparty
  3. Governance — proposal-and-vote
  4. Signing — Ed25519 by authorized members
  5. Submission — chain/bank execution
  6. Confirmation — chain-finality or bank-cleared

Reporting

  • Real-time P&L dashboard
  • FY close with full audit trail
  • CSV/Parquet exports for CPA
  • K-1 generation (if multi-member)
See Reporting for detail.