Guest User

Untitled

a guest
May 25th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.70 KB | None | 0 0
  1. pragma solidity ^0.4.16;
  2.  
  3. interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; }
  4.  
  5. contract TokenERC20 {
  6. // Public variables of the token
  7. string public name;
  8. string public symbol;
  9. uint8 public decimals = 10;
  10. // 18 decimals is the strongly suggested default, avoid changing it
  11. uint256 public totalSupply;
  12.  
  13. // This creates an array with all balances
  14. mapping (address => uint256) public balanceOf;
  15. mapping (address => mapping (address => uint256)) public allowance;
  16.  
  17. // This generates a public event on the blockchain that will notify clients
  18. event Transfer(address indexed from, address indexed to, uint256 value);
  19.  
  20. // This notifies clients about the amount burnt
  21. event Burn(address indexed from, uint256 value);
  22.  
  23. /**
  24. * Constructor function
  25. *
  26. * Initializes contract with initial supply tokens to the creator of the contract
  27. */
  28. function TokenERC20(
  29. uint256 initialSupply,
  30. string tokenName,
  31. string tokenSymbol
  32. ) public {
  33. totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount
  34. balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens
  35. name = tokenName; // Set the name for display purposes
  36. symbol = tokenSymbol; // Set the symbol for display purposes
  37. }
  38.  
  39. /**
  40. * Internal transfer, only can be called by this contract
  41. */
  42. function _transfer(address _from, address _to, uint _value) internal {
  43. // Prevent transfer to 0x0 address. Use burn() instead
  44. require(_to != 0x0);
  45. // Check if the sender has enough
  46. require(balanceOf[_from] >= _value);
  47. // Check for overflows
  48. require(balanceOf[_to] + _value >= balanceOf[_to]);
  49. // Save this for an assertion in the future
  50. uint previousBalances = balanceOf[_from] + balanceOf[_to];
  51. // Subtract from the sender
  52. balanceOf[_from] -= _value;
  53. // Add the same to the recipient
  54. balanceOf[_to] += _value;
  55. emit Transfer(_from, _to, _value);
  56. // Asserts are used to use static analysis to find bugs in your code. They should never fail
  57. assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
  58. }
  59.  
  60. /**
  61. * Transfer tokens
  62. *
  63. * Send `_value` tokens to `_to` from your account
  64. *
  65. * @param _to The address of the recipient
  66. * @param _value the amount to send
  67. */
  68. function transfer(address _to, uint256 _value) public {
  69. _transfer(msg.sender, _to, _value);
  70. }
  71.  
  72. /**
  73. * Transfer tokens from other address
  74. *
  75. * Send `_value` tokens to `_to` on behalf of `_from`
  76. *
  77. * @param _from The address of the sender
  78. * @param _to The address of the recipient
  79. * @param _value the amount to send
  80. */
  81. function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
  82. require(_value <= allowance[_from][msg.sender]); // Check allowance
  83. allowance[_from][msg.sender] -= _value;
  84. _transfer(_from, _to, _value);
  85. return true;
  86. }
  87.  
  88. /**
  89. * Set allowance for other address
  90. *
  91. * Allows `_spender` to spend no more than `_value` tokens on your behalf
  92. *
  93. * @param _spender The address authorized to spend
  94. * @param _value the max amount they can spend
  95. */
  96. function approve(address _spender, uint256 _value) public
  97. returns (bool success) {
  98. allowance[msg.sender][_spender] = _value;
  99. return true;
  100. }
  101.  
  102. /**
  103. * Set allowance for other address and notify
  104. *
  105. * Allows `_spender` to spend no more than `_value` tokens on your behalf, and then ping the contract about it
  106. *
  107. * @param _spender The address authorized to spend
  108. * @param _value the max amount they can spend
  109. * @param _extraData some extra information to send to the approved contract
  110. */
  111. function approveAndCall(address _spender, uint256 _value, bytes _extraData)
  112. public
  113. returns (bool success) {
  114. tokenRecipient spender = tokenRecipient(_spender);
  115. if (approve(_spender, _value)) {
  116. spender.receiveApproval(msg.sender, _value, this, _extraData);
  117. return true;
  118. }
  119. }
  120.  
  121. /**
  122. * Destroy tokens
  123. *
  124. * Remove `_value` tokens from the system irreversibly
  125. *
  126. * @param _value the amount of money to burn
  127. */
  128. function burn(uint256 _value) public returns (bool success) {
  129. require(balanceOf[msg.sender] >= _value); // Check if the sender has enough
  130. balanceOf[msg.sender] -= _value; // Subtract from the sender
  131. totalSupply -= _value; // Updates totalSupply
  132. emit Burn(msg.sender, _value);
  133. return true;
  134. }
  135.  
  136. /**
  137. * Destroy tokens from other account
  138. *
  139. * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
  140. *
  141. * @param _from the address of the sender
  142. * @param _value the amount of money to burn
  143. */
  144. function burnFrom(address _from, uint256 _value) public returns (bool success) {
  145. require(balanceOf[_from] >= _value); // Check if the targeted balance is enough
  146. require(_value <= allowance[_from][msg.sender]); // Check allowance
  147. balanceOf[_from] -= _value; // Subtract from the targeted balance
  148. allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance
  149. totalSupply -= _value; // Update totalSupply
  150. emit Burn(_from, _value);
  151. return true;
  152. }
  153. }
Add Comment
Please, Sign In to add comment