August 2019
Intermediate to advanced
486 pages
13h 52m
English
The name() function should return the token's full name, for example, My Test Token. The name() function is defined in the contract as follows or using the public state variable:
function name() public view returns (string)
The function's visibility can be public or external. It must be a view function and should not be allowed to modify the state. The function must return a string type value.