We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b16db0 commit 71d4e6dCopy full SHA for 71d4e6d
src/interfaces/token/IERC20Metadata.sol
@@ -0,0 +1,12 @@
1
+// SPDX-License-Identifier: Apache 2
2
+
3
+pragma solidity ^0.8.0;
4
5
+import "IERC20/IERC20.sol";
6
7
+//https://eips.ethereum.org/EIPS/eip-20
8
+interface IERC20Metadata is IERC20 {
9
+ function name() external view returns (string memory);
10
+ function symbol() external view returns (string memory);
11
+ function decimals() external view returns (uint8);
12
+}
0 commit comments