ERC20SupplyChange
Represents a single mint or burn of a single ERC20 token. Whether this is a mint or burn must be implied by the context.
struct ERC20SupplyChange {
address account;
uint256 amount;
}
Properties
Name | Type | Description |
---|---|---|
account | address | The address the token is being minted/burned to/from. |
amount | uint256 | The amount of the token being minted/burned. |