SKALE
MAINNETFull x402 v2 support for SKALE Network. Zero gas fees with high-throughput EVM-compatible settlement.
Freeminimum 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 SKALE
exact scheme (zero gas)
Fixed-price payments with zero gas. Upto scheme coming when the x402 Foundation deploys the proxy to SKALE.
Zero gas fees
SKALE eliminates gas costs entirely — buyers and sellers pay nothing for on-chain settlement.
Public facilitator URL
One endpoint shared across every supported chain.
High throughput
EVM-compatible chain with high TPS and instant finality.
Integration
https://x402.dexter.cash
Same endpoint for all supported chainsSKALE quickstart
Install
npm i @dexterai/x402Usage
import { createX402Server } from '@dexterai/x402/server';
const server = createX402Server({
payTo: 'YourSkaleAddress',
network: 'eip155:1187947933',
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();