A 2026#

a. 2026-02

#

Repeated Entry Lines

Entry shapes are no longer fixed at Schema deploy time. With Repeated Entry Lines, you can define lines that expand at runtime from an array of parameters, each element creating its own line and JIT-instantiating accounts as needed. Fund N wallets, process a batch of payouts, or reconcile multiple transactions in a single entry instead of N separate API calls.

Schema with Repeated Entry Lines
{
  "type": "batch-fund-users",
  "description": "{{memo}}",
  "lines": [
    {
      "key": "user-credit",
      "account": {
        "path": "liabilities/user-balances/user:{{user_id}}/available"
      },
      "amount": "{{amount}}",
      "repeated": { "key": "fundings" }
    },
    {
      "key": "treasury-debit",
      "account": { "path": "assets/treasury" },
      "amount": "{{amount}}",
      "repeated": { "key": "fundings" }
    }
  ]
}

Small improvements

  • You can now use parameterized currency codes in your Schema, making it easier to build multi-currency Ledgers with dynamic currency resolution
  • Added ap-southeast-2 (Sydney) as an available deployment region
  • Added support for stablecoin currencies including USDC and USDT
  • Preserved numeric precision in data export stream processing to prevent rounding errors in large exports
  • Fixed a bug in the Schema designer that caused an error state when toggling an account between single and multi-currency mode

b. 2026-01

#

FRAGMENT Billing Preview

Agents make billing multi-party. But multi-party breaks existing billing products. FRAGMENT is a new billing service, purpose-built for the age of infinite-parties. FRAGMENT Billing is currently invite only. Sign up for the waitlist for early access.



Small improvements

  • Clearing accounts can now have child accounts, providing more flexibility in modeling unsettled transactions
  • You can now configure totalBalance updates on parent accounts from the consistency modal in the Dashboard
  • You can now retrieve invoice version history through the API
  • createInvoice and updateInvoice now validate that referenced parties and products exist before creation
  • Added currency support to external payments and invoice line items across the API and Dashboard
  • Fixed a bug in the Dashboard that prevented editing Entry types when multiple entries shared the same type name