This is CCTP V1 version. For the latest version, see CCTP.
Interactive Tutorial with Developer ServicesIf you are new to building smart contracts, check out our
interactive tutorial where you can transfer
USDC using Circle’s Developer Services: Contracts and Wallets.
- In this first step, you initiate a transfer of USDC from one blockchain to another, and specify the recipient wallet address on the destination chain. This step approves the Ethereum Sepolia TokenMessenger contract to withdraw USDC from the provided Ethereum Sepolia wallet address.
Javascript
- In this second step, you facilitate a burn of the specified amount of USDC on
the source chain. This step executes the
depositForBurnfunction on the Ethereum Sepolia TokenMessenger contract deployed on Sepolia testnet.
Javascript
- In this third step, you make sure you have the correct message and hash it.
This step extracts
messageBytesemitted by the MessageSent event fromdepositForBurntransaction logs and hashes the retrievedmessageBytesusing the keccak256 hashing algorithm.
Javascript
- In this fourth step, you request the attestation from Circle, which provides
authorization to mint the specified amount of USDC on the destination chain.
This step polls the attestation service to acquire the signature using the
messageHashfrom the previous step.
Rate LimitThe attestation service rate limit is 35 requests per second. If you exceed 35
requests per second, the service blocks all API requests for the next 5
minutes and returns an HTTP 429 response.
Javascript
- In this final step, you enable USDC to be minted on the destination chain.
This step calls the
receiveMessagefunction on the Avalanche Fuji MessageTransmitter contract to receive USDC at the Avalanche Fuji wallet address.
Javascript
WHAT’S NEXT