1234567891011121314151617181920212223242526 |
- // SPDX-License-Identifier: MIT
- // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
- pragma solidity ^0.8.19;
- import {IERC20} from "../IERC20.sol";
- /**
- * @dev Interface for the optional metadata functions from the ERC20 standard.
- */
- interface IERC20Metadata is IERC20 {
- /**
- * @dev Returns the name of the token.
- */
- function name() external view returns (string memory);
- /**
- * @dev Returns the symbol of the token.
- */
- function symbol() external view returns (string memory);
- /**
- * @dev Returns the decimals places of the token.
- */
- function decimals() external view returns (uint8);
- }
|