Skip to the content.

IERC20MetadataUpgradeable.sol

View Source: @openzeppelin\contracts-upgradeable\token\ERC20\extensions\IERC20MetadataUpgradeable.sol

↗ Extends: IERC20Upgradeable ↘ Derived Contracts: ERC20Upgradeable

IERC20MetadataUpgradeable

Interface for the optional metadata functions from the ERC20 standard. Available since v4.1.

Functions

name

Returns the name of the token.

function name() external view
returns(string)

Arguments

| Name | Type | Description | | ————- |————- | —–|

symbol

Returns the symbol of the token.

function symbol() external view
returns(string)

Arguments

| Name | Type | Description | | ————- |————- | —–|

decimals

Returns the decimals places of the token.

function decimals() external view
returns(uint8)

Arguments

| Name | Type | Description | | ————- |————- | —–|

Contracts