Last active
December 23, 2021 16:47
-
-
Save Neurone/2299392b184d29ecb87ecc16ba9b622f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.7.0 <0.9.0; | |
abstract contract CheckEIP20TokenInfo { | |
string public name; | |
string public symbol; | |
uint256 public decimals; | |
uint256 public totalSupply; | |
function balanceOf(address _owner) virtual public returns (uint256 balance); | |
function allowance(address _owner, address _spender) virtual public returns (uint256 remaining); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment