2026

2026-04

Strongly Consistent Parent Balances

You can now enable strongly consistent balances on parent accounts. Configure totalBalanceUpdates: strong on any account and its balance and childTotal will reflect any descendant's entries immediately.

Small improvements

  • Fixed encoded-ID handling in Ledger Account balance resolvers
  • Faster balance reads across multiple Ledger Accounts and Ledger line path queries
  • Schema deploy now validates the strong-write cap on totalBalance ancestors

2026-03

Line Tags

In addition to Ledger Entry tags, you can now add tags to individual Ledger Lines within a Ledger Entry

Small improvements

  • Query Ledger Lines across an entire Ledger, rather than only scoped to a single Ledger Account
  • Post Ledger Entries with Repeated Ledger Lines directly from the Dashboard
  • Render custom currency precision in Scenarios
  • New --include-runtime-args flag on the fragment gen-graphql CLI

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.

Posting with Repeated Entry Lines
{
  "type": "batch-fund-users",
  "memo": "Weekly user funding batch",
  "fundings": [
    {
      "user_id": "1",
      "amount": "1000"
    },
    {
      "user_id": "2",
      "amount": "1000"
    },
    {
      "user_id": "3",
      "amount": "1000"
    }
  ]
}

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

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

  • 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