August 2019
Intermediate to advanced
486 pages
13h 52m
English
This event must be triggered when the tokens are transferred from one account to another account. Even if the number of tokens is zero, the event must trigger. When new tokens are created or minted, the event should use 0x0 as the from address.
The Transfer event in the Solidity contract must be defined as follows:
event Transfer(address indexed from, address indexed to, uint256 value);
The event takes the following arguments: