x402 facilitator | SKALE NetworkMAINNET
SKALE

SKALE Network

Full x402 v2 support for SKALE Network. Zero gas fees with high-throughput EVM-compatible settlement.

How it works on SKALE

Buyers pay on SKALE. Dexter verifies the x402 payment, signs the receipt, and settles to the seller on SKALE — with zero gas fees.

SKALEBuyer

Pay on SKALE

DexterDexter

Verify + settle

SKALESeller

Receive on SKALE

Capabilities

Everything you need to accept x402 payments on SKALE.

x402 v2 on SKALE

Full v2 support on SKALE Network with chain-native receipts.

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 & resources

Use the same facilitator endpoint everywhere.

Facilitator URL

One endpoint for every chain. Point your x402 client here.

https://x402.dexter.cash
Use this same URL for all supported chains: Solana, Base, Polygon, Avalanche, and more.

Documentation

Follow the integration guide and migration notes for x402 v2.

Open Docs

Facilitator dashboard

Live status, settlement metrics, and chain coverage in one view.

Open Dashboard

SKALE quickstart

Drop this into your stack and start collecting payments.

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

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