Interface of the ERC20 standard as defined in the EIP.
function burnFrom(address from, uint256 amount) external
Function to burn tokens.
Requires the caller to have allowance for amount
on from
.
Can only be called by the minter address.
Name | Type | Description |
---|---|---|
from | address | The address that will have its tokens burnt. |
amount | uint256 | The amount of tokens to burn. |