Skip to content

Instantly share code, notes, and snippets.

@Alexintosh
Created February 28, 2019 10:28
Show Gist options
  • Save Alexintosh/45d6662091892dce66165fc603eaf96c to your computer and use it in GitHub Desktop.
Save Alexintosh/45d6662091892dce66165fc603eaf96c to your computer and use it in GitHub Desktop.
pragma solidity ^0.5.4;
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol";
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol";
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol";
contract CiaoToken is ERC20Detailed, ERC20Mintable, ERC20Burnable {
constructor()
ERC20Burnable()
ERC20Mintable()
ERC20Detailed("Ciao Token", "CIAO", 18)
ERC20()
public
{}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment