ETH Price: $2,521.05 (+2.73%)

Contract

0x1a4d12Ab7033483bEEf93b9faCDB818c0f039271
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Harvest Tokens141547162022-02-06 20:38:22939 days ago1644179902IN
0x1a4d12Ab...c0f039271
0 ETH0.0093430196.05339251
Harvest Tokens138485272021-12-21 12:26:35986 days ago1640089595IN
0x1a4d12Ab...c0f039271
0 ETH0.0025616740.61695735
Harvest Tokens138469802021-12-21 6:37:58986 days ago1640068678IN
0x1a4d12Ab...c0f039271
0 ETH0.0038359139.4361407
Harvest Tokens137444472021-12-05 6:22:491002 days ago1638685369IN
0x1a4d12Ab...c0f039271
0 ETH0.0064637866.4527029
Harvest Tokens137342432021-12-03 15:01:451004 days ago1638543705IN
0x1a4d12Ab...c0f039271
0 ETH0.01551353159.49103411
Harvest Tokens137310272021-12-03 2:43:261005 days ago1638499406IN
0x1a4d12Ab...c0f039271
0 ETH0.009372196.35245761
Harvest Tokens137229532021-12-01 19:38:481006 days ago1638387528IN
0x1a4d12Ab...c0f039271
0 ETH0.01095442112.61992305
Harvest Tokens136954922021-11-27 10:09:381010 days ago1638007778IN
0x1a4d12Ab...c0f039271
0 ETH0.0067188783.80887695
Harvest All136570332021-11-21 8:17:321016 days ago1637482652IN
0x1a4d12Ab...c0f039271
0 ETH0.0084886762.25516892
Harvest Tokens136214712021-11-15 16:47:201022 days ago1636994840IN
0x1a4d12Ab...c0f039271
0 ETH0.01902582237.32152897
Harvest Tokens136206902021-11-15 13:50:411022 days ago1636984241IN
0x1a4d12Ab...c0f039271
0 ETH0.01097035136.84038117
Harvest Tokens136176542021-11-15 2:20:391023 days ago1636942839IN
0x1a4d12Ab...c0f039271
0 ETH0.01371523171.0789739
Harvest All136172462021-11-15 0:42:511023 days ago1636936971IN
0x1a4d12Ab...c0f039271
0 ETH0.01413411103.65827962
Harvest Tokens136136822021-11-14 11:22:531023 days ago1636888973IN
0x1a4d12Ab...c0f039271
0 ETH0.0056930871.01358605
Harvest Tokens136118142021-11-14 4:14:261024 days ago1636863266IN
0x1a4d12Ab...c0f039271
0 ETH0.01098548137.0290906
Harvest All136056672021-11-13 4:52:381025 days ago1636779158IN
0x1a4d12Ab...c0f039271
0 ETH0.01453691106.61236678
Harvest All135787552021-11-08 23:42:561029 days ago1636414976IN
0x1a4d12Ab...c0f039271
0 ETH0.02444999179.31395527
Harvest All135686652021-11-07 9:46:321030 days ago1636278392IN
0x1a4d12Ab...c0f039271
0 ETH0.009622262.70456807
Harvest Tokens135621862021-11-06 9:23:251031 days ago1636190605IN
0x1a4d12Ab...c0f039271
0 ETH0.0063214678.85175324
Harvest Tokens135319992021-11-01 15:36:321036 days ago1635780992IN
0x1a4d12Ab...c0f039271
0 ETH0.01727923215.53508616
Harvest Tokens135316732021-11-01 14:22:461036 days ago1635776566IN
0x1a4d12Ab...c0f039271
0 ETH0.01655501206.50139981
Harvest All135309162021-11-01 11:30:271036 days ago1635766227IN
0x1a4d12Ab...c0f039271
0 ETH0.01549888101.00087381
Harvest Tokens135271252021-10-31 21:16:011037 days ago1635714961IN
0x1a4d12Ab...c0f039271
0 ETH0.01268049158.17199614
Harvest Tokens135235422021-10-31 7:41:361037 days ago1635666096IN
0x1a4d12Ab...c0f039271
0 ETH0.0062002198.30836916
Harvest Tokens135110772021-10-29 8:36:391039 days ago1635496599IN
0x1a4d12Ab...c0f039271
0 ETH0.0092086146.00834316
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SaleBatch

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : SaleBatch.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/*
This contract allows the sale of an "offering" token in exchange for a "payment"
token.
It let's investors buy tokens at a fixed price but depending on the amount of
interest investors will get a variable allocation size (also called batch auction).
The sale is configured with an target amount of payment token to raise and set
amount of offering tokens to sell. Investors can participate multiple times.
Once the sale ends, investors get to claim their tokens and possibly their
payment token refund (for the execess amount that wasn't used to purchase tokens).
*/

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./interfaces/IVoters.sol";
import "./interfaces/IERC677Receiver.sol";

contract SaleBatch is IERC677Receiver, Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;

    // Information of each user's participation
    struct UserInfo {
        // How many tokens the user has provided
        uint amount;
        // Wether this user has already claimed their refund, defaults to false
        bool claimedRefund;
        // Wether this user has already claimed their share of tokens, defaults to false
        bool claimedTokens;
    }

    // The raising token
    IERC20 public paymentToken;
    // The offering token
    IERC20 public offeringToken;
    // The time (unix seconds) when sale starts
    uint public startTime;
    // The time (unix security) when sale ends
    uint public endTime;
    // Total amount of raising tokens that need to be raised
    uint public raisingAmount;
    // Total amount of offeringToken that will be offered
    uint public offeringAmount;
    // Maximum a user can contribute
    uint public perUserCap;
    // Voting token minimum balance to participate
    uint public votingMinimum;
    // Voting token address
    IVoters public votingToken;
    // Voting token snapshot id to use for balances (optional)
    uint public votingSnapshotId;
    // Wether deposits are paused
    bool public paused;
    // Wether the sale is finalized
    bool public finalized;
    // Total amount of raising tokens that have already been raised
    uint public totalAmount;
    // User's participation info
    mapping(address => UserInfo) public userInfo;
    // Participants list
    address[] public addressList;

    event Deposit(address indexed user, uint amount);
    event HarvestRefund(address indexed user, uint amount);
    event HarvestTokens(address indexed user, uint amount);

    constructor(
        address _paymentToken,
        address _offeringToken,
        uint _startTime,
        uint _endTime,
        uint _offeringAmount,
        uint _raisingAmount,
        uint _perUserCap
    ) Ownable() {
        paymentToken = IERC20(_paymentToken);
        offeringToken = IERC20(_offeringToken);
        startTime = _startTime;
        endTime = _endTime;
        offeringAmount = _offeringAmount;
        raisingAmount = _raisingAmount;
        perUserCap = _perUserCap;
        require(_paymentToken != address(0) && _offeringToken != address(0), "!zero");
        require(_paymentToken != _offeringToken, "payment != offering");
        require(_offeringAmount > 0, "offering > 0");
        require(_raisingAmount > 0, "raising > 0");
        require(_startTime > block.timestamp, "start > now");
        require(_startTime < _endTime, "start < end");
        require(_startTime < 10000000000, "start time not unix");
        require(_endTime < 10000000000, "start time not unix");
    }

    function configureVotingToken(
        uint minimum,
        address token,
        uint snapshotId
    ) public onlyOwner {
        votingMinimum = minimum;
        votingToken = IVoters(token);
        votingSnapshotId = snapshotId;
    }

    function setRaisingAmount(uint amount) public onlyOwner {
      require(block.timestamp < startTime && totalAmount == 0, "sale started");
      raisingAmount = amount;
    }

    function togglePaused() public onlyOwner {
        paused = !paused;
    }

    function finalize() public {
        require(msg.sender == owner() || block.timestamp > endTime + 14 days, "not allowed");
        finalized = true;
    }

    function getAddressListLength() external view returns (uint) {
        return addressList.length;
    }

    function getParams() external view returns (uint, uint, uint, uint, uint, uint, bool, bool) {
        return (startTime, endTime, raisingAmount, offeringAmount, perUserCap, totalAmount, paused, finalized);
    }

    function getVotingParams() external view returns (uint, address, uint) {
        return (votingMinimum, address(votingToken), votingSnapshotId);
    }

    function _deposit(address user, uint amount) private nonReentrant {
        require(!paused, "paused");
        require(block.timestamp >= startTime && block.timestamp <= endTime, "sale not active");
        require(amount > 0, "need amount > 0");
        require(perUserCap == 0 || userInfo[user].amount + amount <= perUserCap, "over per user cap");

        if (votingMinimum > 0) {
            if (votingSnapshotId == 0) {
                require(votingToken.balanceOf(user) >= votingMinimum, "under minimum locked");
            } else {
                require(votingToken.balanceOfAt(user, votingSnapshotId) >= votingMinimum, "under minimum locked");
            }
        }

        if (userInfo[user].amount == 0) {
            addressList.push(address(user));
        }

        userInfo[user].amount = userInfo[user].amount + amount;
        totalAmount = totalAmount + amount;
        emit Deposit(user, amount);
    }

    function deposit(uint amount) public {
        _transferFrom(msg.sender, amount);
        _deposit(msg.sender, amount);
    }

    function onTokenTransfer(address user, uint amount, bytes calldata _data) public override {
        require(msg.sender == address(paymentToken), "onTokenTransfer: not paymentToken");
        _deposit(user, amount);
    }

    function harvestRefund() public nonReentrant {
        require(!paused, "paused");
        require(block.timestamp > endTime, "sale not ended");
        require(userInfo[msg.sender].amount > 0, "have you participated?");
        require(!userInfo[msg.sender].claimedRefund, "nothing to harvest");
        userInfo[msg.sender].claimedRefund = true;
        uint amount = getRefundingAmount(msg.sender);
        if (amount > 0) {
            paymentToken.safeTransfer(address(msg.sender), amount);
        }
        emit HarvestRefund(msg.sender, amount);
    }

    function harvestTokens() public nonReentrant {
        require(!paused, "paused");
        require(block.timestamp > endTime, "sale not ended");
        require(finalized, "not finalized");
        require(userInfo[msg.sender].amount > 0, "have you participated?");
        require(!userInfo[msg.sender].claimedTokens, "nothing to harvest");
        userInfo[msg.sender].claimedTokens = true;
        uint amount = getOfferingAmount(msg.sender);
        if (amount > 0) {
            offeringToken.safeTransfer(address(msg.sender), amount);
        }
        emit HarvestTokens(msg.sender, amount);
    }

    function harvestAll() public {
        harvestRefund();
        harvestTokens();
    }

    // Allocation in percent, 1 means 0.000001(0.0001%), 1000000 means 1(100%)
    function getUserAllocation(address _user) public view returns (uint) {
        return (userInfo[_user].amount * 1e12) / totalAmount / 1e6;
    }

    // Amount of offering token a user will receive
    function getOfferingAmount(address _user) public view returns (uint) {
        if (totalAmount > raisingAmount) {
            uint allocation = getUserAllocation(_user);
            return (offeringAmount * allocation) / 1e6;
        } else {
            return (userInfo[_user].amount * offeringAmount) / raisingAmount;
        }
    }

    // Amount of the offering token a user will be refunded
    function getRefundingAmount(address _user) public view returns (uint) {
        if (totalAmount <= raisingAmount) {
            return 0;
        }
        uint allocation = getUserAllocation(_user);
        uint payAmount = (raisingAmount * allocation) / 1e6;
        return userInfo[_user].amount - payAmount;
    }

    function withdrawToken(address token, uint amount) public onlyOwner {
        IERC20(token).safeTransfer(msg.sender, amount);
    }

    function _transferFrom(address from, uint amount) private {
        uint balanceBefore = paymentToken.balanceOf(address(this));
        paymentToken.safeTransferFrom(from, address(this), amount);
        uint balanceAfter = paymentToken.balanceOf(address(this));
        require(balanceAfter - balanceBefore == amount, "_transferFrom: balance change does not match amount");
    }
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 9 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 5 of 9 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 6 of 9 : IVoters.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IVoters {
  function snapshot() external returns (uint);
  function totalSupplyAt(uint snapshotId) external view returns (uint);
  function votesAt(address account, uint snapshotId) external view returns (uint);
  function balanceOf(address account) external view returns (uint);
  function balanceOfAt(address account, uint snapshotId) external view returns (uint);
  function donate(uint amount) external;
}

File 7 of 9 : IERC677Receiver.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IERC677Receiver {
  function onTokenTransfer(address _sender, uint _value, bytes calldata _data) external;
}

File 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 9 of 9 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_paymentToken","type":"address"},{"internalType":"address","name":"_offeringToken","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_offeringAmount","type":"uint256"},{"internalType":"uint256","name":"_raisingAmount","type":"uint256"},{"internalType":"uint256","name":"_perUserCap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"HarvestRefund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"HarvestTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addressList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"minimum","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"configureVotingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAddressListLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getOfferingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getRefundingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVotingParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvestAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"offeringAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"offeringToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"onTokenTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perUserCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raisingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setRaisingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"claimedRefund","type":"bool"},{"internalType":"bool","name":"claimedTokens","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingMinimum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingSnapshotId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingToken","outputs":[{"internalType":"contract IVoters","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001c5338038062001c53833981016040819052620000349162000350565b6200003f33620002e3565b60018055600280546001600160a01b03808a166001600160a01b0319928316811790935560038054918a16919092161790556004869055600585905560078490556006839055600882905515801590620000a157506001600160a01b03861615155b620000db5760405162461bcd60e51b8152602060048201526005602482015264217a65726f60d81b60448201526064015b60405180910390fd5b856001600160a01b0316876001600160a01b031614156200013f5760405162461bcd60e51b815260206004820152601360248201527f7061796d656e7420213d206f66666572696e67000000000000000000000000006044820152606401620000d2565b60008311620001805760405162461bcd60e51b815260206004820152600c60248201526b06f66666572696e67203e20360a41b6044820152606401620000d2565b60008211620001c05760405162461bcd60e51b815260206004820152600b60248201526a072616973696e67203e20360ac1b6044820152606401620000d2565b428511620001ff5760405162461bcd60e51b815260206004820152600b60248201526a7374617274203e206e6f7760a81b6044820152606401620000d2565b8385106200023e5760405162461bcd60e51b815260206004820152600b60248201526a1cdd185c9d080f08195b9960aa1b6044820152606401620000d2565b6402540be40085106200028a5760405162461bcd60e51b81526020600482015260136024820152720e6e8c2e4e840e8d2daca40dcdee840eadcd2f606b1b6044820152606401620000d2565b6402540be4008410620002d65760405162461bcd60e51b81526020600482015260136024820152720e6e8c2e4e840e8d2daca40dcdee840eadcd2f606b1b6044820152606401620000d2565b50505050505050620003b7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200034b57600080fd5b919050565b600080600080600080600060e0888a0312156200036c57600080fd5b620003778862000333565b9650620003876020890162000333565b604089015160608a015160808b015160a08c015160c0909c01519a9d939c50919a90999198509650945092505050565b61188c80620003c76000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806387e97bc61161011a578063b3f05b97116100ad578063b920ade21161007c578063b920ade21461048b578063e1af9a951461049e578063f2fde38b146104a7578063f46cf319146104ba578063fc00358e146104c357600080fd5b8063b3f05b9714610440578063b6b55f2514610452578063b781360714610465578063b810fb431461047857600080fd5b80639e281a98116100e95780639e281a98146103db578063a4c0ed36146103ee578063a6c8210e14610401578063b03401231461042d57600080fd5b806387e97bc6146103a65780638da5cb5b146103b95780638ed955b9146103ca5780639c0a7669146103d257600080fd5b806336b4bc891161019d5780635c975abb1161016c5780635c975abb146103055780635e615a6b14610322578063715018a61461038257806378e979251461038a578063834fae931461039357600080fd5b806336b4bc89146102d95780633e581842146102e15780634225c32f146102ea5780634bb278f3146102fd57600080fd5b80632f5105f8116101d95780632f5105f81461028a5780633013ce291461029d5780633197cbb6146102c857806336566f06146102d157600080fd5b8063053f424d1461020b5780631959a002146102275780631a39d8ef146102775780632a981b5b14610280575b600080fd5b61021460085481565b6040519081526020015b60405180910390f35b61025a610235366004611574565b600e602052600090815260409020805460019091015460ff8082169161010090041683565b60408051938452911515602084015215159082015260600161021e565b610214600d5481565b6102886104cb565b005b610214610298366004611574565b6106df565b6002546102b0906001600160a01b031681565b6040516001600160a01b03909116815260200161021e565b61021460055481565b61028861074e565b61028861078c565b61021460095481565b6102886102f8366004611662565b610940565b6102886109bb565b600c546103129060ff1681565b604051901515815260200161021e565b600454600554600654600754600854600d54600c5460ff80821691610100900416604080519889526020890197909752958701949094526060860192909252608085015260a0840152151560c0830152151560e08201526101000161021e565b610288610a2d565b61021460045481565b6102886103a1366004611694565b610a63565b6102146103b4366004611574565b610ab8565b6000546001600160a01b03166102b0565b610288610b34565b61021460065481565b6102886103e936600461158f565b610b44565b6102886103fc3660046115b9565b610b86565b600954600a54600b54604080519384526001600160a01b0390921660208401529082015260600161021e565b600a546102b0906001600160a01b031681565b600c5461031290610100900460ff1681565b610288610460366004611662565b610bfa565b6003546102b0906001600160a01b031681565b6102b0610486366004611662565b610c11565b610214610499366004611574565b610c3b565b61021460075481565b6102886104b5366004611574565b610c77565b610214600b5481565b600f54610214565b600260015414156104f75760405162461bcd60e51b81526004016104ee9061174d565b60405180910390fd5b6002600155600c5460ff161561051f5760405162461bcd60e51b81526004016104ee90611784565b60055442116105615760405162461bcd60e51b815260206004820152600e60248201526d1cd85b19481b9bdd08195b99195960921b60448201526064016104ee565b600c54610100900460ff166105a85760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd08199a5b985b1a5e9959609a1b60448201526064016104ee565b336000908152600e60205260409020546105fd5760405162461bcd60e51b81526020600482015260166024820152756861766520796f75207061727469636970617465643f60501b60448201526064016104ee565b336000908152600e6020526040902060010154610100900460ff161561065a5760405162461bcd60e51b81526020600482015260126024820152711b9bdd1a1a5b99c81d1bc81a185c9d995cdd60721b60448201526064016104ee565b336000818152600e60205260408120600101805461ff0019166101001790559061068390610ab8565b905080156106a2576003546106a2906001600160a01b03163383610d0f565b60405181815233907fe886e5dc1e02adde86a8908232437b8b780d1a574e823d09909791b60fcfb3ab906020015b60405180910390a25060018055565b6000600654600d54116106f457506000919050565b60006106ff83610c3b565b90506000620f42408260065461071591906117de565b61071f91906117bc565b6001600160a01b0385166000908152600e60205260409020549091506107469082906117fd565b949350505050565b6000546001600160a01b031633146107785760405162461bcd60e51b81526004016104ee90611718565b600c805460ff19811660ff90911615179055565b600260015414156107af5760405162461bcd60e51b81526004016104ee9061174d565b6002600155600c5460ff16156107d75760405162461bcd60e51b81526004016104ee90611784565b60055442116108195760405162461bcd60e51b815260206004820152600e60248201526d1cd85b19481b9bdd08195b99195960921b60448201526064016104ee565b336000908152600e602052604090205461086e5760405162461bcd60e51b81526020600482015260166024820152756861766520796f75207061727469636970617465643f60501b60448201526064016104ee565b336000908152600e602052604090206001015460ff16156108c65760405162461bcd60e51b81526020600482015260126024820152711b9bdd1a1a5b99c81d1bc81a185c9d995cdd60721b60448201526064016104ee565b336000818152600e602052604081206001908101805460ff19169091179055906108ef906106df565b9050801561090e5760025461090e906001600160a01b03163383610d0f565b60405181815233907fa4c8b042b64f459ecfd9212829dae4d9dd3b5034112576a864b210bf16419ca3906020016106d0565b6000546001600160a01b0316331461096a5760405162461bcd60e51b81526004016104ee90611718565b6004544210801561097b5750600d54155b6109b65760405162461bcd60e51b815260206004820152600c60248201526b1cd85b19481cdd185c9d195960a21b60448201526064016104ee565b600655565b6000546001600160a01b03163314806109e257506005546109df90621275006117a4565b42115b610a1c5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b60448201526064016104ee565b600c805461ff001916610100179055565b6000546001600160a01b03163314610a575760405162461bcd60e51b81526004016104ee90611718565b610a616000610d77565b565b6000546001600160a01b03163314610a8d5760405162461bcd60e51b81526004016104ee90611718565b600992909255600a80546001600160a01b0319166001600160a01b0392909216919091179055600b55565b6000600654600d541115610af6576000610ad183610c3b565b9050620f424081600754610ae591906117de565b610aef91906117bc565b9392505050565b6006546007546001600160a01b0384166000908152600e6020526040902054610b1f91906117de565b610b2991906117bc565b92915050565b919050565b610b3c61078c565b610a616104cb565b6000546001600160a01b03163314610b6e5760405162461bcd60e51b81526004016104ee90611718565b610b826001600160a01b0383163383610d0f565b5050565b6002546001600160a01b03163314610bea5760405162461bcd60e51b815260206004820152602160248201527f6f6e546f6b656e5472616e736665723a206e6f74207061796d656e74546f6b656044820152603760f91b60648201526084016104ee565b610bf48484610dc7565b50505050565b610c0433826111bf565b610c0e3382610dc7565b50565b600f8181548110610c2157600080fd5b6000918252602090912001546001600160a01b0316905081565b600d546001600160a01b0382166000908152600e60205260408120549091620f424091610c6d9064e8d4a510006117de565b610b1f91906117bc565b6000546001600160a01b03163314610ca15760405162461bcd60e51b81526004016104ee90611718565b6001600160a01b038116610d065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ee565b610c0e81610d77565b6040516001600160a01b038316602482015260448101829052610d7290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611348565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60026001541415610dea5760405162461bcd60e51b81526004016104ee9061174d565b6002600155600c5460ff1615610e125760405162461bcd60e51b81526004016104ee90611784565b6004544210158015610e2657506005544211155b610e645760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b60448201526064016104ee565b60008111610ea65760405162461bcd60e51b815260206004820152600f60248201526e06e65656420616d6f756e74203e203608c1b60448201526064016104ee565b6008541580610eda57506008546001600160a01b0383166000908152600e6020526040902054610ed79083906117a4565b11155b610f1a5760405162461bcd60e51b815260206004820152601160248201527006f7665722070657220757365722063617607c1b60448201526064016104ee565b600954156110c257600b54610ff357600954600a546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015610f7157600080fd5b505afa158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa9919061167b565b1015610fee5760405162461bcd60e51b81526020600482015260146024820152731d5b99195c881b5a5b9a5b5d5b481b1bd8dad95960621b60448201526064016104ee565b6110c2565b600954600a54600b5460405163277166bf60e11b81526001600160a01b0386811660048301526024820192909252911690634ee2cd7e9060440160206040518083038186803b15801561104557600080fd5b505afa158015611059573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107d919061167b565b10156110c25760405162461bcd60e51b81526020600482015260146024820152731d5b99195c881b5a5b9a5b5d5b481b1bd8dad95960621b60448201526064016104ee565b6001600160a01b0382166000908152600e602052604090205461112b57600f80546001810182556000919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384161790555b6001600160a01b0382166000908152600e602052604090205461114f9082906117a4565b6001600160a01b0383166000908152600e6020526040902055600d546111769082906117a4565b600d556040518181526001600160a01b038316907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a2505060018055565b6002546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561120357600080fd5b505afa158015611217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123b919061167b565b600254909150611256906001600160a01b031684308561141a565b6002546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561129a57600080fd5b505afa1580156112ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d2919061167b565b9050826112df83836117fd565b14610bf45760405162461bcd60e51b815260206004820152603360248201527f5f7472616e7366657246726f6d3a2062616c616e6365206368616e676520646f604482015272195cc81b9bdd081b585d18da08185b5bdd5b9d606a1b60648201526084016104ee565b600061139d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166114529092919063ffffffff16565b805190915015610d7257808060200190518101906113bb9190611640565b610d725760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016104ee565b6040516001600160a01b0380851660248301528316604482015260648101829052610bf49085906323b872dd60e01b90608401610d3b565b6060610746848460008585843b6114ab5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104ee565b600080866001600160a01b031685876040516114c791906116c9565b60006040518083038185875af1925050503d8060008114611504576040519150601f19603f3d011682016040523d82523d6000602084013e611509565b606091505b5091509150611519828286611524565b979650505050505050565b60608315611533575081610aef565b8251156115435782518084602001fd5b8160405162461bcd60e51b81526004016104ee91906116e5565b80356001600160a01b0381168114610b2f57600080fd5b60006020828403121561158657600080fd5b610aef8261155d565b600080604083850312156115a257600080fd5b6115ab8361155d565b946020939093013593505050565b600080600080606085870312156115cf57600080fd5b6115d88561155d565b935060208501359250604085013567ffffffffffffffff808211156115fc57600080fd5b818701915087601f83011261161057600080fd5b81358181111561161f57600080fd5b88602082850101111561163157600080fd5b95989497505060200194505050565b60006020828403121561165257600080fd5b81518015158114610aef57600080fd5b60006020828403121561167457600080fd5b5035919050565b60006020828403121561168d57600080fd5b5051919050565b6000806000606084860312156116a957600080fd5b833592506116b96020850161155d565b9150604084013590509250925092565b600082516116db818460208701611814565b9190910192915050565b6020815260008251806020840152611704816040850160208701611814565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600690820152651c185d5cd95960d21b604082015260600190565b600082198211156117b7576117b7611840565b500190565b6000826117d957634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156117f8576117f8611840565b500290565b60008282101561180f5761180f611840565b500390565b60005b8381101561182f578181015183820152602001611817565b83811115610bf45750506000910152565b634e487b7160e01b600052601160045260246000fdfea26469706673582212205faa73827d8c9127ea15bbcdf2c3cb32003ec5402f24cea67d99228277f2f18c64736f6c6343000807003300000000000000000000000069fa0fee221ad11012bab0fdb45d444d3d2ce71c00000000000000000000000084d821f7fbdd595c4c4a50842913e6b1e07d7a53000000000000000000000000000000000000000000000000000000006140aae0000000000000000000000000000000000000000000000000000000006141fc600000000000000000000000000000000000000000000422ca8b0a00a42500000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda1000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806387e97bc61161011a578063b3f05b97116100ad578063b920ade21161007c578063b920ade21461048b578063e1af9a951461049e578063f2fde38b146104a7578063f46cf319146104ba578063fc00358e146104c357600080fd5b8063b3f05b9714610440578063b6b55f2514610452578063b781360714610465578063b810fb431461047857600080fd5b80639e281a98116100e95780639e281a98146103db578063a4c0ed36146103ee578063a6c8210e14610401578063b03401231461042d57600080fd5b806387e97bc6146103a65780638da5cb5b146103b95780638ed955b9146103ca5780639c0a7669146103d257600080fd5b806336b4bc891161019d5780635c975abb1161016c5780635c975abb146103055780635e615a6b14610322578063715018a61461038257806378e979251461038a578063834fae931461039357600080fd5b806336b4bc89146102d95780633e581842146102e15780634225c32f146102ea5780634bb278f3146102fd57600080fd5b80632f5105f8116101d95780632f5105f81461028a5780633013ce291461029d5780633197cbb6146102c857806336566f06146102d157600080fd5b8063053f424d1461020b5780631959a002146102275780631a39d8ef146102775780632a981b5b14610280575b600080fd5b61021460085481565b6040519081526020015b60405180910390f35b61025a610235366004611574565b600e602052600090815260409020805460019091015460ff8082169161010090041683565b60408051938452911515602084015215159082015260600161021e565b610214600d5481565b6102886104cb565b005b610214610298366004611574565b6106df565b6002546102b0906001600160a01b031681565b6040516001600160a01b03909116815260200161021e565b61021460055481565b61028861074e565b61028861078c565b61021460095481565b6102886102f8366004611662565b610940565b6102886109bb565b600c546103129060ff1681565b604051901515815260200161021e565b600454600554600654600754600854600d54600c5460ff80821691610100900416604080519889526020890197909752958701949094526060860192909252608085015260a0840152151560c0830152151560e08201526101000161021e565b610288610a2d565b61021460045481565b6102886103a1366004611694565b610a63565b6102146103b4366004611574565b610ab8565b6000546001600160a01b03166102b0565b610288610b34565b61021460065481565b6102886103e936600461158f565b610b44565b6102886103fc3660046115b9565b610b86565b600954600a54600b54604080519384526001600160a01b0390921660208401529082015260600161021e565b600a546102b0906001600160a01b031681565b600c5461031290610100900460ff1681565b610288610460366004611662565b610bfa565b6003546102b0906001600160a01b031681565b6102b0610486366004611662565b610c11565b610214610499366004611574565b610c3b565b61021460075481565b6102886104b5366004611574565b610c77565b610214600b5481565b600f54610214565b600260015414156104f75760405162461bcd60e51b81526004016104ee9061174d565b60405180910390fd5b6002600155600c5460ff161561051f5760405162461bcd60e51b81526004016104ee90611784565b60055442116105615760405162461bcd60e51b815260206004820152600e60248201526d1cd85b19481b9bdd08195b99195960921b60448201526064016104ee565b600c54610100900460ff166105a85760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd08199a5b985b1a5e9959609a1b60448201526064016104ee565b336000908152600e60205260409020546105fd5760405162461bcd60e51b81526020600482015260166024820152756861766520796f75207061727469636970617465643f60501b60448201526064016104ee565b336000908152600e6020526040902060010154610100900460ff161561065a5760405162461bcd60e51b81526020600482015260126024820152711b9bdd1a1a5b99c81d1bc81a185c9d995cdd60721b60448201526064016104ee565b336000818152600e60205260408120600101805461ff0019166101001790559061068390610ab8565b905080156106a2576003546106a2906001600160a01b03163383610d0f565b60405181815233907fe886e5dc1e02adde86a8908232437b8b780d1a574e823d09909791b60fcfb3ab906020015b60405180910390a25060018055565b6000600654600d54116106f457506000919050565b60006106ff83610c3b565b90506000620f42408260065461071591906117de565b61071f91906117bc565b6001600160a01b0385166000908152600e60205260409020549091506107469082906117fd565b949350505050565b6000546001600160a01b031633146107785760405162461bcd60e51b81526004016104ee90611718565b600c805460ff19811660ff90911615179055565b600260015414156107af5760405162461bcd60e51b81526004016104ee9061174d565b6002600155600c5460ff16156107d75760405162461bcd60e51b81526004016104ee90611784565b60055442116108195760405162461bcd60e51b815260206004820152600e60248201526d1cd85b19481b9bdd08195b99195960921b60448201526064016104ee565b336000908152600e602052604090205461086e5760405162461bcd60e51b81526020600482015260166024820152756861766520796f75207061727469636970617465643f60501b60448201526064016104ee565b336000908152600e602052604090206001015460ff16156108c65760405162461bcd60e51b81526020600482015260126024820152711b9bdd1a1a5b99c81d1bc81a185c9d995cdd60721b60448201526064016104ee565b336000818152600e602052604081206001908101805460ff19169091179055906108ef906106df565b9050801561090e5760025461090e906001600160a01b03163383610d0f565b60405181815233907fa4c8b042b64f459ecfd9212829dae4d9dd3b5034112576a864b210bf16419ca3906020016106d0565b6000546001600160a01b0316331461096a5760405162461bcd60e51b81526004016104ee90611718565b6004544210801561097b5750600d54155b6109b65760405162461bcd60e51b815260206004820152600c60248201526b1cd85b19481cdd185c9d195960a21b60448201526064016104ee565b600655565b6000546001600160a01b03163314806109e257506005546109df90621275006117a4565b42115b610a1c5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b60448201526064016104ee565b600c805461ff001916610100179055565b6000546001600160a01b03163314610a575760405162461bcd60e51b81526004016104ee90611718565b610a616000610d77565b565b6000546001600160a01b03163314610a8d5760405162461bcd60e51b81526004016104ee90611718565b600992909255600a80546001600160a01b0319166001600160a01b0392909216919091179055600b55565b6000600654600d541115610af6576000610ad183610c3b565b9050620f424081600754610ae591906117de565b610aef91906117bc565b9392505050565b6006546007546001600160a01b0384166000908152600e6020526040902054610b1f91906117de565b610b2991906117bc565b92915050565b919050565b610b3c61078c565b610a616104cb565b6000546001600160a01b03163314610b6e5760405162461bcd60e51b81526004016104ee90611718565b610b826001600160a01b0383163383610d0f565b5050565b6002546001600160a01b03163314610bea5760405162461bcd60e51b815260206004820152602160248201527f6f6e546f6b656e5472616e736665723a206e6f74207061796d656e74546f6b656044820152603760f91b60648201526084016104ee565b610bf48484610dc7565b50505050565b610c0433826111bf565b610c0e3382610dc7565b50565b600f8181548110610c2157600080fd5b6000918252602090912001546001600160a01b0316905081565b600d546001600160a01b0382166000908152600e60205260408120549091620f424091610c6d9064e8d4a510006117de565b610b1f91906117bc565b6000546001600160a01b03163314610ca15760405162461bcd60e51b81526004016104ee90611718565b6001600160a01b038116610d065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ee565b610c0e81610d77565b6040516001600160a01b038316602482015260448101829052610d7290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611348565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60026001541415610dea5760405162461bcd60e51b81526004016104ee9061174d565b6002600155600c5460ff1615610e125760405162461bcd60e51b81526004016104ee90611784565b6004544210158015610e2657506005544211155b610e645760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b60448201526064016104ee565b60008111610ea65760405162461bcd60e51b815260206004820152600f60248201526e06e65656420616d6f756e74203e203608c1b60448201526064016104ee565b6008541580610eda57506008546001600160a01b0383166000908152600e6020526040902054610ed79083906117a4565b11155b610f1a5760405162461bcd60e51b815260206004820152601160248201527006f7665722070657220757365722063617607c1b60448201526064016104ee565b600954156110c257600b54610ff357600954600a546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015610f7157600080fd5b505afa158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa9919061167b565b1015610fee5760405162461bcd60e51b81526020600482015260146024820152731d5b99195c881b5a5b9a5b5d5b481b1bd8dad95960621b60448201526064016104ee565b6110c2565b600954600a54600b5460405163277166bf60e11b81526001600160a01b0386811660048301526024820192909252911690634ee2cd7e9060440160206040518083038186803b15801561104557600080fd5b505afa158015611059573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107d919061167b565b10156110c25760405162461bcd60e51b81526020600482015260146024820152731d5b99195c881b5a5b9a5b5d5b481b1bd8dad95960621b60448201526064016104ee565b6001600160a01b0382166000908152600e602052604090205461112b57600f80546001810182556000919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384161790555b6001600160a01b0382166000908152600e602052604090205461114f9082906117a4565b6001600160a01b0383166000908152600e6020526040902055600d546111769082906117a4565b600d556040518181526001600160a01b038316907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a2505060018055565b6002546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561120357600080fd5b505afa158015611217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123b919061167b565b600254909150611256906001600160a01b031684308561141a565b6002546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561129a57600080fd5b505afa1580156112ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d2919061167b565b9050826112df83836117fd565b14610bf45760405162461bcd60e51b815260206004820152603360248201527f5f7472616e7366657246726f6d3a2062616c616e6365206368616e676520646f604482015272195cc81b9bdd081b585d18da08185b5bdd5b9d606a1b60648201526084016104ee565b600061139d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166114529092919063ffffffff16565b805190915015610d7257808060200190518101906113bb9190611640565b610d725760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016104ee565b6040516001600160a01b0380851660248301528316604482015260648101829052610bf49085906323b872dd60e01b90608401610d3b565b6060610746848460008585843b6114ab5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104ee565b600080866001600160a01b031685876040516114c791906116c9565b60006040518083038185875af1925050503d8060008114611504576040519150601f19603f3d011682016040523d82523d6000602084013e611509565b606091505b5091509150611519828286611524565b979650505050505050565b60608315611533575081610aef565b8251156115435782518084602001fd5b8160405162461bcd60e51b81526004016104ee91906116e5565b80356001600160a01b0381168114610b2f57600080fd5b60006020828403121561158657600080fd5b610aef8261155d565b600080604083850312156115a257600080fd5b6115ab8361155d565b946020939093013593505050565b600080600080606085870312156115cf57600080fd5b6115d88561155d565b935060208501359250604085013567ffffffffffffffff808211156115fc57600080fd5b818701915087601f83011261161057600080fd5b81358181111561161f57600080fd5b88602082850101111561163157600080fd5b95989497505060200194505050565b60006020828403121561165257600080fd5b81518015158114610aef57600080fd5b60006020828403121561167457600080fd5b5035919050565b60006020828403121561168d57600080fd5b5051919050565b6000806000606084860312156116a957600080fd5b833592506116b96020850161155d565b9150604084013590509250925092565b600082516116db818460208701611814565b9190910192915050565b6020815260008251806020840152611704816040850160208701611814565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600690820152651c185d5cd95960d21b604082015260600190565b600082198211156117b7576117b7611840565b500190565b6000826117d957634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156117f8576117f8611840565b500290565b60008282101561180f5761180f611840565b500390565b60005b8381101561182f578181015183820152602001611817565b83811115610bf45750506000910152565b634e487b7160e01b600052601160045260246000fdfea26469706673582212205faa73827d8c9127ea15bbcdf2c3cb32003ec5402f24cea67d99228277f2f18c64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000069fa0fee221ad11012bab0fdb45d444d3d2ce71c00000000000000000000000084d821f7fbdd595c4c4a50842913e6b1e07d7a53000000000000000000000000000000000000000000000000000000006140aae0000000000000000000000000000000000000000000000000000000006141fc600000000000000000000000000000000000000000000422ca8b0a00a42500000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda1000000

-----Decoded View---------------
Arg [0] : _paymentToken (address): 0x69fa0feE221AD11012BAb0FdB45d444D3D2Ce71c
Arg [1] : _offeringToken (address): 0x84d821F7FbDD595c4C4A50842913e6b1E07d7a53
Arg [2] : _startTime (uint256): 1631628000
Arg [3] : _endTime (uint256): 1631714400
Arg [4] : _offeringAmount (uint256): 5000000000000000000000000
Arg [5] : _raisingAmount (uint256): 1000000000000000000000000
Arg [6] : _perUserCap (uint256): 1000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000069fa0fee221ad11012bab0fdb45d444d3d2ce71c
Arg [1] : 00000000000000000000000084d821f7fbdd595c4c4a50842913e6b1e07d7a53
Arg [2] : 000000000000000000000000000000000000000000000000000000006140aae0
Arg [3] : 000000000000000000000000000000000000000000000000000000006141fc60
Arg [4] : 0000000000000000000000000000000000000000000422ca8b0a00a425000000
Arg [5] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [6] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.