Reuseable BEP20 Token contract
BEP20.sol
contract TestToken is BEP20 {
constructor() public BEP20("TestToken", "TEST", 18) {
_mint(msg.sender, 1000000000000000000);
}
}
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);
}
}