ETH Price: $1,917.42 (-5.56%)

Contract Diff Checker

Contract Name:
CrowdInvestment

Contract Source Code:

File 1 of 1 : CrowdInvestment

pragma solidity ^0.4.4;
// "10000000000000000", "60000000000", "4000000000000000"
// , 0.004 ETH
contract CrowdInvestment {
    uint private restAmountToInvest;
    uint private maxGasPrice;
    address private creator;
    mapping(address => uint) private perUserInvestments;
    mapping(address => uint) private additionalCaps;
    uint private limitPerInvestor;

    function CrowdInvestment(uint totalCap, uint maxGasPriceParam, uint capForEverybody) public {
        restAmountToInvest = totalCap;
        creator = msg.sender;
        maxGasPrice = maxGasPriceParam;
        limitPerInvestor = capForEverybody;
    }

    function () public payable {
        require(restAmountToInvest >= msg.value); // общий лимит инвестиций
        require(tx.gasprice <= maxGasPrice); // лимит на gas price
        require(getCap(msg.sender) >= msg.value); // лимит на инвестора
        restAmountToInvest -= msg.value; // уменьшим общий лимит инвестиций
        perUserInvestments[msg.sender] += msg.value; // запишем инвестицию пользователя
    }

    function getCap (address investor) public view returns (uint) {
        return limitPerInvestor - perUserInvestments[investor] + additionalCaps[investor];
    }

    function getTotalCap () public view returns (uint) {
        return restAmountToInvest;
    }

    function addPersonalCap (address investor, uint additionalCap) public {
        require(msg.sender == creator);
        additionalCaps[investor] += additionalCap;
    }

    function addPersonalCaps (address[] memory investors, uint additionalCap) public {
        require(msg.sender == creator);
        for (uint16 i = 0; i < investors.length; i++) {
            additionalCaps[investors[i]] += additionalCap;
        }
    }

    function withdraw () public {
        require(msg.sender == creator); // только создатель может писать
        creator.transfer(this.balance); // передадим все деньги создателю и только ему
    }
}

Please enter a contract address above to load the contract details and source code.

Context size (optional):