|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract Ownable { |
|
address public owner; |
|
|
|
|
|
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); |
|
|
|
|
|
|
|
function Ownable() public { |
|
owner = msg.sender; |
|
} |
|
|
|
|
|
modifier onlyOwner() { |
|
require(msg.sender == owner); |
|
_; |
|
} |
|
|
|
|
|
function transferOwnership(address newOwner) public onlyOwner { |
|
require(newOwner != address(0)); |
|
OwnershipTransferred(owner, newOwner); |
|
owner = newOwner; |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
contract Haltable is Ownable { |
|
bool public halted; |
|
|
|
modifier stopInEmergency { |
|
if (halted) throw; |
|
_; |
|
} |
|
|
|
modifier stopNonOwnersInEmergency { |
|
if (halted && msg.sender != owner) throw; |
|
_; |
|
} |
|
|
|
modifier onlyInEmergency { |
|
if (!halted) throw; |
|
_; |
|
} |
|
|
|
|
|
function halt() external onlyOwner { |
|
halted = true; |
|
} |
|
|
|
|
|
function unhalt() external onlyOwner onlyInEmergency { |
|
halted = false; |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
library SafeMathLib { |
|
|
|
function times(uint a, uint b) returns (uint) { |
|
uint c = a * b; |
|
assert(a == 0 || c / a == b); |
|
return c; |
|
} |
|
|
|
function minus(uint a, uint b) returns (uint) { |
|
assert(b <= a); |
|
return a - b; |
|
} |
|
|
|
function plus(uint a, uint b) returns (uint) { |
|
uint c = a + b; |
|
assert(c>=a); |
|
return c; |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract ERC20Basic { |
|
function totalSupply() public view returns (uint256); |
|
function balanceOf(address who) public view returns (uint256); |
|
function transfer(address to, uint256 value) public returns (bool); |
|
event Transfer(address indexed from, address indexed to, uint256 value); |
|
} |
|
|
|
|
|
|
|
|
|
contract ERC20 is ERC20Basic { |
|
function allowance(address owner, address spender) public view 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); |
|
} |
|
|
|
|
|
|
|
contract FractionalERC20 is ERC20 { |
|
|
|
uint public decimals; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
contract PricingStrategy { |
|
|
|
|
|
function isPricingStrategy() public constant returns (bool) { |
|
return true; |
|
} |
|
|
|
|
|
function isSane(address crowdsale) public constant returns (bool) { |
|
return true; |
|
} |
|
|
|
|
|
function isPresalePurchase(address purchaser) public constant returns (bool) { |
|
return false; |
|
} |
|
|
|
|
|
function calculatePrice(uint value, uint weiRaised, uint tokensSold, address msgSender, uint decimals) public constant returns (uint tokenAmount); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
contract FinalizeAgent { |
|
|
|
function isFinalizeAgent() public constant returns(bool) { |
|
return true; |
|
} |
|
|
|
|
|
function isSane() public constant returns (bool); |
|
|
|
|
|
function finalizeCrowdsale(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
contract CrowdsaleBase is Haltable { |
|
|
|
|
|
uint public MAX_INVESTMENTS_BEFORE_MULTISIG_CHANGE = 5; |
|
|
|
using SafeMathLib for uint; |
|
|
|
|
|
FractionalERC20 public token; |
|
|
|
|
|
PricingStrategy public pricingStrategy; |
|
|
|
|
|
FinalizeAgent public finalizeAgent; |
|
|
|
|
|
address public multisigWallet; |
|
|
|
|
|
uint public minimumFundingGoal; |
|
|
|
|
|
uint public startsAt; |
|
|
|
|
|
uint public endsAt; |
|
|
|
|
|
uint public tokensSold = 0; |
|
|
|
|
|
uint public weiRaised = 0; |
|
|
|
|
|
uint public presaleWeiRaised = 0; |
|
|
|
|
|
uint public investorCount = 0; |
|
|
|
|
|
uint public loadedRefund = 0; |
|
|
|
|
|
uint public weiRefunded = 0; |
|
|
|
|
|
bool public finalized; |
|
|
|
|
|
mapping (address => uint256) public investedAmountOf; |
|
|
|
|
|
mapping (address => uint256) public tokenAmountOf; |
|
|
|
|
|
mapping (address => bool) public earlyParticipantWhitelist; |
|
|
|
|
|
uint public ownerTestValue; |
|
|
|
|
|
enum State{Unknown, Preparing, PreFunding, Funding, Success, Failure, Finalized, Refunding} |
|
|
|
|
|
event Invested(address investor, uint weiAmount, uint tokenAmount, uint128 customerId); |
|
|
|
|
|
event Refund(address investor, uint weiAmount); |
|
|
|
|
|
event InvestmentPolicyChanged(bool newRequireCustomerId, bool newRequiredSignedAddress, address newSignerAddress); |
|
|
|
|
|
event Whitelisted(address addr, bool status); |
|
|
|
|
|
event EndsAtChanged(uint newEndsAt); |
|
|
|
function CrowdsaleBase(address _token, PricingStrategy _pricingStrategy, address _multisigWallet, uint _start, uint _end, uint _minimumFundingGoal) { |
|
|
|
owner = msg.sender; |
|
|
|
token = FractionalERC20(_token); |
|
setPricingStrategy(_pricingStrategy); |
|
|
|
multisigWallet = _multisigWallet; |
|
if(multisigWallet == 0) { |
|
throw; |
|
} |
|
|
|
if(_start == 0) { |
|
throw; |
|
} |
|
|
|
startsAt = _start; |
|
|
|
if(_end == 0) { |
|
throw; |
|
} |
|
|
|
endsAt = _end; |
|
|
|
|
|
if(startsAt >= endsAt) { |
|
throw; |
|
} |
|
|
|
|
|
minimumFundingGoal = _minimumFundingGoal; |
|
} |
|
|
|
|
|
function() payable { |
|
throw; |
|
} |
|
|
|
|
|
function buyTokens(address receiver, uint128 customerId, uint256 tokenAmount) stopInEmergency internal returns(uint tokensBought) { |
|
|
|
|
|
if(getState() == State.PreFunding) { |
|
|
|
if(!earlyParticipantWhitelist[receiver]) { |
|
throw; |
|
} |
|
} else if(getState() == State.Funding) { |
|
|
|
|
|
} else { |
|
|
|
throw; |
|
} |
|
|
|
uint weiAmount = msg.value; |
|
|
|
|
|
require(tokenAmount != 0); |
|
|
|
if(investedAmountOf[receiver] == 0) { |
|
|
|
investorCount++; |
|
} |
|
|
|
|
|
investedAmountOf[receiver] = investedAmountOf[receiver].plus(weiAmount); |
|
tokenAmountOf[receiver] = tokenAmountOf[receiver].plus(tokenAmount); |
|
|
|
|
|
weiRaised = weiRaised.plus(weiAmount); |
|
tokensSold = tokensSold.plus(tokenAmount); |
|
|
|
if(pricingStrategy.isPresalePurchase(receiver)) { |
|
presaleWeiRaised = presaleWeiRaised.plus(weiAmount); |
|
} |
|
|
|
|
|
require(!isBreakingCap(weiAmount, tokenAmount, weiRaised, tokensSold)); |
|
|
|
assignTokens(receiver, tokenAmount); |
|
|
|
|
|
if(!multisigWallet.send(weiAmount)) throw; |
|
|
|
|
|
Invested(receiver, weiAmount, tokenAmount, customerId); |
|
|
|
return tokenAmount; |
|
} |
|
|
|
|
|
function investInternal(address receiver, uint128 customerId) stopInEmergency internal returns(uint tokensBought) { |
|
return buyTokens(receiver, customerId, pricingStrategy.calculatePrice(msg.value, weiRaised - presaleWeiRaised, tokensSold, msg.sender, token.decimals())); |
|
} |
|
|
|
|
|
function calculateTokens(uint256 weisTotal, uint256 pricePerToken) public constant returns(uint tokensTotal) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
uint multiplier = 10 ** token.decimals(); |
|
return weisTotal.times(multiplier)/pricePerToken; |
|
} |
|
|
|
|
|
function finalize() public inState(State.Success) onlyOwner stopInEmergency { |
|
|
|
|
|
if(finalized) { |
|
throw; |
|
} |
|
|
|
|
|
if(address(finalizeAgent) != 0) { |
|
finalizeAgent.finalizeCrowdsale(); |
|
} |
|
|
|
finalized = true; |
|
} |
|
|
|
|
|
function setFinalizeAgent(FinalizeAgent addr) onlyOwner { |
|
finalizeAgent = addr; |
|
|
|
|
|
if(!finalizeAgent.isFinalizeAgent()) { |
|
throw; |
|
} |
|
} |
|
|
|
|
|
function setEndsAt(uint time) onlyOwner { |
|
|
|
if(now > time) { |
|
throw; |
|
} |
|
|
|
if(startsAt > time) { |
|
throw; |
|
} |
|
|
|
endsAt = time; |
|
EndsAtChanged(endsAt); |
|
} |
|
|
|
|
|
function setPricingStrategy(PricingStrategy _pricingStrategy) onlyOwner { |
|
pricingStrategy = _pricingStrategy; |
|
|
|
|
|
if(!pricingStrategy.isPricingStrategy()) { |
|
throw; |
|
} |
|
} |
|
|
|
|
|
function setMultisig(address addr) public onlyOwner { |
|
|
|
|
|
if(investorCount > MAX_INVESTMENTS_BEFORE_MULTISIG_CHANGE) { |
|
throw; |
|
} |
|
|
|
multisigWallet = addr; |
|
} |
|
|
|
|
|
function loadRefund() public payable inState(State.Failure) { |
|
if(msg.value == 0) throw; |
|
loadedRefund = loadedRefund.plus(msg.value); |
|
} |
|
|
|
|
|
function refund() public inState(State.Refunding) { |
|
uint256 weiValue = investedAmountOf[msg.sender]; |
|
if (weiValue == 0) throw; |
|
investedAmountOf[msg.sender] = 0; |
|
weiRefunded = weiRefunded.plus(weiValue); |
|
Refund(msg.sender, weiValue); |
|
if (!msg.sender.send(weiValue)) throw; |
|
} |
|
|
|
|
|
function isMinimumGoalReached() public constant returns (bool reached) { |
|
return weiRaised >= minimumFundingGoal; |
|
} |
|
|
|
|
|
function isFinalizerSane() public constant returns (bool sane) { |
|
return finalizeAgent.isSane(); |
|
} |
|
|
|
|
|
function isPricingSane() public constant returns (bool sane) { |
|
return pricingStrategy.isSane(address(this)); |
|
} |
|
|
|
|
|
function getState() public constant returns (State) { |
|
if(finalized) return State.Finalized; |
|
else if (address(finalizeAgent) == 0) return State.Preparing; |
|
else if (!finalizeAgent.isSane()) return State.Preparing; |
|
else if (!pricingStrategy.isSane(address(this))) return State.Preparing; |
|
else if (block.timestamp < startsAt) return State.PreFunding; |
|
else if (block.timestamp <= endsAt && !isCrowdsaleFull()) return State.Funding; |
|
else if (isMinimumGoalReached()) return State.Success; |
|
else if (!isMinimumGoalReached() && weiRaised > 0 && loadedRefund >= weiRaised) return State.Refunding; |
|
else return State.Failure; |
|
} |
|
|
|
|
|
function setOwnerTestValue(uint val) onlyOwner { |
|
ownerTestValue = val; |
|
} |
|
|
|
|
|
function setEarlyParicipantWhitelist(address addr, bool status) onlyOwner { |
|
earlyParticipantWhitelist[addr] = status; |
|
Whitelisted(addr, status); |
|
} |
|
|
|
|
|
|
|
function isCrowdsale() public constant returns (bool) { |
|
return true; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
modifier inState(State state) { |
|
if(getState() != state) throw; |
|
_; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function isBreakingCap(uint weiAmount, uint tokenAmount, uint weiRaisedTotal, uint tokensSoldTotal) constant returns (bool limitBroken); |
|
|
|
|
|
function isCrowdsaleFull() public constant returns (bool); |
|
|
|
|
|
function assignTokens(address receiver, uint tokenAmount) internal; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
library BytesDeserializer { |
|
|
|
|
|
function slice32(bytes b, uint offset) constant returns (bytes32) { |
|
bytes32 out; |
|
|
|
for (uint i = 0; i < 32; i++) { |
|
out |= bytes32(b[offset + i] & 0xFF) >> (i * 8); |
|
} |
|
return out; |
|
} |
|
|
|
|
|
function sliceAddress(bytes b, uint offset) constant returns (address) { |
|
bytes32 out; |
|
|
|
for (uint i = 0; i < 20; i++) { |
|
out |= bytes32(b[offset + i] & 0xFF) >> ((i+12) * 8); |
|
} |
|
return address(uint(out)); |
|
} |
|
|
|
|
|
function slice16(bytes b, uint offset) constant returns (bytes16) { |
|
bytes16 out; |
|
|
|
for (uint i = 0; i < 16; i++) { |
|
out |= bytes16(b[offset + i] & 0xFF) >> (i * 8); |
|
} |
|
return out; |
|
} |
|
|
|
|
|
function slice4(bytes b, uint offset) constant returns (bytes4) { |
|
bytes4 out; |
|
|
|
for (uint i = 0; i < 4; i++) { |
|
out |= bytes4(b[offset + i] & 0xFF) >> (i * 8); |
|
} |
|
return out; |
|
} |
|
|
|
|
|
function slice2(bytes b, uint offset) constant returns (bytes2) { |
|
bytes2 out; |
|
|
|
for (uint i = 0; i < 2; i++) { |
|
out |= bytes2(b[offset + i] & 0xFF) >> (i * 8); |
|
} |
|
return out; |
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
contract KYCPayloadDeserializer { |
|
|
|
using BytesDeserializer for bytes; |
|
|
|
|
|
|
|
|
|
struct KYCPayload { |
|
|
|
|
|
address whitelistedAddress; |
|
|
|
|
|
uint128 customerId; |
|
|
|
|
|
uint32 minETH; |
|
|
|
|
|
uint32 maxETH; |
|
|
|
|
|
uint256 pricingInfo; |
|
} |
|
|
|
|
|
|
|
function getKYCPayload(bytes dataframe) public constant returns(address whitelistedAddress, uint128 customerId, uint32 minEth, uint32 maxEth, uint256 pricingInfo) { |
|
address _whitelistedAddress = dataframe.sliceAddress(0); |
|
uint128 _customerId = uint128(dataframe.slice16(20)); |
|
uint32 _minETH = uint32(dataframe.slice4(36)); |
|
uint32 _maxETH = uint32(dataframe.slice4(40)); |
|
uint256 _pricingInfo = uint256(dataframe.slice32(44)); |
|
return (_whitelistedAddress, _customerId, _minETH, _maxETH, _pricingInfo); |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
contract KYCPresale is CrowdsaleBase, KYCPayloadDeserializer { |
|
|
|
|
|
uint256 public saleWeiCap; |
|
|
|
|
|
address public signerAddress; |
|
|
|
|
|
event SignerChanged(address signer); |
|
|
|
|
|
event Prepurchased(address investor, uint weiAmount, uint tokenAmount, uint128 customerId, uint256 pricingInfo); |
|
|
|
|
|
event CapUpdated(uint256 newCap); |
|
|
|
|
|
function KYCPresale(address _multisigWallet, uint _start, uint _end, uint _saleWeiCap) CrowdsaleBase(FractionalERC20(address(1)), PricingStrategy(address(0)), _multisigWallet, _start, _end, 0) { |
|
saleWeiCap = _saleWeiCap; |
|
} |
|
|
|
|
|
function buyWithKYCData(bytes dataframe, uint8 v, bytes32 r, bytes32 s) public payable returns(uint tokenAmount) { |
|
|
|
|
|
require(!halted); |
|
|
|
bytes32 hash = sha256(dataframe); |
|
var (whitelistedAddress, customerId, minETH, maxETH, pricingInfo) = getKYCPayload(dataframe); |
|
uint multiplier = 10 ** 18; |
|
address receiver = msg.sender; |
|
uint weiAmount = msg.value; |
|
|
|
|
|
require(ecrecover(hash, v, r, s) == signerAddress); |
|
|
|
|
|
if(getState() == State.PreFunding) { |
|
|
|
require(earlyParticipantWhitelist[receiver]); |
|
} else if(getState() == State.Funding) { |
|
|
|
|
|
} else { |
|
|
|
revert(); |
|
} |
|
|
|
if(investedAmountOf[receiver] == 0) { |
|
|
|
investorCount++; |
|
} |
|
|
|
|
|
investedAmountOf[receiver] = investedAmountOf[receiver].plus(weiAmount); |
|
|
|
|
|
weiRaised = weiRaised.plus(weiAmount); |
|
|
|
|
|
require(!isBreakingCap(weiAmount, tokenAmount, weiRaised, tokensSold)); |
|
|
|
require(investedAmountOf[msg.sender] >= minETH * multiplier / 10000); |
|
require(investedAmountOf[msg.sender] <= maxETH * multiplier / 10000); |
|
|
|
|
|
require(multisigWallet.send(weiAmount)); |
|
|
|
|
|
Prepurchased(receiver, weiAmount, tokenAmount, customerId, pricingInfo); |
|
|
|
return 0; |
|
} |
|
|
|
|
|
|
|
function setSignerAddress(address _signerAddress) onlyOwner { |
|
signerAddress = _signerAddress; |
|
SignerChanged(signerAddress); |
|
} |
|
|
|
|
|
function isBreakingCap(uint weiAmount, uint tokenAmount, uint weiRaisedTotal, uint tokensSoldTotal) constant returns (bool limitBroken) { |
|
if(weiRaisedTotal > saleWeiCap) { |
|
return true; |
|
} else { |
|
return false; |
|
} |
|
} |
|
|
|
|
|
function isCrowdsaleFull() public constant returns (bool) { |
|
return weiRaised >= saleWeiCap; |
|
} |
|
|
|
|
|
function setWeiCap(uint newCap) public onlyOwner { |
|
saleWeiCap = newCap; |
|
CapUpdated(newCap); |
|
} |
|
|
|
|
|
function assignTokens(address receiver, uint tokenAmount) internal { |
|
revert(); |
|
} |
|
|
|
|
|
function setPricingStrategy(PricingStrategy _pricingStrategy) onlyOwner { |
|
} |
|
|
|
|
|
function getState() public constant returns (State) { |
|
if (block.timestamp < startsAt) { |
|
return State.PreFunding; |
|
} else { |
|
return State.Funding; |
|
} |
|
} |
|
|
|
} |