Solana

Solana

LIVE

First x402 v2 facilitator on Solana mainnet. Settle payments instantly with real-time verification and settlement streaming.

$0.00004203minimum payment

7-day activity

Last settlement 2m ago
1,637,564Settlements
$249,693Volume
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 chains

Solana quickstart

Install
npm i @dexterai/x402
Usage
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();