Solana
LIVEFirst x402 v2 facilitator on Solana mainnet. Settle payments instantly with real-time verification and settlement streaming.
$0.00004160minimum payment
7-day activity
Last settlement 1m ago1,637,266Settlements
$249,691Volume
316Active sellers
Stats byx402glecoming soon
The most comprehensive dataset on agent commerce that exists. Every facilitator, every resource, every chain — indexed in real time from Dexter's own data layer.
Capabilities on Solana
x402 v2 verification
Mainnet Solana signing and verification handled by Dexter.
Live settlement stream
LaserStream publishes receipts the moment they land on-chain.
Public facilitator URL
One endpoint shared across every supported chain.
Instant settlement
USDC payments settle as soon as the transaction confirms.
Integration
https://x402.dexter.cash
Same endpoint for all supported chainsSolana quickstart
Install
npm i @dexterai/x402Usage
import { createX402Server } from '@dexterai/x402/server';
const server = createX402Server({
payTo: 'YourSolanaAddress',
network: 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',
facilitatorUrl: 'https://x402.dexter.cash',
});
const requirements = await server.buildRequirements({
amountAtomic: '30000',
resourceUrl: '/api/paid-endpoint',
});
res.setHeader('PAYMENT-REQUIRED', server.encodeRequirements(requirements));
res.status(402).end();