Swift V1 (Current Live Version)
Fee Collection- Fees are collected on the destination chain only if the bridge is successfully completed.
- Collected via the output token.
- From Solana: up to 100 bps
- From other chains: up to 50 bps
Swift V2 (Coming Soon)
Fee Collection- Fees are collected on the source chain once the bridge is successfully completed.
- Collected via the locked assets (e.g., USDC, ETH).
- Maximum referral fee for all chains: 100 bps
MCTP Method
Fee Collection- Fees are collected on the destination chain only if:
- The bridge includes a swap on the destination chain. (e.g., USDC → USDC transfers have no fee)
- The bridge completes successfully.
- Fees are collected in the Circle-issued stablecoin minted during bridging (USDC or EURC).
- Maximum referral fee:
- From Solana: up to 100 bps
- From other chains: up to 50 bps
FastMCTP Method
Fee Collection- Fees are collected on the destination chain only if the bridge is successfully completed.
- Unlike MCTP, the existence of a swap on the destination chain does not matter.
- Fees are collected in the Circle-issued stablecoin (USDC or EURC).
- Maximum referral fee for all chains: 100 bps
WH Method
Fee Collection- All referral fees are received on the Solana chain.
- Fees are only distributed if the bridge is successfully completed and includes a swap.
(Example: a bridge from Ethereum → Solana where ETH is swapped to WETH will not generate referral fees.) - The fees are collected in the output token and automatically transferred to the referrer Solana address.
- The default referral fee rate is 10 bps (0.1%).
- Referrers can configure their preferred rate from 0 to 50 bps.
- Use the Referrer Fee Management page to set your on-chain referral fee.
- You must specify a valid Solana wallet address as your referral address.
General Rules
- For all methods except WH, you can set your referral fee rate by including
referrerBpsin the quote request parameters. - For all methods except Swift V2 with EVM source chains, referral fees are automatically transferred to the referrer’s address.
- For Swift V2 (EVM source) orders:
- Referral fees are deposited into the fee manager contract.
- Referrers can withdraw them using their address signature.
How to Enable Referral Fees in the SDK
Step 1 — Prepare Referrer Addresses
You must prepare a referral address for each VM type:Step 2 — During Quote Fetching
- Always pass your Solana referral address as the
"referrer"parameter. - Set your desired referral fee (in bps) as
"referrerBps". - Note: Always use the Solana address as your referrer, regardless of source or destination chain (even for EVM → EVM routes).
Step 3 — During Transaction Building
All transaction or bridge functions in the SDK accept an optionalreferrerAddresses parameter:
The SDK will automatically determine which wallet to use based on the selected bridge method, source, and destination. This ensures referral fees are correctly routed, regardless of the bridge type or source/destination chains.