IUSDT.sol 717 B

12345678910111213141516171819
  1. contract ERC20Basic {
  2. uint public _totalSupply;
  3. function totalSupply() public view returns (uint);
  4. function balanceOf(address who) public view returns (uint);
  5. function transfer(address to, uint value) public;
  6. event Transfer(address indexed from, address indexed to, uint value);
  7. }
  8. /**
  9. * @title ERC20 interface
  10. * @dev see https://github.com/ethereum/EIPs/issues/20
  11. */
  12. contract IUSDT is ERC20Basic {
  13. function allowance(address owner, address spender) public view returns (uint);
  14. function transferFrom(address from, address to, uint value) public;
  15. function approve(address spender, uint value) public;
  16. event Approval(address indexed owner, address indexed spender, uint value);
  17. }