Skip to content

Instantly share code, notes, and snippets.

View endtimesnetwork's full-sized avatar

Endtimes Network endtimesnetwork

View GitHub Profile
@endtimesnetwork
endtimesnetwork / EndtimesCrowdsale.sol
Created December 7, 2017 09:23
Endtimes Crowdsale Contract
pragma solidity 0.4.17;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {