Contract responsibilities
- TokenMessengerV2: Entrypoint for crosschain USDC transfer. Routes messages to burn USDC on a source blockchain and mint USDC on a destination blockchain.
- MessageTransmitterV2: Generic message passing. Sends all messages on the source blockchain and receives all messages on the destination blockchain.
- TokenMinterV2: Responsible for minting and burning USDC. Contains blockchain-specific settings used by burners and minters.
- MessageV2: Provides helper functions for crosschain transfers, such as
bytes32ToAddressandaddressToBytes32, which are commonly used when bridging between EVM and non-EVM blockchains.
Gas optimization tip: If you’re writing your own integration, it’s more
gas-efficient to
include address conversion logic directly in your contract
rather than calling an external contract.
TokenMessengerV2
depositForBurn
Deposits and burns tokens from sender to be minted on destination domain. Minted tokens will be transferred tomintRecipient.
Note: There is a $10 million limit on the amount of USDC that can be burned
in a single CCTP transaction. If the amount exceeds this limit, the transaction
will revert. If you need to transfer more than this limit, break up your
transfers into multiple transactions.For Fast Transfers, you should always
check the remaining allowance
before initiating a transfer to ensure there is enough to complete your
transfer.
Example
Solidity
depositForBurnWithHook
Deposits and burns tokens from sender to be minted on destination domain, and emits a crosschain message with additional hook data appended. In addition to the standarddepositForBurn parameters, depositForBurnWithHook accepts a
dynamic-length hookData parameter, allowing you to include additional metadata
that can trigger custom logic on the destination blockchain.
Note: There is a $10 million limit on the amount of USDC that can be burned
in a single CCTP transaction. If the amount exceeds this limit, the transaction
will revert. If you need to transfer more than this limit, break up your
transfers into multiple transactions.For Fast Transfers, you should always
check the remaining allowance
before initiating a transfer to ensure there is enough to complete your
transfer.
getMinFeeAmount
Calculates and returns the minimum fee required for a given amount in a Standard Transfer. If the minimum fee (per unit ofburnToken) is non-zero, the
specified maxFee must be at least the returned minimum fee. Otherwise, the
burn will revert onchain.
Parameters
handleReceiveFinalizedMessage
Handles incoming message received by the local MessageTransmitter. For a burn message, mints the associated token to the requested recipient on the local domain. Validates the function sender is the local MessageTransmitter, and the remote sender is a registered remote TokenMessenger forremoteDomain.
This method is called for messages where finalityThresholdExecuted ≥ 2000
(Standard Transfer).
Parameters
handleReceiveUnfinalizedMessage
Handles incoming message received by the local MessageTransmitter. For a burn message, mints the associated token to the requested recipient on the local domain. Similar tohandleReceiveFinalizedMessage, but is called for messages
which are not finalized (finalityThresholdExecuted < 2000) such as Fast
Transfers.
Unlike handleReceiveFinalizedMessage, handleReceiveUnfinalizedMessage
processes messages with:
expirationBlock: IfexpirationBlock≤blockNumberon the destination domain, the message will revert and must be re-signed without the expiration block.feeExecuted: If nonzero, thefeeExecutedamount is minted to thefeeRecipient.
MessageTransmitterV2
receiveMessage
Receives message on destination blockchain by passing message and attestation.
Emits MessageReceived event. Messages with a given nonce can only be broadcast
successfully once for a pair of domains. The message body of a valid message is
passed to the specified recipient for further processing.
Parameters
Example
Solidity
sendMessage
Sends a message to the recipient on the destination domain. Emits a
MessageSent event which will be attested by Circle’s attestation service.
Parameters