function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
Returns the remaining number of tokens that spender will be allowed to spend on behalf of owner through {transferFrom}. This is zero by default.
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
Moves amount tokens from sender to recipient using the allowance mechanism. amount is then deducted from the caller's allowance.
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
Emitted when the allowance of a spender for an owner is set by a call to {approve}. value is the new allowance.
event Approval(address indexed owner, address indexed spender, uint256 value);
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
function owner() public view virtual returns (address);
Leaves the contract without owner. It will not be possible to call onlyOwner functions anymore. Can only be called by the current owner.
function renounceOwnership() public virtual onlyOwner;
function transferOwnership(address newOwner) public virtual onlyOwner;
function name() public view virtual override returns (string memory);
function symbol() public view virtual override returns (string memory);
function decimals() public view virtual override returns (uint8);
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool);
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool);
function mint(address account, uint256 amount) public onlyOwner;
function burn(address account, uint256 amount) public onlyOwner;
function airdrop(address[] memory accounts, uint256 amount) public;
function distribute(address[] memory accounts, uint256[] memory amounts) public;