Overview
Finality refers to the point at which a blockchain transaction becomes irreversible. CCTP uses finality thresholds to determine when it’s safe to issue attestations for cross-chain transfers.Finality Thresholds
CCTP V2 supports two finality threshold values:1000 - Fast Transfer
Lower threshold for faster attestations with a fee
2000 - Standard Transfer
Higher threshold for secure, fee-free transfers
Fast Transfer (Threshold 1000)
Characteristics:- Attestation time: ~8-20 seconds
- Fee: 1-14 basis points depending on source chain
- Security level: Lower finality threshold
- Use case: Time-sensitive transfers where speed is critical
Standard Transfer (Threshold 2000)
Characteristics:- Attestation time: ~13-19 minutes for most chains, ~8 seconds for instant finality chains
- Fee: No fee (0 bps)
- Security level: Higher finality threshold
- Use case: Cost-sensitive transfers with no time constraints
Instant Finality Chains
Some chains have instant finality, meaning transactions are final immediately after confirmation. For these chains, Standard Transfer is just as fast as Fast Transfer.Mainnet Instant Finality Chains
- Avalanche (Domain 1) - Avalanche consensus provides instant finality
- Polygon PoS (Domain 7) - PoS mechanism with fast finality
- Sonic (Domain 13) - Instant finality design
- Sei (Domain 16) - Optimistic parallelization with instant finality
- XDC (Domain 18) - XDPoS consensus with instant finality
- HyperEVM (Domain 19) - Instant finality architecture
Testnet Instant Finality Chains
- Avalanche Fuji (Domain 1)
- Polygon PoS Amoy (Domain 7)
- Sonic Testnet (Domain 13)
- Sei Testnet (Domain 16)
- XDC Apothem (Domain 18)
- HyperEVM Testnet (Domain 19)
- Arc Testnet (Domain 26)
Fast Transfer is not available when instant finality chains are the source, as Standard Transfer already provides ~8 second attestations with no fee.
How Finality Works
Finality threshold reached
The source chain waits for the specified finality threshold (1000 or 2000) to be reached
Attestation Timing
Fast Transfer Timing
Standard Transfer Timing
- Regular EVM chains: ~13-19 minutes
- Instant finality chains: ~8-10 seconds
Auto-Selection Logic
When usingTransferTypeAuto, the SDK automatically selects the optimal transfer type:
- Instant finality source chain → Standard Transfer (no fee, same speed)
- Regular EVM source chain → Fast Transfer (faster attestation with fee)
Checking Chain Finality
You can check if a chain has instant finality:Comparison Table
| Chain Type | Fast Transfer | Standard Transfer |
|---|---|---|
| Regular EVM | ~8-20 seconds (with fee) | ~13-19 minutes (no fee) |
| Instant Finality | Not available | ~8-10 seconds (no fee) |
Best Practices
When to use Fast Transfer
When to use Fast Transfer
- Time-sensitive applications (trading, arbitrage)
- Source chain is not an instant finality chain
- Fee is acceptable for your use case
When to use Standard Transfer
When to use Standard Transfer
- Cost is the primary concern
- Source chain has instant finality
- You can wait 13-19 minutes for regular EVM chains
When to use Auto mode
When to use Auto mode
- Building a general-purpose application
- Want the SDK to choose optimally based on chain capabilities
- Need consistent behavior across different chains
See Also
Transfer Types
Learn about Fast and Standard transfers
Supported Chains
View all chains and their finality characteristics
Fees
Understand fee calculation
IrisClient
Attestation polling API