Guest User

Untitled

a guest
May 21st, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. pragma solidity ^0.4.23;
  2.  
  3. import "github.com/OpenZeppelin/zeppelin-solidity/contracts/token/ERC20/StandardToken.sol";
  4.  
  5.  
  6. contract CBC is StandardToken {
  7. string public symbol = "CBC";
  8. string public name = "CannabisBlockchain";
  9. uint public decimals = 2;
  10.  
  11. uint public initialSupply = 4 * (1000000000) * (10 ** decimals);
  12.  
  13. constructor() public {
  14. balances[msg.sender] = initialSupply;
  15. }
  16. }
Add Comment
Please, Sign In to add comment