Introduction EVM Relayer Solidity UtilitiesSandbox
InterchainTokenServiceInterchainTokenFactoryTokenManagerAxelarGateway AxelarGasServiceAxelarExecutableAxelarJS SDK
Onboard Your IBC chainBug Bounty
Crosschain Message FlowaxlUSDCSecurity OverviewInterchain Transaction DurationEVM Contract Governance

Token Managers

Token Managers are contracts that facilitate the connection between your interchain token to the Interchain Token Service (ITS). For certain manager types, such as mint/burn Token Manager, the manager is the msg.sender of the transaction being executed on the destination chain for the token when it is bridged in.

Token Manager Types

There are different types of token managers available for developers to offer different types of integrations to ITS. These are; nativeInterchain, mintBurnFrom, lockUnlock, lockUnlockFee, mintBurn, and gateway.

Each of these types correspond to an enum value. When deploying a token manager developers must pass in the corresponding value for their desired token manager type.

NativeInterchainToken: 0
Mint/BurnFrom: 1
Lock/Unlock: 2
Lock/UnlockFee: 3
Mint/Burn: 4
Gateway: 5

Native Interchain Token

For tokens that are deployed directly from ITS itself they use a native interchain token manager. Tokens that are deployed via the frontend portal also use this type of manager.

For more details checkout this native interchain token example

Mint/Burn From

The mint/burnFrom token manager type, allows tokens to be burnt on the source chain when they are transferred out of that chain and minted they are transferred back into the source chain. As the name suggests when the token is burnt on the source chain the manager is looking to trigger the burnFrom() function on the token rather than the burn() function. The main implication is that ITS must be approved to call burnFrom() by the token. The manager must be granted the role to be able to mint() the token on the destination chain.

For more details checkout this Mint/BurnFrom example

Lock/Unlock

Token integrations using the lock/unlock token manager will have their token locked with their token’s manager. Only a single lock/unlock manager can exist for a token as having multiple lock/unlock managers would make it substantially more difficult to manage liquidity across many different blockchains. These token managers are best used in the case where a token has a “home chain” where a token can be locked. On the remote chains users can then use a wrapped version of that token which derives it’s value from a locked token back on the home chain. Canonical tokens for example deployed via ITS are examples where a lock/unlock token manager type is useful. When bridging tokens out of the destination chain (locking them at the manager) ITS will call the transferTokenFrom() function, which in turn will call the safeTranferFrom() function. For this transaction to be successful, ITS must be approved() to call the safeTransferFrom() function, otherwise the call will revert.

For more details checkout this Canonical token example. Canonical tokens use lock/unlock token managers on their home chain.

Lock/Unlock Fee

This manager type is similar to the lock/unlock token manager, where the manager locks the token on it’s “home chain” when it is bridged out and unlocks it when it is bridged back. The key feature with this token manager is that you have the option to set a fee that will be deducted when executing an interchainTransfer().

For more details checkout this Lock/UnlockFee example

Mint/Burn

The mint/burn token manager type is the most common token manager type used for integrating tokens to ITS. This token manager type is used when there is no home chain for your token and allows you to burn() tokens from the source chain and mint() tokens on the destination chain. The manager will need to be granted the role to be able to execute the mint() and burn() function on the token.

For more details checkout this Mint/Burn example

Gateway

For tokens that will be connected with the AxelarGateway this Gateway manager type is also available. It will allow tokens to be sent cross-chain via the callContractWithToken() function

Flow Limits

Token Managers handle the flow limits for a token’s ITS integration. A flowLimit is a set amount that controls the amount in which a token can be sent in/out of a given blockchain. This can have a variety of different usecases including for security emergencies on a given chain where you want to restrict the flow of your token for that particular blockchain.

For each cross-chain transaction that goes through ITS the flowIn & flowAmount amount are increased to track the inflow and outflow of tokens. To set the flowLimit of a given token the caller must be a registered flowLimiter.

For more information on flowLimits, see Flow Limit in Interchain Token Service

Edit this page