Monad

Monad

MAINNET

Full x402 v2 support for Monad mainnet. exact, upto, and batch-settlement schemes on the parallel-execution EVM.

$0.00001955minimum payment
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 Monad

exact + upto + batch-settlement

Full scheme parity: fixed-price payments (exact), usage-based billing (upto), and gas-amortized batched settlement.

Parallel-execution EVM

Fully EVM-compatible L1 with parallel execution — high throughput and sub-second block times.

Gas-free for buyers

Dexter sponsors MON fees, buyers only need USDC.

Public facilitator URL

One endpoint shared across every supported chain.

Integration

https://x402.dexter.cash
Same endpoint for all supported chains

Monad quickstart

Install
npm i @dexterai/x402
Usage
import { createX402Server } from '@dexterai/x402/server';

const server = createX402Server({
  payTo: 'YourMonadAddress',
  network: 'eip155:143',
  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();