Last active
January 16, 2023 15:58
-
-
Save bodrovis/c963c3eab8df5b9557482c472120b05b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| import "../IERC20.sol"; | |
| interface IERC20Metadata is IERC20 { | |
| function name() external view returns (string memory); | |
| function symbol() external view returns (string memory); | |
| function decimals() external view returns (uint8); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment