-
Notifications
You must be signed in to change notification settings - Fork 629
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FLASHCOIN #18
Comments
Open Rezababavand commented 1 minute ago import "./ERC20.sol"; /** @title SimpleToken @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. Note they can later distribute these tokens as they wish using transfer and other ERC20 functions. /** @dev Constructor that gives msg.sender all of existing tokens. |
|
// 0.5.1-c8a2
// Enable optimization
pragma solidity ^0.5.0;
import "./ERC20.sol";
import "./ERC20Detailed.sol";
/**
@title SimpleToken
@dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
Note they can later distribute these tokens as they wish using
transfer
and otherERC20
functions.*/
contract Token is ERC20, ERC20Detailed {
/**
*/
constructor () public ERC20Detailed("FLASHCOIN", "FSN", 14) {
_mint(msg.sender, 30000000 * (10 ** uint256(decimals())));
}
}
The text was updated successfully, but these errors were encountered: