Guest User

Untitled

a guest
Feb 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. contract MyToken {
  2.  
  3. mapping (address => uint256) public balanceOf;
  4. function MyToken(uint256 initialSupply) {
  5. balanceOf[msg.sender] = initialSupply;// Give the creator all
  6. }
  7. }
Add Comment
Please, Sign In to add comment