SKALE Base already proved that zero-gas payments work. SKALE BITE V2 takes it further: zero gas and encrypted transactions.
What is BITE?
BITE (Blockchain Integrated Threshold Encryption) is SKALE's protocol for encrypting transactions before they reach consensus. Every transaction submitted to a BITE-enabled chain is encrypted in the mempool, decrypted only after block inclusion is finalized. No validator, no searcher, no one can see the transaction contents before execution.
For x402 payments, this means:
- No MEV extraction - payment transactions cannot be front-run or sandwiched
- No payment sniping - the signed
transferWithAuthorizationis invisible until settled - Privacy by default - transaction amounts and participants are hidden until finalized
How It Works
The payment flow is identical to every other EVM network on RelAI:
- API returns HTTP 402 with x402 v2 payment requirements
- User signs an EIP-3009
transferWithAuthorization- a single off-chain signature - RelAI submits the encrypted transaction on SKALE BITE V2 - zero gas cost
- BITE decrypts after consensus - USDC moves from buyer to merchant atomically
- User receives the API response - instant access
Technical Details
| Property | Value |
|---|---|
| Network | SKALE BITE V2 Sandbox (eip155:103698795) |
| Token | USDC (0xc4083B1E81ceb461Ccef3FDa8A9F24F0d764B6D8) |
| Standard | EIP-3009 transferWithAuthorization |
| Gas Token | sFUEL (free, zero cost) |
| Encryption | BITE threshold encryption |
| x402 Version | v2 |
| Facilitator URL | https://facilitator.x402.fi |
| RPC | https://base-sepolia-testnet.skalenodes.com/v1/bite-v2-sandbox |
| Explorer | https://base-sepolia-testnet-explorer.skalenodes.com:10032 |
EIP-3009 + BITE
The EIP-3009 transferWithAuthorization signature is created off-chain by the user, just like on any other EVM network. When RelAI submits this to SKALE BITE V2, the transaction is automatically encrypted before entering the mempool. Validators process the encrypted transaction, and decryption happens only after the block is finalized. The result: atomic USDC transfer with zero gas and full transaction privacy.
Why BITE Matters for x402
MEV Protection
On public mempools, a signed transferWithAuthorization is visible before execution. A sophisticated attacker could theoretically extract value by observing payment patterns. On BITE, this vector does not exist - the authorization is encrypted until after execution.
Agent Privacy
As AI agents increasingly use x402 to pay for API access, the pattern of which agents call which APIs becomes valuable intelligence. BITE ensures this pattern is not observable on-chain until after the fact.
Micropayment Viability
| Network | Gas Cost | MEV Risk | Transaction Privacy |
|---|---|---|---|
| Ethereum | ~$0.50 - $5.00 | High | None |
| Base | ~$0.001 - $0.01 | Medium | None |
| Polygon | ~$0.001 - $0.01 | Medium | None |
| SKALE Base | $0.00 | Low | None |
| SKALE BITE V2 | $0.00 | None | Full (pre-consensus) |
For Developers
Setting Up SKALE BITE V2 Payments
{
network: 'skale-bite',
facilitator: 'relai',
pricing: {
'GET /data': { amount: '100' } // $0.0001 in USDC (6 decimals)
}
}
Using the RelAI SDK
import { createX402Client } from '@relai-fi/x402'
const client = createX402Client({
evmWallet: {
address: userAddress,
signTypedData: wallet.signTypedData,
}
})
const response = await client.fetch('https://your-api.com/data')
// Same SDK, same flow - BITE encryption is transparent to the developer
Getting USDC on SKALE BITE V2
USDC on SKALE BITE V2 Sandbox is available through the SKALE ecosystem tooling. Once on the chain, USDC works identically to other EVM networks - same EIP-3009 signatures, same atomic transfers, with added BITE encryption.
SKALE BITE V2 vs SKALE Base
Both are zero-gas SKALE chains. The difference:
| Feature | SKALE Base | SKALE BITE V2 |
|---|---|---|
| Gas cost | Zero | Zero |
| EIP-3009 | Yes | Yes |
| Transaction encryption | No | Yes (BITE) |
| MEV protection | Partial | Full |
| Best for | General micropayments | Privacy-sensitive APIs, agent commerce |
Use Cases
- AI agent payments - agents paying for data feeds, model inference, and tool access without revealing their strategy
- Competitive intelligence APIs - consuming market data without broadcasting which datasets you're buying
- High-frequency micropayments - thousands of sub-cent API calls with zero gas and zero MEV
- Private API marketplaces - buyers and sellers transact without public visibility of usage patterns
Start Building
SKALE BITE V2 support is live now on the RelAI Facilitator. Set network: 'skale-bite' in your API configuration and start accepting encrypted zero-gas USDC payments.
New to RelAI? Check out our quickstart guide or explore the marketplace to see x402 APIs in action.
RelAI is the gas-sponsoring facilitator for the x402 payment protocol. On SKALE BITE V2, there's nothing to sponsor and nothing to see - gas is free and transactions are encrypted. That's the future of payments.
