ERC/EVM-Compatible Tokenization
Last updated
Was this helpful?
Last updated
Was this helpful?
Hedera provides full compatibility with ERC token standards through its EVM smart contract support, allowing developers to deploy and interact with ERC-20, ERC-721, and other EVM-based tokens. By integrating ERC standards with Hedera’s scalability, security, and low fees, developers can use familiar EVM tooling while benefiting from Hedera’s performance optimizations.
Deploy ERC-20, ERC-721, and other EVM-based contracts directly on Hedera's EVM implementation.
Use EVM-native tools like Hardhat, Web3.js, ethers.js, and Remix to interact with smart contracts.
Interact with smart contracts via JSON-RPC relay, maintaining a familiar EVM development workflow.
Achieve greater scalability and efficiency, with predictable low-cost transactions and higher throughput than Ethereum.
This makes Hedera an ideal platform for EVM developers looking for high-performance alternatives without modifying their existing smart contracts.
Hedera supports multiple ERC token standards, allowing developers to deploy smart contracts that interact seamlessly with EVM dApps and wallets.
These standards enable the deployment of any smart contract, including DeFi applications and tokenization contracts like ERC-20 and ERC-721 tokens. This compatibility alows EVM developers to leverage familiar workflows, tools and, frameworks on Hedera.
Hedera provides a JSON-RPC relay, making it easy for developers to interact with smart contracts using EVM-native tools. These tools provide standard EVM developer workflows on Hedera's EVM environment. Developers can use the same JSON-RPC methods as Ethereum, ensuring compatibility with dApps, wallets, and DeFi protocols.
Hedera provides facade contracts (per HIP-218 and HIP-376) that allow HTS-native tokens to function as ERC-20 or ERC-721 tokens. With facade contracts, developers can leverage Hedera’s efficiency while maintaining EVM compatibility. Theses enable:
HTS tokens to be used in EVM wallets without modification.
EVM-based dApps and DeFi platforms to interact with HTS assets.
Seamless token transfers using standard ERC functions (transfer()
, approve()
, transferFrom()
).
IHRC904AccountFacade.sol
IHRC906AccountFacade.sol
IHRC755ScheduleFacade.sol
📣 Learn more about facade contracts and how they work here.
When transferring HTS tokens on Hedera, recipients must associate the token with their account before receiving it. Learn more about token auto associations and fees.
Smart contract tokens like ERC-20 and ERC-721 emit events, creating contract logs that developers can query or subscribe to. Hedera Token Service (HTS) tokens do not natively generate such event logs. As a solution to this limitation, Hedera Mirror Nodes generate synthetic event logs, enabling event-driven workflows to mimic the behavior of smart contract tokens for HTS transactions. Synthetic events are generated for transactions such as:
CryptoTransfer
CryptoApproveAllowance
CryptoDeleteAllowance
TokenMint
TokenWipe
TokenBurn
This feature enables developers to effectively monitor HTS token activities as if they were smart contract tokens. An example code implementation demonstrating using ethers.js to listen to synthetic events can be found here.