EVMTools

Function Selector Lookup

Calculate Solidity function selectors from signatures using keccak256. Browse a table of 30+ common ERC-20, ERC-721, and Ownable selectors.

Try These Signatures

About Function Selectors

  • A function selector is the first 4 bytes of the keccak256 hash of the function signature
  • The EVM uses selectors to dispatch calls to the correct function
  • Signature format: functionName(type1,type2) -- no spaces, no parameter names
  • Selectors are used in calldata, event topics, and interface detection (ERC-165)