Register Existing Token

If you own an ERC-20 token on a single chain and want a wrapped, bridgeable version on other chains, you can register it as a Canonical Interchain Token using the Interchain Token Factory contract. Each token can only be registered once as a canonical token on its “home chain”.

You can register your existing token directly via the contract or use the ITS Portal no-code solution. Take a look at the diagram below to understand the process of registering an existing token as a Canonical Interchain Token.

💡

This diagram is interactive—click on the function names!

Your browser does not support SVG

Use the registerCanonicalInterchainToken function to register your token.

function registerCanonicalInterchainToken(
address tokenAddress // address of your token
) external payable returns (bytes32 tokenId) {}

This function deploys a Lock/Unlock Token Manager on the source chain, connects it to ITS upon deployment, and returns a unique token ID. Triggering the registerCanonicalInterchainToken() function initiates the process of registering your custom token with a Lock/Unlock token manager type on your token’s home chain.

Once your token is registered on the home chain, you can call the deployRemoteCanonicalInterchainToken() function. This will deploy an Interchain Token on a different blockchain that connects to your canonical token on the home chain.

Note: This is just one of many flows available when interacting with ITS.

Use the deployRemoteCanonicalInterchainToken function to deploy the token on a remote chain as a cross-chain transaction:

function deployRemoteCanonicalInterchainToken(
address originalTokenAddress, // original token address
string calldata destinationChain, // destination chain name
uint256 gasValue // gas value
) public payable returns (bytes32 tokenId) {};

This function deploys a token connected to your registered token on the home chain, making it bridgeable to the destination chain, and returns a token ID.

🚨

NOTE: The security of your token is only as strong as the security of the chains with which it integrates. When deploying an interchain token, ensure that all target chains are trustworthy.

When transferring tokens across chains, you might want to execute specific code when the tokens arrive at their destination. This is possible by implementing the InterchainTokenExecutable interface in your destination contract.

Your destination contract should implement the InterchainTokenExecutable interface:

interface InterchainTokenExecutable {
function executeWithInterchainToken(
bytes32 commandId,
string calldata sourceChain,
bytes calldata sourceAddress,
bytes calldata data,
bytes32 tokenId,
address token,
uint256 amount
) external;
}

When tokens are sent to this contract, the executeWithInterchainToken function will be automatically called with:

  • amount: The quantity of tokens transferred
  • token: The address of the token contract
  • data: Any additional data you included with the transfer

When calling interchainTransfer, include your custom data in the metadata parameter using this format:

bytes metadata = bytes.concat(bytes4(0), yourCustomPayload);

Example usage:

// Encode function parameters or any data you want to pass
bytes memory yourCustomPayload = abi.encode(param1, param2, param3);
// Format metadata properly for execution
bytes memory metadata = bytes.concat(bytes4(0), yourCustomPayload);
// Send the interchain transfer with the metadata
interchainTokenService.interchainTransfer(
tokenId,
destinationChain,
destinationAddress,
amount,
metadata,
gasValue
);

This will:

  1. Transfer tokens to the destination contract
  2. Call executeWithInterchainToken on that contract
  3. Pass your custom data in the data parameter
  4. Provide the transferred amount in the amount parameter

For a full implementation example, see the its-executable example repository.

You can initiate an interchain transfer from your source chain to a destination chain by using the interchainTransfer method on the ITS contract.

For further examples utilizing the Interchain Token Service, check out the axelar-examples repository on GitHub. There, you will find an example implementation titled its-canonical-token, which demonstrates how to deploy canonical Interchain Tokens and perform cross-chain transfers.

For a step-by-step guide on registering an existing token, check out the Programmatically Create a Canonical Interchain Token Using the Interchain Token Service tutorial.

Edit on GitHub