Skip to content

Reuseable BEP20 Token contract on Binance Smart Chain

Notifications You must be signed in to change notification settings

momodaka/open-binancex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

open-binancex

Reuseable BEP20 Token contract

base

BEP20.sol

contract TestToken is BEP20 {
    constructor() public BEP20("TestToken", "TEST", 18) {
        _mint(msg.sender, 1000000000000000000);
    }
}

Extensions

BEP20Burnable.sol

BEP20OwnerTransferable.sol

ERC20Pausable.sol

contract MyToken is BEP20, BEP20OwnerTransferable, BEP20Burnable {
    constructor (string memory name, string memory symbol)
        BEP20(name, symbol, 18)
        public
    {
        _mint(msg.sender, 1000000000000000000);
    }
}

About

Reuseable BEP20 Token contract on Binance Smart Chain

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published