We’re currently testing version 0.1.2 of our Solana-based escrow program. This update brings important improvements for transparency, auditing and usability. The changes focus on balance tracking, event visibility and sequential trade handling. In this post, we’ll walk through what’s changed and why it matters to you as a trader, developer or integrator.
tracked_balance
has been added to the Escrow
account.tracked_balance
.Example:
tracked_balance
updates to reflect the deposit.0
.Event Fields:
object_id
— escrow account (PDA)escrow_id
/ trade_id
— identifiers for cross-system linkingnew_balance
— updated tracked balancereason
— human-readable string (e.g. “Escrow funded”, “Escrow released”)timestamp
— time of the eventThis makes it much easier to build auditable transaction histories and visualize user funds across multiple trades.
SequentialAddressUpdated
event.default_judgment
/ resolve_dispute_with_explanation
) now set the tracked_balance
back to 0
once funds are moved.EscrowBalanceChanged
events with clear reasons like “Dispute resolved to buyer” or “Dispute resolved by default judgment”.For Traders — You get more confidence in the platform. Every coin in escrow is accounted for with an explicit balance field and matching event trail. No hidden moves.
For Dispute Participants — Arbitration outcomes are cleaner: funds move, balances reset and events are logged. Both winners and losers know exactly what happened on-chain.
For Developers & Integrators — Building wallets, dashboards or bots? With tracked balances and standardized events, you can show escrow lifecycle state machines without reconstructing transaction history.
For Arbitrators — Sequential and dispute changes now leave audit-friendly logs, making it easier to justify and verify decisions.
The 0.1.2 release isn’t just a technical upgrade — it’s a big step towards full transparency and user trust in decentralized trade. With tracked_balance
, EscrowBalanceChanged
and SequentialAddressUpdated
events, every token held in Escrow now leaves a clear, auditable trail.
This update lays the groundwork for richer dashboards, better arbitration tools and ultimately, safer peer-to-peer trading on Solana.
Stay tuned — we’re not done yet. Lots more to come as we race towards a devnet MVP.