BSC
MAINNETx402 settlement on BSC via Permit2. BSC stablecoins use 18 decimals and lack EIP-3009, so all settlements go through the standard Permit2 path. Gas sponsored.
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 BSC
exact scheme (Permit2)
Standard x402 exact scheme via Uniswap Permit2. BSC stablecoins lack EIP-3009, so Permit2 is the settlement path. No BSC-specific code needed.
USDT + USDC (18 decimals)
Both Binance-Peg stablecoins supported. 18 decimals (not 6). The facilitator handles decimal conversion automatically.
Gas sponsored
Dexter pays BNB gas for every BSC settlement. Buyers only need stablecoins.
Upto coming
Usage-based billing will be available when the x402 Foundation deploys the upto proxy to BSC.
Integration
https://x402.dexter.cash
Same endpoint for all supported chainsBSC quickstart (Permit2)
Install
npm i @dexterai/x402Usage
import { createX402Server } from '@dexterai/x402/server';
const server = createX402Server({
payTo: 'YourBscAddress',
network: 'eip155:56',
facilitatorUrl: 'https://x402.dexter.cash',
});
const requirements = await server.buildRequirements({
amountAtomic: '1000000000000000000', // 1 USDT (18 decimals)
resourceUrl: '/api/paid-endpoint',
});
res.setHeader('PAYMENT-REQUIRED', server.encodeRequirements(requirements));
res.status(402).end();