Hi can anyone help please?
Does this code mean there is a mint function in the contract?
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
Nov 2, 2021, 11:53 AM
I see, hank you
thank*
Nov 2, 2021, 11:54 AM