我通过混音创建了BEP20代币,现在我想增加这个代币的数量。我如何制作10万个代币20万个?
您需要添加一个mint函数,如blow
function issue(uint amount) public onlyOwner {
require(_totalSupply + amount > _totalSupply);
require(balances[owner] + amount > balances[owner]);
balances[owner] += amount;
_totalSupply += amount;
Issue(amount);
}