Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Last active April 19, 2020 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agoiabel/ff28e6f5b0b03b3e12c084cebc3cc310 to your computer and use it in GitHub Desktop.
Save agoiabel/ff28e6f5b0b03b3e12c084cebc3cc310 to your computer and use it in GitHub Desktop.
pragma solidity ^0.6.4;
contract Token {
uint public totalSupply;
constructor(uint _totalSupply) {
totalSupply = _totalSupply;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment