What is Axelar?
Axelar is a decentralized interoperability network that lets blockchains communicate and transfer assets with each other. It runs its own proof-of-stake chain, where a decentralized set of 57 active validators verify cross-chain messages and reach consensus before anything is executed on the destination chain. This architecture means there is no single trusted relayer — security comes from the validator set itself. For developers building on Hedera, Axelar exposes two main capabilities:- Interchain Token Service (ITS): A mint/burn bridge that lets you deploy tokens across 83 connected chains, or register an existing token so it can move freely between Hedera and any other Axelar-connected network.
- General Message Passing (GMP): A protocol for calling arbitrary functions on contracts deployed on other chains — enabling cross-chain governance, NFT marketplaces, gaming, and more.
Overview of Axelar and HTS Compatibility
Axelar’s ITS is designed to work with Hedera Token Service (HTS) tokens natively. When a new Interchain Token is deployed on Hedera, ITS creates an HTS token rather than a standard ERC-20. This means the token is a first-class citizen on Hedera — it appears in wallets, is visible on HashScan, and benefits from HTS’s built-in compliance features. That said, HTS has architectural differences from ERC-20 that affect how ITS behaves on Hedera. The most important ones are covered in the Developer Considerations section below.Getting Started with Axelar on Hedera
Key Components
Interchain Token Service (ITS)
ITS is the primary way to bridge tokens to and from Hedera using Axelar. It supports two main flows: a no-code portal for simple deployments and a programmatic workflow for developers.ITS Portal (No-Code)
The ITS Portal provides a web interface for both deploying new tokens and registering existing ones. The steps for bridging an existing Ethereum token to Hedera are:- Connect your wallet and enter your token’s address on the source chain (e.g., Ethereum mainnet).
- Register the token with ITS on the source chain.
- Select Hedera as the destination chain and deploy the token representation.
- Your token is now bridgeable between Ethereum and Hedera, and automatically listed on Squid for cross-chain swaps.
Programmatic ITS Workflow (CLI)
For developers who need more control, theaxelar-contract-deployments repository provides CLI scripts to manage the entire ITS lifecycle. The following is a verified workflow for deploying a new HTS-backed Interchain Token from Hedera to other chains.
Prerequisites:
- A Hedera testnet account with HBAR.
- The
axelar-contract-deploymentsrepo cloned locally.
InterchainTokenFactory to spend it. This is required to pay the HTS token creation fee.
initialSupply must be 0.
tokenId and the Hedera tokenAddress (e.g., 0x00...0069d5A1).
Step 3: Associate Your Account with the New Token
Before you can mint or receive the new token, your account must be associated with it.
TokenManager to spend them, and perform an interchain transfer.
General Message Passing (GMP)
GMP lets a smart contract on Hedera call a function on a contract deployed on any other Axelar-connected chain, and vice versa. Contract Addresses
Example: Sending a message from Hedera to Avalanche
The following example uses
foundry cast to send a message from a contract on Hedera testnet to a contract on Avalanche Fuji.
The
--value parameter is mandatory for all GMP calls. It pays the Axelar gas fee for the cross-chain execution. Any overpaid amount is automatically refunded. You can estimate the required fee at: https://testnet.api.axelarscan.io/gas-payment/gas-fee/{sourceChain}/{destinationChain}.Developer Considerations & Known Issues
HTS has several architectural differences from ERC-20 that affect how Axelar ITS and GMP behave on Hedera. Review these carefully before building.Token Creation Fee and WHBAR
Creating a new HTS token requires a fee paid in HBAR. Because ITS contracts are EVM-based and cannot hold HBAR directly, the ITS implementation on Hedera uses Wrapped HBAR (WHBAR) to pay this fee. When deploying a new Interchain Token on Hedera, you must ensure the deploying account has sufficient WHBAR approved for theInterchainTokenFactory contract.
No Initial Supply on Deploy
Deploying a new Interchain Token with an initial supply is not currently supported on Hedera. This is because an account must be explicitly associated with an HTS token before it can receive a balance.Non-Deterministic HTS Token Addresses
Unlike ERC-20 tokens, HTS tokens do not have addresses derived from the deployer’s address and nonce. After deploying a new Interchain Token on Hedera, retrieve its address by callingIInterchainTokenService(its).registeredTokenAddress(tokenId);.
Token Association Requirement
Before any account or contract can receive an HTS token, it must be associated with that token. If your contract needs to receive ITS tokens, it must implement theInterchainTokenExecutable interface and associate itself with the token, for example:
Unsupported Token Key Types
ITS does not support HTS tokens that have thekycKey, wipeKey, freezeKey, or pauseKey set. An adminKey can be used to update existing keys, but it cannot add new keys if they were not defined when the token was created.
Maximum Supply
The maximum supply for an HTS token is 2^63 − 1, which is significantly smaller than the 2^256 − 1 maximum for standard ERC-20 tokens.gasLimit Workaround for Remote Deployment
When using Hardhat or a similar framework to call deployRemoteCanonicalInterchainToken programmatically, you may encounter a “cannot estimate gas” error. This is a known issue. The workaround is to manually specify a high gas limit in the transaction options: