ERC-20: Fungible Token Standard
The foundational standard for creating interchangeable tokens on Ethereum. ERC-20 defines a common interface for tokens, enabling seamless integration across wallets, exchanges, and dApps.
Key Functions:
totalSupply()- Returns the total token supplybalanceOf(address)- Returns account balancetransfer(address, uint256)- Transfers tokensapprove(address, uint256)- Approves spendingtransferFrom(address, address, uint256)- Transfers from approved account
ERC-20 powers millions of tokens including stablecoins like USDC and governance tokens like UNI.