Guest User

Untitled

a guest
Jun 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. pragma solidity ^0.4.0;
  2.  
  3. import './utils/safe-math.sol';
  4.  
  5. contract Contract {
  6. // Extension ---------------------------------------------------------------
  7. using SafeMath for uint;
  8. // Types -------------------------------------------------------------------
  9. // Constants ---------------------------------------------------------------
  10. // State -------------------------------------------------------------------
  11. // Lifetime ----------------------------------------------------------------
  12. constructor()
  13. public
  14. {}
  15.  
  16. function ()
  17. public
  18. payable
  19. {}
  20. // Events ------------------------------------------------------------------
  21. // Modifiers ---------------------------------------------------------------
  22. // Methods -----------------------------------------------------------------
  23. }
Add Comment
Please, Sign In to add comment