DCIPs/assets/eip-5252/contracts/interfaces/IERC20Minimal.sol

10 lines
271 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: CC0-1.0
pragma solidity >=0.5.0;
interface IERC20Minimal {
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function decimals() external view returns (uint8);
}