IUSDT.sol 742 B

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