Glossary

What is ERC-20?

ERC-20 is the standard interface for fungible tokens on Ethereum and EVM chains like Monad, defining the functions (transfer, approve, balanceOf) every wallet and exchange expects a token to have.

ERC-20 is a technical specification, not a single contract. Any smart contract that implements its required functions — transfer, transferFrom, approve, allowance, balanceOf, and totalSupply — is an ERC-20 token. Because every token follows the same interface, wallets, DEXs, and explorers can support a new token without any custom code.

On Monad, ERC-20 works exactly as it does on Ethereum because Monad is EVM-compatible. A token you create with Monmint is a normal ERC-20 contract deployed on-chain, so it is immediately tradable on Monad DEXs and viewable in any EVM wallet.

Keep reading