DOCUMENTATION
Introduction
A mental model for governed agent payments.
What Ixrail does
Ixrail sits between agent intent and transaction signing. It normalizes payment requests, evaluates a versioned policy, pauses exceptional spend for approval, and produces a receipt for every decision.
The control loop
A merchant responds with HTTP 402 terms. The agent passes those terms to Ixrail. Ixrail verifies merchant, amount, asset, network, and budget before returning allow, review, or deny.
const decision = evaluate(intent, policy)
if (decision.state !== "allow") {
return decision
}
return execute(decision.envelope)Start safely
Use the local simulator to validate policy behavior. The examples do not connect to a wallet or submit a network transaction.