// This contract is part of Zellic’s smart contract dataset, which is a collection of publicly available contract code gathered as of March 2023. /** *Submitted for verification at Etherscan.io on 2022-07-29 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "./IERC20.sol"; /** * Interface for the optional metadata functions from the ERC20 standard. * */ interface IERC20Metadata is IERC20 { /** * Returns the name of the token. */ function name() external view returns (string memory); /** * Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * Returns the decimals places of the token. */ function decimals() external view returns (uint8); }