pragma solidity ^0.4.11;
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) constant returns (uint256);
function transfer(address to, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
}
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) constant returns (uint256);
function transferFrom(address from, address to, uint256 value);
function approve(address spender, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
contract FinalizableToken {
bool public isFinalized = false;
}
contract BasicToken is FinalizableToken, 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) {
if (!isFinalized) revert();
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
Transfer(msg.sender, _to, _value);
}
/**
* @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) constant returns (uint256 balance) {
return balances[_owner];
}
}
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 amout of tokens to be transfered
*/
function transferFrom(address _from, address _to, uint256 _value) {
if (!isFinalized) revert();
var _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// if (_value > _allowance) throw;
balances[_to] = balances[_to].add(_value);
balances[_from] = balances[_from].sub(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
Transfer(_from, _to, _value);
}
/**
* @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) {
// To change the approve amount you first have to reduce the addresses`
// allowance to zero by calling `approve(_spender, 0)` if it is not
// already 0 to mitigate the race condition described here:
// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) revert();
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
}
/**
* @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 specifing the amount of tokens still avaible for the spender.
*/
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
}
contract SimpleToken is StandardToken {
string public name = "SimpleToken";
string public symbol = "SIM";
uint256 public decimals = 18;
uint256 public INITIAL_SUPPLY = 10000;
/**
* @dev Contructor that gives msg.sender all of existing tokens.
*/
function SimpleToken() {
totalSupply = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
}
}
contract Ownable {
address public owner;
/**
* @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() {
if (msg.sender != owner) {
revert();
}
_;
}
/**
* @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 {
if (newOwner != address(0)) {
owner = newOwner;
}
}
}
library SafeMath {
function mul(uint256 a, uint256 b) internal returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal 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 returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
library Math {
function max64(uint64 a, uint64 b) internal constant returns (uint64) {
return a >= b ? a : b;
}
function min64(uint64 a, uint64 b) internal constant returns (uint64) {
return a < b ? a : b;
}
function max256(uint256 a, uint256 b) internal constant returns (uint256) {
return a >= b ? a : b;
}
function min256(uint256 a, uint256 b) internal constant returns (uint256) {
return a < b ? a : b;
}
}
contract RexToken is StandardToken, Ownable {
function version() constant returns (bytes32) {
return "0.1.2-debug";
}
string public constant name = "REX - Real Estate tokens";
string public constant symbol = "REX";
uint256 public constant decimals = 18;
uint256 constant BASE_RATE = 700;
uint256 constant ETH_RATE = 225; // TODO: update before deploying
uint256 constant USD_RAISED_CAP = 27*10**6; // 30*10**6 = $30 Million USD
uint256 constant ETHER_RAISED_CAP = USD_RAISED_CAP / ETH_RATE;
uint256 public constant WEI_RAISED_CAP = ETHER_RAISED_CAP * 1 ether;
uint256 constant DURATION = 4 weeks;
uint256 TOTAL_SHARE = 1000;
uint256 CROWDSALE_SHARE = 500;
address ANGELS_ADDRESS = 0x00998eba0E5B83018a0CFCdeCc5304f9f167d27a;
uint256 ANGELS_SHARE = 50;
address CORE_1_ADDRESS = 0x4aD48BE9bf6E2d35277Bd33C100D283C29C7951F;
uint256 CORE_1_SHARE = 75;
address CORE_2_ADDRESS = 0x2a62609c6A6bDBE25Da4fb05980e85db9A479C5e;
uint256 CORE_2_SHARE = 75;
address PARTNERSHIP_ADDRESS = 0x53B8fFBe35AE548f22d5a3b31D6E5e0C04f0d2DF;
uint256 PARTNERSHIP_SHARE = 70;
address REWARDS_ADDRESS = 0x43F1aa047D3241B7DD250EB37b25fc509085fDf9;
uint256 REWARDS_SHARE = 200;
address AFFILIATE_ADDRESS = 0x64ea62A8080eD1C2b8d996ACC7a82108975e5361;
uint256 AFFILIATE_SHARE = 30;
// state variables
address vault;
address previousToken;
uint256 public startTime;
uint256 public weiRaised;
event TokenCreated(address indexed investor, uint256 amount);
function RexToken(uint256 _start, address _vault, address _previousToken) {
startTime = _start;
vault = _vault;
previousToken = _previousToken;
isFinalized = false;
}
function () payable {
createTokens(msg.sender);
}
function createTokens(address recipient) payable {
if (tokenSaleOnHold) revert();
if (msg.value == 0) revert();
if (now < startTime) revert();
if (now > startTime + DURATION) revert();
uint256 weiAmount = msg.value;
if (weiRaised >= WEI_RAISED_CAP) revert();
//if funder sent more than the remaining amount then send them a refund of the difference
if ((weiRaised + weiAmount) > WEI_RAISED_CAP) {
weiAmount = WEI_RAISED_CAP - weiRaised;
if (!msg.sender.send(msg.value - weiAmount))
revert();
}
// calculate token amount to be created
uint256 tokens = weiAmount.mul(getRate());
// update totals
totalSupply = totalSupply.add(tokens);
weiRaised = weiRaised.add(weiAmount);
balances[recipient] = balances[recipient].add(tokens);
TokenCreated(recipient, tokens);
// send ether to the vault
if (!vault.send(weiAmount)) revert();
}
// return dynamic pricing
function getRate() constant returns (uint256) {
uint256 bonus = 0;
if (now < (startTime + 1 weeks)) {
bonus = 300;
} else if (now < (startTime + 2 weeks)) {
bonus = 200;
} else if (now < (startTime + 3 weeks)) {
bonus = 100;
}
return BASE_RATE.add(bonus);
}
function tokenAmount(uint256 share, uint256 finalSupply) constant returns (uint) {
if (share > TOTAL_SHARE) revert();
return share.mul(finalSupply).div(TOTAL_SHARE);
}
// grant regular tokens by share
function grantTokensByShare(address to, uint256 share, uint256 finalSupply) internal {
uint256 tokens = tokenAmount(share, finalSupply);
balances[to] = balances[to].add(tokens);
TokenCreated(to, tokens);
totalSupply = totalSupply.add(tokens);
}
function getFinalSupply() constant returns (uint256) {
return TOTAL_SHARE.mul(totalSupply).div(CROWDSALE_SHARE);
}
// do final token distribution
function finalize() onlyOwner() {
if (isFinalized) revert();
//if we are under the cap and not hit the duration then throw
if (weiRaised < WEI_RAISED_CAP && now <= startTime + DURATION) revert();
uint256 finalSupply = getFinalSupply();
grantTokensByShare(ANGELS_ADDRESS, ANGELS_SHARE, finalSupply);
grantTokensByShare(CORE_1_ADDRESS, CORE_1_SHARE, finalSupply);
grantTokensByShare(CORE_2_ADDRESS, CORE_2_SHARE, finalSupply);
grantTokensByShare(PARTNERSHIP_ADDRESS, PARTNERSHIP_SHARE, finalSupply);
grantTokensByShare(REWARDS_ADDRESS, REWARDS_SHARE, finalSupply);
grantTokensByShare(AFFILIATE_ADDRESS, AFFILIATE_SHARE, finalSupply);
isFinalized = true;
}
bool public tokenSaleOnHold;
function toggleTokenSaleOnHold() onlyOwner() {
if (tokenSaleOnHold)
tokenSaleOnHold = false;
else
tokenSaleOnHold = true;
}
bool public migrateDisabled;
struct structMigrate {
uint dateTimeCreated;
uint amount;
}
mapping(address => structMigrate) pendingMigrations;
function toggleMigrationStatus() onlyOwner() {
if (migrateDisabled)
migrateDisabled = false;
else
migrateDisabled = true;
}
function migrate(uint256 amount) {
//dont allow migrations until crowdfund is done
if (!isFinalized)
revert();
//dont proceed if migrate is disabled
if (migrateDisabled)
revert();
//dont proceed if there is pending value
if (pendingMigrations[msg.sender].amount > 0)
revert();
//this will throw if they dont have the balance/allowance
StandardToken(previousToken).transferFrom(msg.sender, this, amount);
//store time and amount in pending mapping
pendingMigrations[msg.sender].dateTimeCreated = now;
pendingMigrations[msg.sender].amount = amount;
}
function claimMigrate() {
//dont allow if migrations are disabled
if (migrateDisabled)
revert();
//dont proceed if no value
if (pendingMigrations[msg.sender].amount == 0)
revert();
//can only claim after a week has passed
if (now < pendingMigrations[msg.sender].dateTimeCreated + 1 weeks)
revert();
//credit the balances
balances[msg.sender] += pendingMigrations[msg.sender].amount;
totalSupply += pendingMigrations[msg.sender].amount;
//remove the pending migration from the mapping
delete pendingMigrations[msg.sender];
}
function transferOwnCoins(address _to, uint _value) onlyOwner() {
if (!isFinalized) revert();
balances[this] = balances[this].sub(_value);
balances[_to] = balances[_to].add(_value);
Transfer(this, _to, _value);
}
}
{
"compilationTarget": {
"RexToken.sol": "RexToken"
},
"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":[],"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":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"migrate","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleOnHold","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getFinalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferOwnCoins","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","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":true,"inputs":[],"name":"migrateDisabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimMigrate","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"WEI_RAISED_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"}],"name":"createTokens","outputs":[],"payable":true,"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":true,"inputs":[{"name":"share","type":"uint256"},{"name":"finalSupply","type":"uint256"}],"name":"tokenAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"toggleMigrationStatus","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"toggleTokenSaleOnHold","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_start","type":"uint256"},{"name":"_vault","type":"address"},{"name":"_previousToken","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"investor","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenCreated","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"}]