stateset-a2a 0.7.13

Agent-to-Agent commerce service layer: splits, subscriptions, escrow, webhooks, event streaming
1
2
3
4
5
6
7
8
9
10
//! Escrow service types and logic.
//!
//! Manages conditional fund holding with multi-condition release,
//! time-based expiry, and dispute escalation.

pub mod conditions;
pub mod state_machine;

pub use conditions::{Condition, ConditionEvaluation, ConditionType};
pub use state_machine::{EscrowStatus, EscrowTransition};