Skip to content

Instantly share code, notes, and snippets.

@brandonbryant12
Created July 5, 2018 14:22
Show Gist options
  • Save brandonbryant12/8b003b849ede89e13aa4209d64e95781 to your computer and use it in GitHub Desktop.
Save brandonbryant12/8b003b849ede89e13aa4209d64e95781 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.19;
import 'zeppelin-solidity/contracts/token/ERC20/MintableToken.sol';
contract BITTokenTest is MintableToken {
string public name = "BITTokenTest";
string public symbol = "BIT";
uint8 public decimals = 18;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment