pragma solidity 0.4.15;
/**
* @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 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
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
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);
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
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 Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
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));
// 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];
}
}
/**
* @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 ERC20, BasicToken {
mapping (address => mapping (address => uint256)) allowed;
/**
* @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));
uint256 _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// require (_value <= _allowance);
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = _allowance.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];
}
/**
* approve should be called when allowed[_spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
*/
function increaseApproval (address _spender, uint _addedValue)
returns (bool success) {
allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
function decreaseApproval (address _spender, uint _subtractedValue)
returns (bool success) {
uint oldValue = allowed[msg.sender][_spender];
if (_subtractedValue > oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
/**
* @title StandardCrowdsale
* @dev StandardCrowdsale is a base contract for managing a token crowdsale.
* Crowdsales have a start and end timestamps, where investors can make
* token purchases and the crowdsale will assign them tokens based
* on a token per ETH rate. Funds collected are forwarded to a wallet
* as they arrive.
* @dev from Crowdsale by Zepellin with small changes. Changes are commented with "Request Modification"
*/
contract StandardCrowdsale {
using SafeMath for uint256;
// The token being sold
StandardToken public token; // Request Modification : change to not mintable
// start and end timestamps where investments are allowed (both inclusive)
uint256 public startTime;
uint256 public endTime;
// address where funds are collected
address public wallet;
// how many token units a buyer gets per wei
uint256 public rate;
// amount of raised money in wei
uint256 public weiRaised;
/**
* event for token purchase logging
* @param purchaser who paid for the tokens
* @param value weis paid for purchase
* @param amount amount of tokens purchased
*/
event TokenPurchase(address indexed purchaser, uint256 value, uint256 amount);
function StandardCrowdsale(
uint256 _startTime,
uint256 _endTime,
uint256 _rate,
address _wallet)
{
require(_startTime >= now);
require(_endTime >= _startTime);
require(_rate > 0);
require(_wallet != 0x0);
startTime = _startTime;
endTime = _endTime;
rate = _rate;
wallet = _wallet;
token = createTokenContract(); // Request Modification : change to StandardToken + position
}
// creates the token to be sold.
// Request Modification : change to StandardToken
// override this method to have crowdsale of a specific mintable token.
function createTokenContract()
internal
returns(StandardToken)
{
return new StandardToken();
}
// fallback function can be used to buy tokens
function ()
payable
{
buyTokens();
}
// low level token purchase function
// Request Modification : change to not mint but transfer from this contract
function buyTokens()
public
payable
{
require(validPurchase());
uint256 weiAmount = msg.value;
// calculate token amount to be created
uint256 tokens = weiAmount.mul(rate);
// update state
weiRaised = weiRaised.add(weiAmount);
require(token.transfer(msg.sender, tokens)); // Request Modification : changed here - tranfer instead of mintable
TokenPurchase(msg.sender, weiAmount, tokens);
forwardFunds();
}
// send ether to the fund collection wallet
// override to create custom fund forwarding mechanisms
function forwardFunds()
internal
{
wallet.transfer(msg.value);
}
// @return true if the transaction can buy tokens
function validPurchase()
internal
returns(bool)
{
bool withinPeriod = now >= startTime && now <= endTime;
bool nonZeroPurchase = msg.value != 0;
return withinPeriod && nonZeroPurchase;
}
// @return true if crowdsale event has ended
function hasEnded()
public
constant
returns(bool)
{
return now > endTime;
}
modifier onlyBeforeSale() {
require(now < startTime);
_;
}
// Request Modification : Add check 24hours before token sale
modifier only24HBeforeSale() {
require(now < startTime.sub(1 days));
_;
}
}
/**
* @title CappedCrowdsale
* @dev Extension of Crowdsale with a max amount of funds raised
*/
contract CappedCrowdsale is StandardCrowdsale {
using SafeMath for uint256;
uint256 public cap;
function CappedCrowdsale(uint256 _cap) {
require(_cap > 0);
cap = _cap;
}
// overriding Crowdsale#validPurchase to add extra cap logic
// @return true if investors can buy at the moment
// Request Modification : delete constant because needed in son contract
function validPurchase() internal returns (bool) {
bool withinCap = weiRaised.add(msg.value) <= cap;
return super.validPurchase() && withinCap;
}
// overriding Crowdsale#hasEnded to add cap logic
// @return true if crowdsale event has ended
function hasEnded() public constant returns (bool) {
bool capReached = weiRaised >= cap;
return super.hasEnded() || capReached;
}
}
/**
* @title ProgressiveIndividualCappedCrowdsale
* @dev Extension of Crowdsale with a progressive individual cap
* @dev This contract is not made for crowdsale superior to 256 * TIME_PERIOD_IN_SEC
* @author Request.network
*/
contract ProgressiveIndividualCappedCrowdsale is StandardCrowdsale, Ownable {
uint public constant TIME_PERIOD_IN_SEC = 1 days;
uint public constant GAS_LIMIT_IN_WEI = 50000000000 wei; // limit gas price -50 Gwei wales stopper
uint256 public baseEthCapPerAddress = 0 ether;
mapping(address=>uint) public participated;
/**
* @dev overriding CappedCrowdsale#validPurchase to add an individual cap
* @return true if investors can buy at the moment
*/
function validPurchase()
internal
returns(bool)
{
require(tx.gasprice <= GAS_LIMIT_IN_WEI);
uint ethCapPerAddress = getCurrentEthCapPerAddress();
participated[msg.sender] = participated[msg.sender].add(msg.value);
return super.validPurchase() && participated[msg.sender] <= ethCapPerAddress;
}
/**
* @dev Set the individual cap for the first day. This function can not be called withing the 24h before the sale for security reasons
* @param _baseEthCapPerAddress base cap in wei
*/
function setBaseEthCapPerAddress(uint256 _baseEthCapPerAddress)
public
onlyOwner
only24HBeforeSale
{
baseEthCapPerAddress = _baseEthCapPerAddress;
}
/**
* @dev Get the current individual cap.
* @dev This amount increase everyday in an exponential way. Day 1: base cap, Day 2: 2 * base cap, Day 3: 4 * base cap ...
* @return individual cap in wei
*/
function getCurrentEthCapPerAddress()
public
constant
returns(uint)
{
if (block.timestamp < startTime) return 0;
uint timeSinceStartInSec = block.timestamp.sub(startTime);
uint currentPeriod = timeSinceStartInSec.div(TIME_PERIOD_IN_SEC).add(1);
// for currentPeriod > 256 will always return baseEthCapPerAddress
return (2 ** currentPeriod.sub(1)).mul(baseEthCapPerAddress);
}
}
/**
* @title WhitelistedCrowdsale
* @dev This is an extension to add whitelist to a crowdsale
* @author Request.network
*
*/
contract WhitelistedCrowdsale is StandardCrowdsale, Ownable {
mapping(address=>bool) public registered;
event RegistrationStatusChanged(address target, bool isRegistered);
/**
* @dev Changes registration status of an address for participation.
* @param target Address that will be registered/deregistered.
* @param isRegistered New registration status of address.
*/
function changeRegistrationStatus(address target, bool isRegistered)
public
onlyOwner
only24HBeforeSale
{
registered[target] = isRegistered;
RegistrationStatusChanged(target, isRegistered);
}
/**
* @dev Changes registration statuses of addresses for participation.
* @param targets Addresses that will be registered/deregistered.
* @param isRegistered New registration status of addresses.
*/
function changeRegistrationStatuses(address[] targets, bool isRegistered)
public
onlyOwner
only24HBeforeSale
{
for (uint i = 0; i < targets.length; i++) {
changeRegistrationStatus(targets[i], isRegistered);
}
}
/**
* @dev overriding Crowdsale#validPurchase to add whilelist
* @return true if investors can buy at the moment, false otherwise
*/
function validPurchase() internal returns (bool) {
return super.validPurchase() && registered[msg.sender];
}
}
/**
* @title The RequestToken contract
* @dev The Request Token contract
* @dev inherite from StandardToken and Ownable by Zeppelin
* @author Request.network
*/
contract RequestToken is StandardToken, Ownable {
string public constant name = "Request Token";
string public constant symbol = "REQ";
uint8 public constant decimals = 18;
uint public transferableStartTime;
address public tokenSaleContract;
address public earlyInvestorWallet;
modifier onlyWhenTransferEnabled()
{
if ( now <= transferableStartTime ) {
require(msg.sender == tokenSaleContract || msg.sender == earlyInvestorWallet || msg.sender == owner);
}
_;
}
modifier validDestination(address to)
{
require(to != address(this));
_;
}
function RequestToken(
uint tokenTotalAmount,
uint _transferableStartTime,
address _admin,
address _earlyInvestorWallet)
{
// Mint all tokens. Then disable minting forever.
totalSupply = tokenTotalAmount * (10 ** uint256(decimals));
balances[msg.sender] = totalSupply;
Transfer(address(0x0), msg.sender, totalSupply);
transferableStartTime = _transferableStartTime;
tokenSaleContract = msg.sender;
earlyInvestorWallet = _earlyInvestorWallet;
transferOwnership(_admin); // admin could drain tokens and eth that were sent here by mistake
}
/**
* @dev override transfer token for a specified address to add onlyWhenTransferEnabled and validDestination
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint _value)
public
validDestination(_to)
onlyWhenTransferEnabled
returns (bool)
{
return super.transfer(_to, _value);
}
/**
* @dev override transferFrom token for a specified address to add onlyWhenTransferEnabled and validDestination
* @param _from The address to transfer from.
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transferFrom(address _from, address _to, uint _value)
public
validDestination(_to)
onlyWhenTransferEnabled
returns (bool)
{
return super.transferFrom(_from, _to, _value);
}
event Burn(address indexed _burner, uint _value);
/**
* @dev burn tokens
* @param _value The amount to be burned.
* @return always true (necessary in case of override)
*/
function burn(uint _value)
public
onlyWhenTransferEnabled
returns (bool)
{
balances[msg.sender] = balances[msg.sender].sub(_value);
totalSupply = totalSupply.sub(_value);
Burn(msg.sender, _value);
Transfer(msg.sender, address(0x0), _value);
return true;
}
/**
* @dev burn tokens in the behalf of someone
* @param _from The address of the owner of the token.
* @param _value The amount to be burned.
* @return always true (necessary in case of override)
*/
function burnFrom(address _from, uint256 _value)
public
onlyWhenTransferEnabled
returns(bool)
{
assert(transferFrom(_from, msg.sender, _value));
return burn(_value);
}
/**
* @dev transfer to owner any tokens send by mistake on this contracts
* @param token The address of the token to transfer.
* @param amount The amount to be transfered.
*/
function emergencyERC20Drain(ERC20 token, uint amount )
public
onlyOwner
{
token.transfer(owner, amount);
}
}
/**
* @title RequestTokenSale
* @dev
* We add new features to a base crowdsale using multiple inheritance.
* We are using the following extensions:
* CappedCrowdsale - sets a max boundary for raised funds
* WhitelistedCrowdsale - add a whitelist
* ProgressiveIndividualCappedCrowdsale - add a Progressive individual cap
*
* The code is based on the contracts of Open Zeppelin and we add our contracts : RequestTokenSale, WhiteListedCrowdsale, ProgressiveIndividualCappedCrowdsale and the Request Token
*
* @author Request.network
*/
contract RequestTokenSale is Ownable, CappedCrowdsale, WhitelistedCrowdsale, ProgressiveIndividualCappedCrowdsale {
// hard cap of the token sale in ether
uint private constant HARD_CAP_IN_WEI = 100000 ether;
// Total of Request Token supply
uint public constant TOTAL_REQUEST_TOKEN_SUPPLY = 1000000000;
// Token sale rate from ETH to REQ
uint private constant RATE_ETH_REQ = 5000;
// Token initialy distributed for the team (15%)
address public constant TEAM_VESTING_WALLET = 0xA76bC39aE4B88ef203C6Afe3fD219549d86D12f2;
uint public constant TEAM_VESTING_AMOUNT = 150000000e18;
// Token initialy distributed for the early investor (20%)
address public constant EARLY_INVESTOR_WALLET = 0xa579E31b930796e3Df50A56829cF82Db98b6F4B3;
uint public constant EARLY_INVESTOR_AMOUNT = 200000000e18;
// Token initialy distributed for the early foundation (15%)
// wallet use also to gather the ether of the token sale
address private constant REQUEST_FOUNDATION_WALLET = 0xdD76B55ee6dAfe0c7c978bff69206d476a5b9Ce7;
uint public constant REQUEST_FOUNDATION_AMOUNT = 150000000e18;
// PERIOD WHEN TOKEN IS NOT TRANSFERABLE AFTER THE SALE
uint public constant PERIOD_AFTERSALE_NOT_TRANSFERABLE_IN_SEC = 3 days;
function RequestTokenSale(uint256 _startTime, uint256 _endTime)
ProgressiveIndividualCappedCrowdsale()
WhitelistedCrowdsale()
CappedCrowdsale(HARD_CAP_IN_WEI)
StandardCrowdsale(_startTime, _endTime, RATE_ETH_REQ, REQUEST_FOUNDATION_WALLET)
{
token.transfer(TEAM_VESTING_WALLET, TEAM_VESTING_AMOUNT);
token.transfer(EARLY_INVESTOR_WALLET, EARLY_INVESTOR_AMOUNT);
token.transfer(REQUEST_FOUNDATION_WALLET, REQUEST_FOUNDATION_AMOUNT);
}
/**
* @dev Create the Request token (override createTokenContract of StandardCrowdsale)
* @return the StandardToken created
*/
function createTokenContract ()
internal
returns(StandardToken)
{
return new RequestToken(TOTAL_REQUEST_TOKEN_SUPPLY, endTime.add(PERIOD_AFTERSALE_NOT_TRANSFERABLE_IN_SEC), REQUEST_FOUNDATION_WALLET, EARLY_INVESTOR_WALLET);
}
/**
* @dev Transfer the unsold tokens to the request Foundation multisign wallet
* @dev Only for owner
* @return the StandardToken created
*/
function drainRemainingToken ()
public
onlyOwner
{
require(hasEnded());
token.transfer(REQUEST_FOUNDATION_WALLET, token.balanceOf(this));
}
}
{
"compilationTarget": {
"RequestToken.sol": "RequestToken"
},
"libraries": {},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
}
[{"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":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleContract","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"earlyInvestorWallet","outputs":[{"name":"","type":"address"}],"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":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"emergencyERC20Drain","outputs":[],"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"},{"constant":true,"inputs":[],"name":"transferableStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"tokenTotalAmount","type":"uint256"},{"name":"_transferableStartTime","type":"uint256"},{"name":"_admin","type":"address"},{"name":"_earlyInvestorWallet","type":"address"}],"payable":false,"type":"constructor"},{"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":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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"}]