MockToken
Inherits: ERC20
Mock ERC20 token.
State Variables
_dec
uint8 private _dec;
Functions
constructor
constructor(string memory _name, string memory _symbol, uint8 _decimals) ERC20(_name, _symbol);
mint
function mint(address account, uint256 amount) public;
burn
function burn(address account, uint256 amount) public;
decimals
function decimals() public view override returns (uint8);