mirror of
https://github.com/status-im/keycard-redeem.git
synced 2025-02-11 03:26:53 +00:00
11 lines
252 B
Solidity
11 lines
252 B
Solidity
pragma solidity ^0.5.16;
|
|
|
|
import "./IERC20.sol";
|
|
|
|
contract IERC20Detailed is IERC20 {
|
|
function name() public view returns (string memory);
|
|
function symbol() public view returns (string memory);
|
|
function decimals() public view returns (uint8);
|
|
}
|
|
|