We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
// 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 other
transfer
ERC20 functions. */ contract Token is ERC20, ERC20Detailed {
ERC20
The text was updated successfully, but these errors were encountered:
Flashcoin
Sorry, something went wrong.
No branches or pull requests
// 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: