What is a BEP-20 Token?

BEP-20 (BNB Evolution Proposal) tokens are tokens that follow a set of standards defined for smart contracts on the BNB Smart Chain (BSC). BEP-20 defines the common rules for developers to adhere to when creating BSC tokens.

This enables smart contracts (tokens) to share a common set of standards. For example, to enable a token to define its total supply of tokens, "totalSupply" is used, instead of "totalNumber" or "totalTokens". Compliance to the standard avoids confusion and enables tokens to interact with wallets, exchanges, and different smart contracts smoothly without running into issues due to individual token differences.

The set of functions defined by the BEP-20 standard are:

totalSupply - get the total token supply
balanceOf - get the account balance of account address
transfer - send amount of tokens
transferFrom - define where the tokens are transfering from
approve - allow tokens to be withdrawn from sending address
allowance - returns the remaining tokens of the address

A list of BEP-20 Token is available on BscScan

  • Teck Yuan Lee
Updated