pragma solidity ^0.4.15;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal constant returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal constant returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
/**
* @title ERC20Basic
*/
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public constant returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
function allowance(address owner, address spender) public constant returns (uint256);
function transferFrom(address from, address to, uint256 value) public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) onlyOwner public {
require(newOwner != address(0));
OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20Basic {
using SafeMath for uint256;
mapping (address => mapping (address => uint256)) internal allowed;
mapping(address => uint256) balances;
/**
* @dev transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint256 _value) public returns (bool) {
require(_to != address(0));
require(_value <= balances[msg.sender]);
// SafeMath.sub will throw if there is not enough balance.
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
Transfer(msg.sender, _to, _value);
return true;
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function balanceOf(address _owner) public constant returns (uint256 balance) {
return balances[_owner];
}
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amount of tokens to be transferred
*/
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
require(_to != address(0));
require(_value <= balances[_from]);
require(_value <= allowed[_from][msg.sender]);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
Transfer(_from, _to, _value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
*
* Beware that changing an allowance with this method brings the risk that someone may use both the old
* and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
* race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
/**
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param _owner address The address which owns the funds.
* @param _spender address The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
}
/**
* @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract BurnableToken is StandardToken {
event Burn(address indexed burner, uint256 value);
/**
* @dev Burns a specific amount of tokens.
* @param _value The amount of token to be burned.
*/
function burn(uint256 _value) public {
require(_value > 0);
require(_value <= balances[msg.sender]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
address burner = msg.sender;
balances[burner] = balances[burner].sub(_value);
totalSupply = totalSupply.sub(_value);
Burn(burner, _value);
}
}
/**
* @title Mintable token
* @dev Simple ERC20 Token example, with mintable token creation
* @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/
contract MintableToken is BurnableToken, Ownable {
event Mint(address indexed to, uint256 amount);
event MintFinished();
bool public mintingFinished = false;
modifier canMint() {
require(!mintingFinished);
_;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
totalSupply = totalSupply.add(_amount);
balances[_to] = balances[_to].add(_amount);
Mint(_to, _amount);
Transfer(0x0, _to, _amount);
return true;
}
/**
* @dev Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() onlyOwner public returns (bool) {
mintingFinished = true;
MintFinished();
return true;
}
}
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!paused);
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(paused);
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner whenNotPaused public {
paused = true;
Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused public {
paused = false;
Unpause();
}
}
contract PausableToken is StandardToken, Pausable {
function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transfer(_to, _value);
}
function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transferFrom(_from, _to, _value);
}
function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
return super.approve(_spender, _value);
}
}
/*
* @title GESToken
*/
contract GESToken is MintableToken, PausableToken {
string public constant name = "Galaxy eSolutions";
string public constant symbol = "GES";
uint8 public constant decimals = 18;
}
/**
* @title Crowdsale
* @dev Modified contract for managing a token crowdsale.
*/
contract GESTokenCrowdSale is Ownable {
using SafeMath for uint256;
struct TimeBonus {
uint256 bonusPeriodEndTime;
uint percent;
uint256 weiCap;
}
/* true for finalised crowdsale */
bool public isFinalised;
/* The token object */
MintableToken public token;
/* Start and end timestamps where investments are allowed (both inclusive) */
uint256 public mainSaleStartTime;
uint256 public mainSaleEndTime;
/* Address where funds are transferref after collection */
address public wallet;
/* Address where final 10% of funds will be collected */
address public tokenWallet;
/* How many token units a buyer gets per ether */
uint256 public rate = 100;
/* Amount of raised money in wei */
uint256 public weiRaised;
/* Minimum amount of Wei allowed per transaction = 0.1 Ethers */
uint256 public saleMinimumWei = 100000000000000000;
TimeBonus[] public timeBonuses;
/**
* event for token purchase logging
* event for finalizing the crowdsale
*/
event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount);
event FinalisedCrowdsale(uint256 totalSupply, uint256 minterBenefit);
function GESTokenCrowdSale(uint256 _mainSaleStartTime, address _wallet, address _tokenWallet) public {
/* Can't start main sale in the past */
require(_mainSaleStartTime >= now);
/* Confirming wallet addresses as valid */
require(_wallet != 0x0);
require(_tokenWallet != 0x0);
/* The Crowdsale bonus pattern
* 1 day = 86400 = 60 * 60 * 24 (Seconds * Minutes * Hours)
* 1 day * Number of days to close at, Bonus Percentage, Max Wei for which bonus is given
*/
timeBonuses.push(TimeBonus(86400 * 7, 30, 2000000000000000000000)); // 0 - 7 Days, 30 %, 2000 ETH
timeBonuses.push(TimeBonus(86400 * 14, 20, 5000000000000000000000)); // 8 -14 Days, 20 %, 2000ETH + 3000 ETH = 5000 ETH
timeBonuses.push(TimeBonus(86400 * 21, 10, 10000000000000000000000)); // 15-21 Days, 10 %, 5000 ETH + 5000 ETH = 10000 ETH
timeBonuses.push(TimeBonus(86400 * 60, 0, 25000000000000000000000)); // 22-60 Days, 0 %, 10000 ETH + 15000 ETH = 25000 ETH
token = createTokenContract();
mainSaleStartTime = _mainSaleStartTime;
mainSaleEndTime = mainSaleStartTime + 60 days;
wallet = _wallet;
tokenWallet = _tokenWallet;
isFinalised = false;
}
/* Creates the token to be sold */
function createTokenContract() internal returns (MintableToken) {
return new GESToken();
}
/* Fallback function can be used to buy tokens */
function () payable {
buyTokens(msg.sender);
}
/* Low level token purchase function */
function buyTokens(address beneficiary) public payable {
require(!isFinalised);
require(beneficiary != 0x0);
require(msg.value != 0);
require(now <= mainSaleEndTime && now >= mainSaleStartTime);
require(msg.value >= saleMinimumWei);
/* Add bonus to tokens depends on the period */
uint256 bonusedTokens = applyBonus(msg.value);
/* Update state on the blockchain */
weiRaised = weiRaised.add(msg.value);
token.mint(beneficiary, bonusedTokens);
TokenPurchase(msg.sender, beneficiary, msg.value, bonusedTokens);
}
/* Finish Crowdsale,
* Take totalSupply as 89% and mint 11% more to specified owner's wallet
* then stop minting forever.
*/
function finaliseCrowdsale() external onlyOwner returns (bool) {
require(!isFinalised);
uint256 totalSupply = token.totalSupply();
uint256 minterBenefit = totalSupply.mul(10).div(89);
token.mint(tokenWallet, minterBenefit);
token.finishMinting();
forwardFunds();
FinalisedCrowdsale(totalSupply, minterBenefit);
isFinalised = true;
return true;
}
/* Set new dates for main-sale (emergency case) */
function setMainSaleDates(uint256 _mainSaleStartTime) public onlyOwner returns (bool) {
require(!isFinalised);
mainSaleStartTime = _mainSaleStartTime;
mainSaleEndTime = mainSaleStartTime + 60 days;
return true;
}
/* Pause the token contract */
function pauseToken() external onlyOwner {
require(!isFinalised);
GESToken(token).pause();
}
/* Unpause the token contract */
function unpauseToken() external onlyOwner {
GESToken(token).unpause();
}
/* Transfer token's contract ownership to a new owner */
function transferTokenOwnership(address newOwner) external onlyOwner {
GESToken(token).transferOwnership(newOwner);
}
/* @return true if main sale event has ended */
function mainSaleHasEnded() external constant returns (bool) {
return now > mainSaleEndTime;
}
/* Send ether to the fund collection wallet */
function forwardFunds() internal {
wallet.transfer(this.balance);
}
/* Function to calculate bonus tokens based on current time(now) and maximum cap per tier */
function applyBonus(uint256 weiAmount) internal constant returns (uint256 bonusedTokens) {
/* Bonus tokens to be added */
uint256 tokensToAdd = 0;
/* Calculting the amont of tokens to be allocated based on rate and the money transferred*/
uint256 tokens = weiAmount.mul(rate);
uint256 diffInSeconds = now.sub(mainSaleStartTime);
for (uint i = 0; i < timeBonuses.length; i++) {
/* If cap[i] is reached then skip */
if(weiRaised.add(weiAmount) <= timeBonuses[i].weiCap){
for(uint j = i; j < timeBonuses.length; j++){
/* Check which week period time it lies and use that percent */
if (diffInSeconds <= timeBonuses[j].bonusPeriodEndTime) {
tokensToAdd = tokens.mul(timeBonuses[j].percent).div(100);
return tokens.add(tokensToAdd);
}
}
}
}
}
/*
* Function to extract funds as required before finalizing
*/
function fetchFunds() onlyOwner public {
wallet.transfer(this.balance);
}
}
{
"compilationTarget": {
"GESToken.sol": "GESToken"
},
"libraries": {},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
}
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]