Trustless USDC escrow for agent-to-agent payments on Base. Create, release, dispute escrows via simple commands.
This skill provides trustless USDC escrow services for agent-to-agent payments on Base. It allows AI agents to create, manage, and resolve payment escrows using smart contracts.
All scripts point to https://api.payclawback.xyz by default. To use a different backend, set:
ESCROW_API_URL - Override API URL (optional)Creates a new escrow holding USDC for a beneficiary.
./scripts/create-escrow.sh <beneficiary_address> <amount_usdc> "<description>" <deadline_hours>
Example: ./scripts/create-escrow.sh 0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28 10 "Payment for data analysis" 48
List all escrows, optionally filtered by state or depositor.
./scripts/list-escrows.sh [--state active|released|disputed|refunded|expired] [--depositor 0x...]
Get details of a specific escrow by ID.
./scripts/get-escrow.sh <escrow_id>
Release escrowed funds to the beneficiary.
./scripts/release-escrow.sh <escrow_id>
Open a dispute on an active escrow.
./scripts/dispute-escrow.sh <escrow_id>
Resolve a disputed escrow as arbiter.
./scripts/resolve-dispute.sh <escrow_id> <true|false>
true = release funds to beneficiaryfalse = refund to depositorReclaim funds from an expired escrow.
./scripts/claim-expired.sh <escrow_id>
./scripts/create-escrow.sh 0xAgentB 50 "Sentiment analysis job" 24./scripts/release-escrow.sh 1See references/api-docs.md for complete API documentation.