Guest User

Untitled

a guest
Oct 18th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. pragma solidity ^0.4.7;
  2.  
  3. contract TekkenInterface{
  4. // Public variables of the token
  5. string public name;
  6. string public symbol;
  7. uint8 public decimals;
  8. uint256 public sellPrice;
  9. uint256 public buyPrice;
  10. uint256 public totalSupply;
  11. address public owner;
  12.  
  13. function balanceOf(address _ad) public constant returns (uint256 balance);
  14. function transfer(address _to, uint256 _value) public returns (bool success);
  15. function setPrices(uint256 newSellPrice, uint256 newBuyPrice) public;
  16. function buy() payable public;
  17. }
Add Comment
Please, Sign In to add comment