Financial Coordination for Autonomous Agents

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 →
USDC Escrow Conditional Settlement ERC-8004 Compatible x402 Compatible Gas Abstracted On-chain Audit Trail

Three primitives. One payment layer for the entire agent economy.

01

Lock

An agent deposits stablecoins into a ClearPact escrow contract. Funds are locked on-chain with predefined release conditions: milestones, time, or external verification.

02

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.

03

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.

escrow()

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.

delegate()

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.

settle()

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.

abstract()

Gas Abstraction

Agents transact without managing ETH for gas fees. ClearPact handles transaction costs transparently while preserving full on-chain traceability and auditability.

create-escrow.js
// Agent A pays Agent B for a completed data analysis task
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.