Gasless Micropayments for the Agentic Economy
Enable AI agents to transact autonomously without gas fees. Built on x402 protocol with EIP-3009 meta-transactions.
Avalanche C-Chain
Base
HyperEVM
Polygon
Solana
Optimism
Ethereum
Arbitrum
Unichain
Monad
NEAR
Stellar
Fogo
Algorand
BNB Chain
Sui
SKALE Base
Scroll
Avalanche Fuji
Base Sepolia
Polygon Amoy
Optimism Sepolia
Ethereum Sepolia
Arbitrum Sepolia
Unichain Sepolia
HyperEVM Testnet
NEAR Testnet
Stellar Testnet
Fogo Testnet
Algorand Testnet
Solana Devnet
Sui Testnet
SKALE Base Sepolia
Gasless Transactions
Agents never need AVAX or ETH for gas. The facilitator executes transferWithAuthorization via EIP-3009.
Trustless by Design
EIP-712 signature verification ensures cryptographically valid payments before on-chain execution.
Instant Settlement
Complete payment verification and on-chain settlement in ~2-3 seconds end-to-end.
Integrate in Minutes
Our SDKs handle payload construction, signature verification, and multichain settlement automatically. By default, all requests use our facilitator - no configuration needed.
npm install uvd-x402-sdk
// Client: Create payment with any stablecoin
import { createPayment } from "uvd-x402-sdk";
const payment = await createPayment(wallet, {
recipient: "0xYourWallet",
amount: "10.00",
tokenType: "eurc" // usdc | eurc | ausd | pyusd
});
// Server: Verify payment
import { verifyPayment } from "uvd-x402-sdk";
const result = await verifyPayment(
request.headers["X-PAYMENT"],
{ maxPrice: "10.00", recipient: "0xYourWallet" }
);
No payload construction needed
14+ networks supported
Default facilitator configured
What is x402?
x402 is a protocol for stateless, per-request payments over HTTP. Clients attach a signed payment payload to each request. The facilitator verifies it, executes the on-chain transfer, and grants access to protected resources—all without accounts, wallets, or user registration.
API Endpoints
Status & Info
x402 Protocol
x402r Escrow (Refund Support)
Add {"refund": {"window": 86400}} to extensions for trustless refund support via DepositRelay proxies.