Example USDC as Native Token (DIY)
Learn how to transfer USDC to a new Avalanche L1 and use it as a native token via ICTT.
In this section, you will learn how to transfer USDC from Avalanche’s C-Chain to a new Avalanche L1 using Interchain Token Transfers (ICTT) and set it up to act as the native token on the new L1. This guide will take you through the steps of configuring a local network environment, deploying the necessary contracts, and transferring tokens.
Create a new blockchain and Deploy on Local Network
Use the Avalanche CLI to create a new blockchain where you will deploy USDC as the native token.
Acquire USDC On Fuji C-Chain
The address for USDC on Fuji C-Chain is 0x5425890298aed601595a70ab815c96711a31bc65
.
For convience we have already deployed a TokenHome
to the C-Chain for USDC with the address 0x546526F786115af1FE7c11aa8Ac5682b8c181E3A
You can use the Core Faucet to get some USDC on Fuji.
Deploy Interchain Token Transfer Contracts
Set up the remote transferer contracts for transferring tokens between the C-Chain and the newly created L1.
NativeTokenRemote
Contract onmyblockchain
Note: When deploying the NativeTokenRemote
contract on the L1, ensure that the initial amount matches the native token amount that was minted when the blockchain was created. This ensures consistency between the native token supply and the remote token counterpart.
Granting Native Minting Rights to NativeTokenRemote Contract
To ensure that the NativeTokenRemote
contract can mint native tokens on the L1 when USDC tokens are transferred from the C-Chain
, the contract must be granted minting rights. This is done by adding the NativeTokenRemote contract
address to the Native Minter Precompile
.
-
You will need to interact with the
Native Minter Precompile
, which resides at a fixed address on all Avalanche L1s:
Native Minter Precompile Address:0x0200000000000000000000000000000000000001
-
Use the following command to grant the
NativeTokenRemote
contract minting rights by setting it as an enabled address on the Native Minter Precompile:
$NATIVE_TOKEN_REMOTE_L1
: The deployed address of theNativeTokenRemote
contract on your L1.
Once this step is completed, the NativeTokenRemote
contract will have the necessary permissions to mint native tokens when USDC tokens are transferred from the C-Chain.
Register Remote Token with Home Transferer
Register the remote token on the home chain so that it recognizes the transferer contracts.
Collateralize and Transfer Tokens
Add collateral to the transferer contract on the home chain, and then send the USDC tokens across chains.
- Approve Tokens for Transfer
Approve a certain number of tokens to be used by the Home Transferer.
- Add Collateral and Send Tokens
Add collateral to the transferer contract.
You can also confirm whether the Transferer is collateralized now by running the below command:
Send tokens to the L1
Check Balance
Conclusion
Follow the steps above to transfer a USDC token from the C-Chain to your custom Avalanche L1 and use it as the native token. This exercise will demonstrate how Avalanche’s Interchain Token Transfer (ICTT) system works, ensuring that tokens are properly locked, transferred, and minted across multiple chains.
For more detailed information, refer to the official Avalanche ICTT documentation.