Give your AI the ability to pay for resources, APIs, and subscriptions — secured by pre-execution validation and real-time risk analysis.
CLPAY gives Claude controlled financial autonomy with built-in safety at every step.
Native Solana integration with SPL token support. Sub-second transactions with minimal fees.
Every transaction is simulated before execution. The validator agent checks contracts, recipients, and amounts.
Real-time risk scoring from 0 to 1. Transactions above threshold are automatically blocked.
AI evaluates whether the purchase is truly needed for the current task before approving.
Configurable per-transaction and daily limits. Budget controls that the AI cannot override.
Every transaction logged with reasoning, risk score, and on-chain proof. Complete transparency.
Four-step validation pipeline ensures every payment is safe, necessary, and transparent.
Before any SOL leaves the wallet, the transaction is fully simulated on-chain. You see exactly what will happen — token movements, state changes, fees.
The validator agent inspects the target contract and recipient address. Known scam addresses, suspicious patterns, and unverified contracts are flagged.
Is this purchase actually needed? The side-agent evaluates the current task context and determines if the resource is essential, helpful, or unnecessary.
If all checks pass, the transaction is signed and sent. If any check fails, the payment is blocked with a detailed explanation of why.
Multiple layers of protection ensure your funds are safe even with autonomous AI control.
The wallet operates in an isolated environment. The AI cannot access private keys directly — only the validator agent can sign transactions.
Private keys are encrypted at rest using AES-256-GCM. Decryption requires multi-factor authentication from the validator pipeline.
Define trusted merchants and blocked addresses. Transactions to unknown recipients require elevated validation.
import { CLPay } from '@clpay/core';
const clpay = new CLPay({
network: 'mainnet-beta',
wallet: './keys/clpay-wallet.json',
limits: {
perTransaction: 0.5,
daily: 5.0,
},
riskThreshold: 0.6,
allowlist: [
'openai.merchant.sol',
'anthropic.merchant.sol',
],
validator: {
simulate: true,
checkContract: true,
evaluateNecessity: true,
}
});
const result = await clpay.pay({
to: 'openai.merchant.sol',
amount: 0.02,
reason: 'GPT-4 API access for comparison analysis',
taskContext: 'User requested multi-model benchmark',
});
console.log(result.status);
console.log(result.txHash);
Start building with CLPAY today. Open source, auditable, and built for the future of autonomous agents.