smart-contract-fiesta
/
organized_contracts
/13
/130ddda97c2e582f96e100d61fbc1cbd4a253b9abbbc1c78acc5cbdb8997cdfd
/IERC20Metadata.sol
// 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); | |
} | |