USDT0 as gas
You pay transaction fees in USDT0 — the same asset you’re already holding and transacting in. There’s no second token to fund or manage. USDT0 is both the native gas asset (18 decimals, read viaaddress(x).balance) and an ERC-20 token (6 decimals, read via USDT0.balanceOf(x)). Both interfaces operate on the same underlying balance, and the protocol reconciles the 12-digit precision gap automatically.
Guaranteed blockspace
Stable reserves a portion of each block’s capacity for pre-allocated enterprise workloads. Reserved traffic settles with predictable latency and cost even when general traffic is congested — it doesn’t compete in the fee market. This behavior is transparent at the caller level. You submit transactions the normal way; allocations are applied at the protocol level for enrolled accounts. Read more: Guaranteed blockspace.USDT transfer aggregator
High-volume USDT0 transfers are batched and verified in parallel using a MapReduce-inspired pipeline. Per-account failures are isolated, so one bad transfer doesn’t abort the batch. The caller-side transfer API is unchanged — you submit transfers the normal way and gain throughput without code changes. Read more: USDT transfer aggregator.EVM compatibility
Standard EVM tooling works unchanged. Three behaviors differ from Ethereum. Single-slot finality. A transaction is final once included in a block. Blocks are produced roughly every 0.7 seconds. No priority tips.maxPriorityFeePerGas is always ignored. The effective gas price is the base fee set by the protocol.
address(0) transfers, and should not rely on EXTCODEHASH for address-reuse detection.
Read more: Differences from Ethereum · Core mechanics · USDT0 migration checklist.
Confidential transfer (planned)
Stable has a planned feature for zero-knowledge transfers that hide amounts while staying auditable for authorized parties. It is not yet live. Read more: Confidential transfer.Next recommended
Quick start
Connect to testnet and send a first transaction.
USDT0 behavior
Port a contract to Stable without hitting dual-role gotchas.
Gas pricing
Construct transactions correctly on Stable’s fee model.
Production readiness
Validate an integration before shipping to mainnet.

