This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.10; | |
import 'gist/ERC223ReceivingContract.sol'; | |
import 'gist/SafeMath.sol'; | |
import 'gist/StandardToken.sol'; | |
import 'gist/Ownable.sol'; | |
contract Crowdsale is Ownable { | |
using SafeMath for uint; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.10; | |
import 'browser/SafeMath.sol'; | |
contract ERC20 { | |
uint256 public totalSupply; | |
function name() constant returns (string _name); | |
function symbol() constant returns (string _symbol); | |
function decimals() constant returns (uint8 _decimals); | |
function totalSupply() constant returns (uint256 _totalSupply); |