Skip to content

Instantly share code, notes, and snippets.

@netpoe
Created November 21, 2018 02:00
Show Gist options
  • Save netpoe/6079f6048352300860662f42893e0b43 to your computer and use it in GitHub Desktop.
Save netpoe/6079f6048352300860662f42893e0b43 to your computer and use it in GitHub Desktop.
SANDER1 ERC20 Token
pragma solidity ^0.4.24;
import './StandardToken.sol';
import './DetailedERC20.sol';
contract SANDER1 is StandardToken, DetailedERC20 {
/**
* 12 tokens equal 12 songs equal 1 album
* uint256 supply
*/
uint256 internal supply = 12 * 1 ether;
constructor ()
public
DetailedERC20 (
"Súper Ánder Token 1",
"SANDER1",
18
)
{
totalSupply_ = supply;
balances[msg.sender] = supply;
emit Transfer(0x0, msg.sender, totalSupply_);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment