如何增加代币金额?(BEP20)



我通过混音创建了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);
}

相关内容

  • 没有找到相关文章

最新更新