File size: 805 Bytes
f998fcd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
// 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);
}
|