Added decimals() to TokenInterface

This commit is contained in:
Thrilok Kumar 2020-05-04 06:20:18 +05:30
parent e1cfe964f2
commit 920ccb68d9

View File

@ -7,6 +7,7 @@ interface TokenInterface {
function deposit() external payable;
function withdraw(uint) external;
function balanceOf(address) external view returns (uint);
function decimals() external view returns (uint);
}
interface MemoryInterface {