misterfocusth
BEP20-Token-Contract-Template
Solidity

Binance Smart Chain (BEP20) Token Template

Last updated Dec 21, 2025
34
Stars
36
Forks
0
Issues
0
Stars/day
Attention Score
37
Language breakdown
Solidity 100.0%
Files click to expand
README

BEP20-Token-Contract-Template

Binance Smart Chain (BEP20) Token Template

A BEP20 token must implement the interface IBEP20 in IBEP20.sol. This is a template contract BEP20Token.template. Users just need to fill in name, symbol, decimals and totalSupply according to their own requirements:

constructor() public { name = {{TOKENNAME}}; symbol = {{TOKENSYMBOL}}; _decimals = {{DECIMALS}}; totalSupply = {{TOTALSUPPLY}}; balances[msg.sender] = totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); }

Then users can use Remix IDE and Metamask to compile and deploy the BEP20 contract to BSC.

Credit : https://docs.binance.org/smart-chain/developer/BEP20.html

© 2026 GitRepoTrend · misterfocusth/BEP20-Token-Contract-Template · Updated daily from GitHub