Before you launch
- Network targets. Your application reads mainnet values, not testnet: chain ID
988, RPChttps://rpc.stable.xyz, explorerhttps://stablescan.xyz. Full configuration is in Connect. - Contracts verified. Deployed contracts are verified on stablescan.xyz so users and partners can inspect them.
- Mainnet funding path. You have a documented way for production wallets to acquire USDT0 — direct, bridge via LayerZero, or custodian. Faucets are testnet-only.
- Environment isolation. Keys, RPC credentials, and signing paths are separated between testnet and mainnet.
Security checks
USDT0’s dual-role behavior breaks a handful of assumptions ported from Ethereum. Each item below should be validated — the full list is in the migration checklist. Solvency checks read real native balance, not a mirror.approve / transferFrom / permit path has a test that attempts to drain the contract’s native balance.
Zero-address transfers are rejected before the call.
EXTCODEHASH. Permit-based approvals change native balance without a nonce increment, so EXTCODEHASH can oscillate between zero hash and empty hash. Use explicit tracking instead.
Performance and reliability
- RPC redundancy. Production traffic has a failover plan. Third-party providers are listed in RPC providers.
- Gas estimation. Transactions set
maxPriorityFeePerGasto0and computemaxFeePerGasfrom the current base fee. See Gas pricing. - Block time. Blocks are produced roughly every 0.7 seconds with single-slot finality. Poll intervals and confirmation thresholds are tuned to this cadence.
- Retries. Transient RPC errors are retried idempotently. For financially sensitive flows, inclusion is verified via receipts or logs before downstream state changes.
Operational ownership
- Monitoring. If you run your own nodes, alerts watch block production, peer health, and RPC latency — see Monitoring. If you use a third-party RPC, track provider SLAs and failover telemetry.
- Upgrades. Protocol releases are tracked so node operators can schedule upgrades — see Mainnet version history.
- Runbooks. Rollback procedures exist for contract pauses, key rotation, and RPC provider switches.
Support and escalation
- Developer assistance — FAQ and reference pointers.
- Discord — community support and protocol updates.
bizdev@stable.xyz— partnership and integration conversations.
Next recommended
USDT0 behavior
Read the full migration checklist and contract design requirements.
Mainnet information
Check mainnet chain parameters and version history.
RPC providers
Pick third-party RPC providers for redundancy.
Monitoring
Wire metrics and alerts for block production and RPC health.

