Address Converter

Address Converter

Convert between Cosmos (Bech32) and EVM (Hex) address formats on Integralayer

Convert Address
Enter a Cosmos or EVM address to convert it to the other format

Accepts both Cosmos (integra1...) and EVM (0x...) formats

Bech32
Cosmos Address

The Cosmos address format uses Bech32 encoding with the "integra" prefix.

Used with Keplr wallet and Cosmos CLI tools
Format: integra1... (46 characters)
Used for staking, governance, IBC transfers
Hex
EVM Address

The EVM address format uses standard Ethereum hex encoding.

Used with MetaMask and Web3 tools
Format: 0x... (42 characters)
Used for smart contracts, DeFi, NFTs
How It Works

Integralayer uses the same account model as other Cosmos EVM chains (like Evmos). Both address formats derive from the same 20-byte public key hash:

1. Private Key generates Public Key (secp256k1)
2. Public Key → Keccak256 hash → last 20 bytes
3. 20 bytes → Hex encoding = EVM address (0x...)
4. 20 bytes → Bech32 encoding = Cosmos address (integra1...)

This means any transaction sent to either address format will be received by the same account.