ETH Price: $2,329.52 (-5.01%)

Contract

0x1F09e308bb18795f62ea7B114041E12b426b8880
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Re Vest181898772023-09-22 7:23:23377 days ago1695367403IN
0x1F09e308...b426b8880
0 ETH0.001539379.39784923
Re Vest181898382023-09-22 7:15:35377 days ago1695366935IN
0x1F09e308...b426b8880
0 ETH0.001013799.8927199
Re Vest181857982023-09-21 17:40:59377 days ago1695318059IN
0x1F09e308...b426b8880
0 ETH0.0017191910.49411289
Re Vest181852752023-09-21 15:54:59377 days ago1695311699IN
0x1F09e308...b426b8880
0 ETH0.0012272712.53067144
Re Vest181801622023-09-20 22:44:11378 days ago1695249851IN
0x1F09e308...b426b8880
0 ETH0.000947919.2476638
Re Vest181801242023-09-20 22:36:23378 days ago1695249383IN
0x1F09e308...b426b8880
0 ETH0.0010375610.12227896
Re Vest181683652023-09-19 7:06:59380 days ago1695107219IN
0x1F09e308...b426b8880
0 ETH0.000912759.31930379
Re Vest181228702023-09-12 21:16:23386 days ago1694553383IN
0x1F09e308...b426b8880
0 ETH0.0019652311.99772354
Re Vest181228632023-09-12 21:14:59386 days ago1694553299IN
0x1F09e308...b426b8880
0 ETH0.0017890210.92036275
Re Vest181225902023-09-12 20:19:59386 days ago1694549999IN
0x1F09e308...b426b8880
0 ETH0.0027429216.26871212
Re Vest181216822023-09-12 17:17:35386 days ago1694539055IN
0x1F09e308...b426b8880
0 ETH0.0040661424.81824306
Re Vest181216122023-09-12 17:03:23386 days ago1694538203IN
0x1F09e308...b426b8880
0 ETH0.0026444327
Re Vest181214782023-09-12 16:36:23386 days ago1694536583IN
0x1F09e308...b426b8880
0 ETH0.0046858428.60064266
Re Vest181214542023-09-12 16:31:35386 days ago1694536295IN
0x1F09e308...b426b8880
0 ETH0.0048340529.50524906
Re Vest181175692023-09-12 3:26:35387 days ago1694489195IN
0x1F09e308...b426b8880
0 ETH0.0015546115.87279882
Re Vest181059972023-09-10 12:32:47388 days ago1694349167IN
0x1F09e308...b426b8880
0 ETH0.0017771410.84783993
Re Vest181030652023-09-10 2:41:35389 days ago1694313695IN
0x1F09e308...b426b8880
0 ETH0.002018212.31839658
Re Vest181012382023-09-09 20:32:47389 days ago1694291567IN
0x1F09e308...b426b8880
0 ETH0.001802211
Re Vest180977712023-09-09 8:52:23390 days ago1694249543IN
0x1F09e308...b426b8880
0 ETH0.0018001110.9872582
Re Vest180973932023-09-09 7:36:35390 days ago1694244995IN
0x1F09e308...b426b8880
0 ETH0.0012043912.2994375
Re Vest180973882023-09-09 7:35:23390 days ago1694244923IN
0x1F09e308...b426b8880
0 ETH0.0019423911.51984353
Re Vest180890382023-09-08 3:31:59391 days ago1694143919IN
0x1F09e308...b426b8880
0 ETH0.0009793210
Re Vest180856742023-09-07 16:15:11391 days ago1694103311IN
0x1F09e308...b426b8880
0 ETH0.0041964225.61714702
Re Vest180853722023-09-07 15:14:23391 days ago1694099663IN
0x1F09e308...b426b8880
0 ETH0.0052427832
Re Vest180853532023-09-07 15:10:35391 days ago1694099435IN
0x1F09e308...b426b8880
0 ETH0.0031293631.95448152
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:
GROBurner

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license
File 1 of 6 : GROBurner.sol
// SPDX-License-Identifier: AGPLv3
pragma solidity 0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

interface IVester {
    function vest(
        bool vest,
        address account,
        uint256 amount
    ) external;
}

interface IDistributer {
    function burn(uint256 amount) external;
}

/// Contract for moving users GRO tokens into a vesting position. Allows user to add to their
///  current vesting position (or creating a new) by vurning a set amount of gro tokens. The
///  vest to burn ratio is 1 : 1
contract GROBurner is Ownable {
    using SafeERC20 for IERC20;

    address public vester;
    address public distributer;
    address public immutable groToken;

    event LogNewBurn(address indexed user, uint256 amount);
    event LogNewDistributer(address distributer);
    event LogNewVester(address vester);

    constructor(address _vester, address _groToken) {
        vester = _vester;
        emit LogNewVester(_vester);
        groToken = _groToken;
    }

    /// @notice Set new vesting contract, this contract needs to be listed
    ///  as a vester in the target contract
    /// @param _vester Address of new vesting contract
    function setVester(address _vester) external onlyOwner {
        vester = _vester;
        emit LogNewVester(_vester);
    }

    /// @notice Set new distributer contract, this contract needs to be listed
    ///  as a burner in the target contract
    /// @param _distributer Address of new distributer contract
    function setDistributer(address _distributer) external onlyOwner {
        distributer = _distributer;
        emit LogNewDistributer(_distributer);
    }

    /// @notice Lets user move their tokens to new or existing vesting position
    /// @param amount amount the user wishes to move
    function reVest(uint256 amount) external {
        IERC20 _gro = IERC20(groToken);
        _gro.safeTransferFrom(msg.sender, address(this), amount);
        IDistributer(distributer).burn(amount);
        IVester(vester).vest(true, msg.sender, amount);
        emit LogNewBurn(msg.sender, amount);
    }
}

File 2 of 6 : 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 6 : 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 4 of 6 : 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 5 of 6 : 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 6 of 6 : 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
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_vester","type":"address"},{"internalType":"address","name":"_groToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LogNewBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"distributer","type":"address"}],"name":"LogNewDistributer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"vester","type":"address"}],"name":"LogNewVester","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":[],"name":"distributer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"groToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reVest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_distributer","type":"address"}],"name":"setDistributer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vester","type":"address"}],"name":"setVester","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vester","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60a060405234801561001057600080fd5b50604051610a15380380610a1583398101604081905261002f9161010b565b6100383361009f565b600180546001600160a01b0319166001600160a01b0384169081179091556040519081527f021bc7f0c8f417c0bfd2953190e2bb164345161eec2bc776c10ac94f29d452df9060200160405180910390a160601b6001600160601b0319166080525061013d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b038116811461010657600080fd5b919050565b6000806040838503121561011d578182fd5b610126836100ef565b9150610134602084016100ef565b90509250929050565b60805160601c6108b36101626000396000818161011c01526101ee01526108b36000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063a898e0f411610066578063a898e0f4146100f1578063dad5fda314610104578063dfb5b95d14610117578063e58307701461013e578063f2fde38b1461015157600080fd5b8063421c40b6146100985780635e77df76146100ad578063715018a6146100c05780638da5cb5b146100c8575b600080fd5b6100ab6100a636600461076e565b610164565b005b6100ab6100bb3660046107b5565b6101ec565b6100ab610324565b6000546001600160a01b03165b6040516001600160a01b03909116815260200160405180910390f35b6002546100d5906001600160a01b031681565b6001546100d5906001600160a01b031681565b6100d57f000000000000000000000000000000000000000000000000000000000000000081565b6100ab61014c36600461076e565b61035a565b6100ab61015f36600461076e565b6103d2565b6000546001600160a01b031633146101975760405162461bcd60e51b815260040161018e9061081c565b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f021bc7f0c8f417c0bfd2953190e2bb164345161eec2bc776c10ac94f29d452df906020015b60405180910390a150565b7f00000000000000000000000000000000000000000000000000000000000000006102226001600160a01b03821633308561046d565b600254604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c6890602401600060405180830381600087803b15801561026857600080fd5b505af115801561027c573d6000803e3d6000fd5b505060018054604051635ef09f2760e01b81526004810192909252336024830152604482018690526001600160a01b03169250635ef09f279150606401600060405180830381600087803b1580156102d357600080fd5b505af11580156102e7573d6000803e3d6000fd5b50506040518481523392507ff34f82baee8fce9785000c878e33edb29c86d7f748823cf88cccb625667bc2ea915060200160405180910390a25050565b6000546001600160a01b0316331461034e5760405162461bcd60e51b815260040161018e9061081c565b61035860006104cd565b565b6000546001600160a01b031633146103845760405162461bcd60e51b815260040161018e9061081c565b600280546001600160a01b0319166001600160a01b0383169081179091556040519081527f862b2acce08b11b4a0e27522a624de74641e1eecca1c273cad02b3677a0efe30906020016101e1565b6000546001600160a01b031633146103fc5760405162461bcd60e51b815260040161018e9061081c565b6001600160a01b0381166104615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161018e565b61046a816104cd565b50565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526104c790859061051d565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610572826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166105f49092919063ffffffff16565b8051909150156105ef57808060200190518101906105909190610795565b6105ef5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161018e565b505050565b6060610603848460008561060d565b90505b9392505050565b60608247101561066e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161018e565b843b6106bc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161018e565b600080866001600160a01b031685876040516106d891906107cd565b60006040518083038185875af1925050503d8060008114610715576040519150601f19603f3d011682016040523d82523d6000602084013e61071a565b606091505b509150915061072a828286610735565b979650505050505050565b60608315610744575081610606565b8251156107545782518084602001fd5b8160405162461bcd60e51b815260040161018e91906107e9565b60006020828403121561077f578081fd5b81356001600160a01b0381168114610606578182fd5b6000602082840312156107a6578081fd5b81518015158114610606578182fd5b6000602082840312156107c6578081fd5b5035919050565b600082516107df818460208701610851565b9190910192915050565b6020815260008251806020840152610808816040850160208701610851565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60005b8381101561086c578181015183820152602001610854565b838111156104c7575050600091015256fea26469706673582212205d014c7788444839b60e33b259acc33cd5a26c2f0a9990504b9053978a762ba364736f6c63430008040033000000000000000000000000748218256afe0a19a88ebeb2e0c5ce86d21783600000000000000000000000003ec8798b81485a254928b70cda1cf0a2bb0b74d7

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063a898e0f411610066578063a898e0f4146100f1578063dad5fda314610104578063dfb5b95d14610117578063e58307701461013e578063f2fde38b1461015157600080fd5b8063421c40b6146100985780635e77df76146100ad578063715018a6146100c05780638da5cb5b146100c8575b600080fd5b6100ab6100a636600461076e565b610164565b005b6100ab6100bb3660046107b5565b6101ec565b6100ab610324565b6000546001600160a01b03165b6040516001600160a01b03909116815260200160405180910390f35b6002546100d5906001600160a01b031681565b6001546100d5906001600160a01b031681565b6100d57f0000000000000000000000003ec8798b81485a254928b70cda1cf0a2bb0b74d781565b6100ab61014c36600461076e565b61035a565b6100ab61015f36600461076e565b6103d2565b6000546001600160a01b031633146101975760405162461bcd60e51b815260040161018e9061081c565b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f021bc7f0c8f417c0bfd2953190e2bb164345161eec2bc776c10ac94f29d452df906020015b60405180910390a150565b7f0000000000000000000000003ec8798b81485a254928b70cda1cf0a2bb0b74d76102226001600160a01b03821633308561046d565b600254604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c6890602401600060405180830381600087803b15801561026857600080fd5b505af115801561027c573d6000803e3d6000fd5b505060018054604051635ef09f2760e01b81526004810192909252336024830152604482018690526001600160a01b03169250635ef09f279150606401600060405180830381600087803b1580156102d357600080fd5b505af11580156102e7573d6000803e3d6000fd5b50506040518481523392507ff34f82baee8fce9785000c878e33edb29c86d7f748823cf88cccb625667bc2ea915060200160405180910390a25050565b6000546001600160a01b0316331461034e5760405162461bcd60e51b815260040161018e9061081c565b61035860006104cd565b565b6000546001600160a01b031633146103845760405162461bcd60e51b815260040161018e9061081c565b600280546001600160a01b0319166001600160a01b0383169081179091556040519081527f862b2acce08b11b4a0e27522a624de74641e1eecca1c273cad02b3677a0efe30906020016101e1565b6000546001600160a01b031633146103fc5760405162461bcd60e51b815260040161018e9061081c565b6001600160a01b0381166104615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161018e565b61046a816104cd565b50565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526104c790859061051d565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610572826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166105f49092919063ffffffff16565b8051909150156105ef57808060200190518101906105909190610795565b6105ef5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161018e565b505050565b6060610603848460008561060d565b90505b9392505050565b60608247101561066e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161018e565b843b6106bc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161018e565b600080866001600160a01b031685876040516106d891906107cd565b60006040518083038185875af1925050503d8060008114610715576040519150601f19603f3d011682016040523d82523d6000602084013e61071a565b606091505b509150915061072a828286610735565b979650505050505050565b60608315610744575081610606565b8251156107545782518084602001fd5b8160405162461bcd60e51b815260040161018e91906107e9565b60006020828403121561077f578081fd5b81356001600160a01b0381168114610606578182fd5b6000602082840312156107a6578081fd5b81518015158114610606578182fd5b6000602082840312156107c6578081fd5b5035919050565b600082516107df818460208701610851565b9190910192915050565b6020815260008251806020840152610808816040850160208701610851565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60005b8381101561086c578181015183820152602001610854565b838111156104c7575050600091015256fea26469706673582212205d014c7788444839b60e33b259acc33cd5a26c2f0a9990504b9053978a762ba364736f6c63430008040033

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

000000000000000000000000748218256afe0a19a88ebeb2e0c5ce86d21783600000000000000000000000003ec8798b81485a254928b70cda1cf0a2bb0b74d7

-----Decoded View---------------
Arg [0] : _vester (address): 0x748218256AfE0A19a88EBEB2E0C5Ce86d2178360
Arg [1] : _groToken (address): 0x3Ec8798B81485A254928B70CDA1cf0A2BB0B74D7

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000748218256afe0a19a88ebeb2e0c5ce86d2178360
Arg [1] : 0000000000000000000000003ec8798b81485a254928b70cda1cf0a2bb0b74d7


Deployed Bytecode Sourcemap

596:1561:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1242:124;;;;;;:::i;:::-;;:::i;:::-;;1852:303;;;;;;:::i;:::-;;:::i;1605:92:1:-;;;:::i;973:85::-;1019:7;1045:6;-1:-1:-1;;;;;1045:6:1;973:85;;;-1:-1:-1;;;;;1265:32:6;;;1247:51;;1235:2;1220:18;973:85:1;;;;;;;692:26:0;;;;;-1:-1:-1;;;;;692:26:0;;;665:21;;;;;-1:-1:-1;;;;;665:21:0;;;724:33;;;;;1559:154;;;;;;:::i;:::-;;:::i;1846:189:1:-;;;;;;:::i;:::-;;:::i;1242:124:0:-;1019:7:1;1045:6;-1:-1:-1;;;;;1045:6:1;666:10:5;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;;;;;;;;;1307:6:0::1;:16:::0;;-1:-1:-1;;;;;;1307:16:0::1;-1:-1:-1::0;;;;;1307:16:0;::::1;::::0;;::::1;::::0;;;1338:21:::1;::::0;1247:51:6;;;1338:21:0::1;::::0;1235:2:6;1220:18;1338:21:0::1;;;;;;;;1242:124:::0;:::o;1852:303::-;1924:8;1943:56;-1:-1:-1;;;;;1943:21:0;;1965:10;1985:4;1992:6;1943:21;:56::i;:::-;2022:11;;2009:38;;-1:-1:-1;;;2009:38:0;;;;;4527:25:6;;;-1:-1:-1;;;;;2022:11:0;;;;2009:30;;4500:18:6;;2009:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2065:6:0;;;2057:46;;-1:-1:-1;;;2057:46:0;;;;;1885:41:6;;;;2084:10:0;1942:18:6;;;1935:60;2011:18;;;2004:34;;;-1:-1:-1;;;;;2065:6:0;;-1:-1:-1;2057:20:0;;-1:-1:-1;1858:18:6;;2057:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2118:30:0;;4527:25:6;;;2129:10:0;;-1:-1:-1;2118:30:0;;-1:-1:-1;4515:2:6;4500:18;2118:30:0;;;;;;;1852:303;;:::o;1605:92:1:-;1019:7;1045:6;-1:-1:-1;;;;;1045:6:1;666:10:5;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;1559:154:0:-;1019:7:1;1045:6;-1:-1:-1;;;;;1045:6:1;666:10:5;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1634:11:0::1;:26:::0;;-1:-1:-1;;;;;;1634:26:0::1;-1:-1:-1::0;;;;;1634:26:0;::::1;::::0;;::::1;::::0;;;1675:31:::1;::::0;1247:51:6;;;1675:31:0::1;::::0;1235:2:6;1220:18;1675:31:0::1;1202:102:6::0;1846:189:1;1019:7;1045:6;-1:-1:-1;;;;;1045:6:1;666:10:5;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:1;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:1;;2639:2:6;1926:73:1::1;::::0;::::1;2621:21:6::0;2678:2;2658:18;;;2651:30;2717:34;2697:18;;;2690:62;-1:-1:-1;;;2768:18:6;;;2761:36;2814:19;;1926:73:1::1;2611:228:6::0;1926:73:1::1;2009:19;2019:8;2009:9;:19::i;:::-;1846:189:::0;:::o;845:241:3:-;1010:68;;;-1:-1:-1;;;;;1567:15:6;;;1010:68:3;;;1549:34:6;1619:15;;1599:18;;;1592:43;1651:18;;;;1644:34;;;1010:68:3;;;;;;;;;;1484:18:6;;;;1010:68:3;;;;;;;;-1:-1:-1;;;;;1010:68:3;-1:-1:-1;;;1010:68:3;;;983:96;;1003:5;;983:19;:96::i;:::-;845:241;;;;:::o;2041:169:1:-;2096:16;2115:6;;-1:-1:-1;;;;;2131:17:1;;;-1:-1:-1;;;;;;2131:17:1;;;;;;2163:40;;2115:6;;;;;;;2163:40;;2096:16;2163:40;2041:169;;:::o;3140:706:3:-;3559:23;3585:69;3613:4;3585:69;;;;;;;;;;;;;;;;;3593:5;-1:-1:-1;;;;;3585:27:3;;;:69;;;;;:::i;:::-;3668:17;;3559:95;;-1:-1:-1;3668:21:3;3664:176;;3763:10;3752:30;;;;;;;;;;;;:::i;:::-;3744:85;;;;-1:-1:-1;;;3744:85:3;;4172:2:6;3744:85:3;;;4154:21:6;4211:2;4191:18;;;4184:30;4250:34;4230:18;;;4223:62;-1:-1:-1;;;4301:18:6;;;4294:40;4351:19;;3744:85:3;4144:232:6;3744:85:3;3140:706;;;:::o;3461:223:4:-;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;;3461:223;;;;;;:::o;4548:499::-;4713:12;4770:5;4745:21;:30;;4737:81;;;;-1:-1:-1;;;4737:81:4;;3046:2:6;4737:81:4;;;3028:21:6;3085:2;3065:18;;;3058:30;3124:34;3104:18;;;3097:62;-1:-1:-1;;;3175:18:6;;;3168:36;3221:19;;4737:81:4;3018:228:6;4737:81:4;1034:20;;4828:60;;;;-1:-1:-1;;;4828:60:4;;3814:2:6;4828:60:4;;;3796:21:6;3853:2;3833:18;;;3826:30;3892:31;3872:18;;;3865:59;3941:18;;4828:60:4;3786:179:6;4828:60:4;4900:12;4914:23;4941:6;-1:-1:-1;;;;;4941:11:4;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:51;5006:7;5015:10;5027:12;4989:16;:51::i;:::-;4982:58;4548:499;-1:-1:-1;;;;;;;4548:499:4:o;7161:692::-;7307:12;7335:7;7331:516;;;-1:-1:-1;7365:10:4;7358:17;;7331:516;7476:17;;:21;7472:365;;7670:10;7664:17;7730:15;7717:10;7713:2;7709:19;7702:44;7619:145;7809:12;7802:20;;-1:-1:-1;;;7802:20:4;;;;;;;;:::i;14:306:6:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;178:23;;-1:-1:-1;;;;;230:31:6;;220:42;;210:2;;281:6;273;266:22;325:297;392:6;445:2;433:9;424:7;420:23;416:32;413:2;;;466:6;458;451:22;413:2;503:9;497:16;556:5;549:13;542:21;535:5;532:32;522:2;;583:6;575;568:22;627:190;686:6;739:2;727:9;718:7;714:23;710:32;707:2;;;760:6;752;745:22;707:2;-1:-1:-1;788:23:6;;697:120;-1:-1:-1;697:120:6:o;822:274::-;951:3;989:6;983:13;1005:53;1051:6;1046:3;1039:4;1031:6;1027:17;1005:53;:::i;:::-;1074:16;;;;;959:137;-1:-1:-1;;959:137:6:o;2049:383::-;2198:2;2187:9;2180:21;2161:4;2230:6;2224:13;2273:6;2268:2;2257:9;2253:18;2246:34;2289:66;2348:6;2343:2;2332:9;2328:18;2323:2;2315:6;2311:15;2289:66;:::i;:::-;2416:2;2395:15;-1:-1:-1;;2391:29:6;2376:45;;;;2423:2;2372:54;;2170:262;-1:-1:-1;;2170:262:6:o;3251:356::-;3453:2;3435:21;;;3472:18;;;3465:30;3531:34;3526:2;3511:18;;3504:62;3598:2;3583:18;;3425:182::o;4563:258::-;4635:1;4645:113;4659:6;4656:1;4653:13;4645:113;;;4735:11;;;4729:18;4716:11;;;4709:39;4681:2;4674:10;4645:113;;;4776:6;4773:1;4770:13;4767:2;;;-1:-1:-1;;4811:1:6;4793:16;;4786:27;4616:205::o

Swarm Source

ipfs://5d014c7788444839b60e33b259acc33cd5a26c2f0a9990504b9053978a762ba3

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.