IERC20Metadata

Git Source

Inherits: IERC20

Interface for the optional metadata functions from the ERC-20 standard.

Functions

name

Returns the name of the token.

function name() external view returns (string memory);

symbol

Returns the symbol of the token.

function symbol() external view returns (string memory);

decimals

Returns the decimals places of the token.

function decimals() external view returns (uint8);