Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function TESTTOKEN() public {
  2. symbol = "TEST";
  3. name = "TEST TOKEN";
  4. decimals = 18;
  5. _totalSupply = 21000000000000000000000000;
  6. balances[0x57669331B5c97532Bbc5Fc2bA0CE27D54E91CfdC] = _totalSupply;
  7. Transfer(address(0), 0x57669331B5c97532Bbc5Fc2bA0CE27D54E91CfdC, _totalSupply);
  8. }
  9.  
  10. function () public payable {
  11. revert();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement