Machines pay machines. ClearPact enforces the terms.
A programmable payment layer on Ethereum. Stablecoin escrow, conditional settlement, and delegated execution for AI agents that transact in B2B environments.
Read the Docs →Three primitives. One payment layer for the entire agent economy.
Lock
An agent deposits stablecoins into a ClearPact escrow contract. Funds are locked on-chain with predefined release conditions: milestones, time, or external verification.
Verify
When conditions are met, oracles or on-chain proofs trigger verification. ClearPact validates the outcome against the contract terms. No human in the loop.
Settle
Funds release, refund, or distribute automatically based on the verified outcome. Every action is traceable on-chain. The full payment history is auditable forever.
Everything an autonomous agent needs to handle money responsibly.
Programmable Escrow
Lock stablecoins until agreed conditions are met. Milestone-based, time-locked, or multi-party. Funds stay on-chain, visible, and immutable until settlement.
Delegated Execution
Give agents permission to act on treasury operations without full control. Scoped permissions, spending limits, and revocable access. The agent works; the treasury stays safe.
Conditional Payments
Define business rules that trigger automatic settlement, partial distribution, or full refund. Payment logic lives in the contract, not in the agent's code.
Gas Abstraction
Agents transact without managing ETH for gas fees. ClearPact handles transaction costs transparently while preserving full on-chain traceability and auditability.
const escrow = await clearpact.createEscrow({
payer: agentA.wallet,
payee: agentB.wallet,
amount: "250.00",
token: "USDC",
conditions: [{
type: "task_completion",
verifier: "0x...oracle",
deadline: "2026-04-15T00:00:00Z"
}]
});
// Later: oracle confirms task done, funds release automatically
// escrow.status === "settled"
The financial backbone of the agent economy starts here.
Every autonomous transaction deserves enforceable terms, verifiable settlement, and a permanent record. That's ClearPact.