forked from DecentralizedClimateFoundation/DCIPs
10 lines
271 B
Solidity
10 lines
271 B
Solidity
|
// 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);
|
||
|
}
|