ETH Price: $2,916.69 (+3.43%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Distribute129100062021-07-27 19:43:581199 days ago1627415038IN
0x87F6b212...3df25bc4c
0 ETH0.0154005345
0x60806040129099892021-07-27 19:40:231199 days ago1627414823IN
 Create: Funder
0 ETH0.0566943855

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Funder

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 4 : Funder.sol
/*
    Copyright 2021 Empty Set Squad <[email protected]>

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/ownership/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract Funder is Ownable {
    uint256 private constant ONE_PERCENT = 16_500_000 ether;
    uint256 private constant DEFI_PULSE_TREASURY_AMOUNT = 5_000_000 ether;

    address private constant EMPTY_SET_TREASURY = address(0x460661bd4A5364A3ABCc9cfc4a8cE7038d05Ea22);
    address private constant DEFI_PULSE_TREASURY = address(0x866613c804Be33e9D7899a41D4EfE880c0de1FaD);

    IRegistry public registry;
    address public incentivizerUniswap;
    address public incentivizerCurve;
    address public sn2Vester;
    address public dfpVester;
    address public eqlVester;

    constructor(
        IRegistry _registry,
        address _incentivizerUniswap,
        address _incentivizerCurve,
        address _sn2Vester,
        address _dfpVester,
        address _eqlVester
    ) public {
        registry = _registry;
        incentivizerUniswap = _incentivizerUniswap;
        incentivizerCurve = _incentivizerCurve;
        sn2Vester = _sn2Vester;
        dfpVester = _dfpVester;
        eqlVester = _eqlVester;
    }

    function distribute() external onlyOwner {
        IStake stake = registry.stake();

        // Mint
        uint256 stakeAmount;
        stakeAmount += ONE_PERCENT * 103;                                // Migrator
        stakeAmount += (ONE_PERCENT * 3) + DEFI_PULSE_TREASURY_AMOUNT;   // Treasuries
        stakeAmount += ONE_PERCENT * 3;                                  // Incentivizers
        stakeAmount += ONE_PERCENT * 9;                                  // Grants
        stake.mint(stakeAmount);

        // Migrator
        stake.transfer(registry.migrator(), ONE_PERCENT * 103);

        // Treasury
        stake.transfer(EMPTY_SET_TREASURY, ONE_PERCENT * 3);
        stake.transfer(DEFI_PULSE_TREASURY, DEFI_PULSE_TREASURY_AMOUNT);

        // Incentivizer
        if (incentivizerUniswap != address(0)) stake.transfer(incentivizerUniswap, ONE_PERCENT * 1); // Uniswap
        if (incentivizerCurve != address(0)) stake.transfer(incentivizerCurve, ONE_PERCENT * 2); // Curve

        // Grants
        if (sn2Vester != address(0)) stake.transfer(sn2Vester, ONE_PERCENT * 2);
        if (dfpVester != address(0)) stake.transfer(dfpVester, ONE_PERCENT * 1);
        if (eqlVester != address(0)) stake.transfer(eqlVester, ONE_PERCENT * 6);

        stake.transfer(registry.reserve(), stake.balanceOf(address(this)));

        // Renounce ownership
        stake.transferOwnership(registry.reserve());
    }
}

contract IStake is IERC20 {
    function mint(uint256 amount) external;
    function transferOwnership(address newOwner) external;
}

interface IRegistry {
    function migrator() external returns (address);
    function stake() external returns (IStake);
    function reserve() external returns (address);
}

File 2 of 4 : Context.sol
pragma solidity ^0.5.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 GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 4 : Ownable.sol
pragma solidity ^0.5.0;

import "../GSN/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.
 *
 * 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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 4 of 4 : IERC20.sol
pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IRegistry","name":"_registry","type":"address"},{"internalType":"address","name":"_incentivizerUniswap","type":"address"},{"internalType":"address","name":"_incentivizerCurve","type":"address"},{"internalType":"address","name":"_sn2Vester","type":"address"},{"internalType":"address","name":"_dfpVester","type":"address"},{"internalType":"address","name":"_eqlVester","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"constant":true,"inputs":[],"name":"dfpVester","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"distribute","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"eqlVester","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"incentivizerCurve","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"incentivizerUniswap","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sn2Vester","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620010c2380380620010c283398101604081905262000034916200012a565b6000620000496001600160e01b036200010616565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b03199081166001600160a01b039889161790915560028054821696881696909617909555600380548616948716949094179093556004805485169286169290921790915560058054841691851691909117905560068054909216921691909117905562000209565b3390565b80516200011781620001e4565b92915050565b80516200011781620001fe565b60008060008060008060c087890312156200014457600080fd5b60006200015289896200011d565b96505060206200016589828a016200010a565b95505060406200017889828a016200010a565b94505060606200018b89828a016200010a565b93505060806200019e89828a016200010a565b92505060a0620001b189828a016200010a565b9150509295509295509295565b60006200011782620001d8565b60006200011782620001be565b6001600160a01b031690565b620001ef81620001be565b8114620001fb57600080fd5b50565b620001ef81620001cb565b610ea980620002196000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c8063acd46cce11610071578063acd46cce14610108578063b6085ba114610110578063e1b6099514610118578063e4fc6b6d14610120578063f2fde38b14610128578063f40da27c1461013b576100a9565b8063715018a6146100ae5780637b103999146100b85780638da5cb5b146100d65780638f32d59b146100eb578063a538c44514610100575b600080fd5b6100b6610143565b005b6100c06101ba565b6040516100cd9190610dc8565b60405180910390f35b6100de6101c9565b6040516100cd9190610d8a565b6100f36101d8565b6040516100cd9190610dba565b6100de6101fc565b6100de61020b565b6100de61021a565b6100de610229565b6100b6610238565b6100b6610136366004610c41565b610b40565b6100de610b70565b61014b6101d8565b6101705760405162461bcd60e51b815260040161016790610de6565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6001546001600160a01b031681565b6000546001600160a01b031690565b600080546001600160a01b03166101ed610b7f565b6001600160a01b031614905090565b6006546001600160a01b031681565b6003546001600160a01b031681565b6004546001600160a01b031681565b6002546001600160a01b031681565b6102406101d8565b61025c5760405162461bcd60e51b815260040161016790610de6565b60015460408051633a4b66f160e01b815290516000926001600160a01b031691633a4b66f191600480830192602092919082900301818787803b1580156102a257600080fd5b505af11580156102b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506102da9190810190610ca3565b60405163140e25ad60e31b81529091506b064ea81408da93eba0000000906001600160a01b0383169063a0712d6890610317908490600401610df6565b600060405180830381600087803b15801561033157600080fd5b505af1158015610345573d6000803e3d6000fd5b50505050816001600160a01b031663a9059cbb600160009054906101000a90046001600160a01b03166001600160a01b0316637cd07e476040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156103a857600080fd5b505af11580156103bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506103e09190810190610c67565b6040516001600160e01b031960e084901b16815261040f91906b057dcb1f9b61738a5380000090600401610d98565b602060405180830381600087803b15801561042957600080fd5b505af115801561043d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506104619190810190610c85565b5060405163a9059cbb60e01b81526001600160a01b0383169063a9059cbb906104af9073460661bd4a5364a3abcc9cfc4a8ce7038d05ea22906a28f208607c9ff2a180000090600401610d98565b602060405180830381600087803b1580156104c957600080fd5b505af11580156104dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506105019190810190610c85565b5060405163a9059cbb60e01b81526001600160a01b0383169063a9059cbb9061054f9073866613c804be33e9d7899a41d4efe880c0de1fad906a0422ca8b0a00a42500000090600401610d98565b602060405180830381600087803b15801561056957600080fd5b505af115801561057d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506105a19190810190610c85565b506002546001600160a01b0316156106465760025460405163a9059cbb60e01b81526001600160a01b038481169263a9059cbb926105f292909116906a0da602cad43550e080000090600401610d98565b602060405180830381600087803b15801561060c57600080fd5b505af1158015610620573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506106449190810190610c85565b505b6003546001600160a01b0316156106ea5760035460405163a9059cbb60e01b81526001600160a01b038481169263a9059cbb9261069692909116906a1b4c0595a86aa1c100000090600401610d98565b602060405180830381600087803b1580156106b057600080fd5b505af11580156106c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506106e89190810190610c85565b505b6004546001600160a01b03161561078c576004805460405163a9059cbb60e01b81526001600160a01b038086169363a9059cbb93610738939216916a1b4c0595a86aa1c10000009101610d98565b602060405180830381600087803b15801561075257600080fd5b505af1158015610766573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061078a9190810190610c85565b505b6005546001600160a01b0316156108305760055460405163a9059cbb60e01b81526001600160a01b038481169263a9059cbb926107dc92909116906a0da602cad43550e080000090600401610d98565b602060405180830381600087803b1580156107f657600080fd5b505af115801561080a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061082e9190810190610c85565b505b6006546001600160a01b0316156108d45760065460405163a9059cbb60e01b81526001600160a01b038481169263a9059cbb9261088092909116906a51e410c0f93fe54300000090600401610d98565b602060405180830381600087803b15801561089a57600080fd5b505af11580156108ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506108d29190810190610c85565b505b816001600160a01b031663a9059cbb600160009054906101000a90046001600160a01b03166001600160a01b031663cd3293de6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561093357600080fd5b505af1158015610947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061096b9190810190610c67565b6040516370a0823160e01b81526001600160a01b038616906370a0823190610997903090600401610d8a565b60206040518083038186803b1580156109af57600080fd5b505afa1580156109c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506109e79190810190610cc1565b6040518363ffffffff1660e01b8152600401610a04929190610d98565b602060405180830381600087803b158015610a1e57600080fd5b505af1158015610a32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a569190810190610c85565b50816001600160a01b031663f2fde38b600160009054906101000a90046001600160a01b03166001600160a01b031663cd3293de6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610ab657600080fd5b505af1158015610aca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610aee9190810190610c67565b6040518263ffffffff1660e01b8152600401610b0a9190610d8a565b600060405180830381600087803b158015610b2457600080fd5b505af1158015610b38573d6000803e3d6000fd5b505050505050565b610b486101d8565b610b645760405162461bcd60e51b815260040161016790610de6565b610b6d81610b83565b50565b6005546001600160a01b031681565b3390565b6001600160a01b038116610ba95760405162461bcd60e51b815260040161016790610dd6565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b8035610c0f81610e37565b92915050565b8051610c0f81610e37565b8051610c0f81610e4b565b8051610c0f81610e54565b8051610c0f81610e5d565b600060208284031215610c5357600080fd5b6000610c5f8484610c04565b949350505050565b600060208284031215610c7957600080fd5b6000610c5f8484610c15565b600060208284031215610c9757600080fd5b6000610c5f8484610c20565b600060208284031215610cb557600080fd5b6000610c5f8484610c2b565b600060208284031215610cd357600080fd5b6000610c5f8484610c36565b610ce881610e0d565b82525050565b610ce881610e18565b610ce881610e1d565b6000610d0d602683610e04565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b6000610d55602083610e04565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b610ce881610e34565b60208101610c0f8284610cdf565b60408101610da68285610cdf565b610db36020830184610d81565b9392505050565b60208101610c0f8284610cee565b60208101610c0f8284610cf7565b60208082528101610c0f81610d00565b60208082528101610c0f81610d48565b60208101610c0f8284610d81565b90815260200190565b6000610c0f82610e28565b151590565b6000610c0f82610e0d565b6001600160a01b031690565b90565b610e4081610e0d565b8114610b6d57600080fd5b610e4081610e18565b610e4081610e1d565b610e4081610e3456fea365627a7a7231582068f279c5a925c87a9a2e44c2f64ece527906a63726e5688f14dfb95b850d9de76c6578706572696d656e74616cf564736f6c63430005110040000000000000000000000000c5285ee6d5c9adf4e04f5ccb47d0501ae638c7a9000000000000000000000000c6e09feb984acab2c956c9af56b9b3729a1bf3c8000000000000000000000000d353a618abd6b39e8c334291c74a52ceb19b18fd0000000000000000000000004078c4523af1a3288e48aaf82284e310f0d53a35000000000000000000000000ac4673a22a0a292da0c975690d1463253ad26ddf000000000000000000000000955f5bc8aa8528d0949ac88941f36c6c8dc38d72

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c8063acd46cce11610071578063acd46cce14610108578063b6085ba114610110578063e1b6099514610118578063e4fc6b6d14610120578063f2fde38b14610128578063f40da27c1461013b576100a9565b8063715018a6146100ae5780637b103999146100b85780638da5cb5b146100d65780638f32d59b146100eb578063a538c44514610100575b600080fd5b6100b6610143565b005b6100c06101ba565b6040516100cd9190610dc8565b60405180910390f35b6100de6101c9565b6040516100cd9190610d8a565b6100f36101d8565b6040516100cd9190610dba565b6100de6101fc565b6100de61020b565b6100de61021a565b6100de610229565b6100b6610238565b6100b6610136366004610c41565b610b40565b6100de610b70565b61014b6101d8565b6101705760405162461bcd60e51b815260040161016790610de6565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6001546001600160a01b031681565b6000546001600160a01b031690565b600080546001600160a01b03166101ed610b7f565b6001600160a01b031614905090565b6006546001600160a01b031681565b6003546001600160a01b031681565b6004546001600160a01b031681565b6002546001600160a01b031681565b6102406101d8565b61025c5760405162461bcd60e51b815260040161016790610de6565b60015460408051633a4b66f160e01b815290516000926001600160a01b031691633a4b66f191600480830192602092919082900301818787803b1580156102a257600080fd5b505af11580156102b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506102da9190810190610ca3565b60405163140e25ad60e31b81529091506b064ea81408da93eba0000000906001600160a01b0383169063a0712d6890610317908490600401610df6565b600060405180830381600087803b15801561033157600080fd5b505af1158015610345573d6000803e3d6000fd5b50505050816001600160a01b031663a9059cbb600160009054906101000a90046001600160a01b03166001600160a01b0316637cd07e476040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156103a857600080fd5b505af11580156103bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506103e09190810190610c67565b6040516001600160e01b031960e084901b16815261040f91906b057dcb1f9b61738a5380000090600401610d98565b602060405180830381600087803b15801561042957600080fd5b505af115801561043d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506104619190810190610c85565b5060405163a9059cbb60e01b81526001600160a01b0383169063a9059cbb906104af9073460661bd4a5364a3abcc9cfc4a8ce7038d05ea22906a28f208607c9ff2a180000090600401610d98565b602060405180830381600087803b1580156104c957600080fd5b505af11580156104dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506105019190810190610c85565b5060405163a9059cbb60e01b81526001600160a01b0383169063a9059cbb9061054f9073866613c804be33e9d7899a41d4efe880c0de1fad906a0422ca8b0a00a42500000090600401610d98565b602060405180830381600087803b15801561056957600080fd5b505af115801561057d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506105a19190810190610c85565b506002546001600160a01b0316156106465760025460405163a9059cbb60e01b81526001600160a01b038481169263a9059cbb926105f292909116906a0da602cad43550e080000090600401610d98565b602060405180830381600087803b15801561060c57600080fd5b505af1158015610620573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506106449190810190610c85565b505b6003546001600160a01b0316156106ea5760035460405163a9059cbb60e01b81526001600160a01b038481169263a9059cbb9261069692909116906a1b4c0595a86aa1c100000090600401610d98565b602060405180830381600087803b1580156106b057600080fd5b505af11580156106c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506106e89190810190610c85565b505b6004546001600160a01b03161561078c576004805460405163a9059cbb60e01b81526001600160a01b038086169363a9059cbb93610738939216916a1b4c0595a86aa1c10000009101610d98565b602060405180830381600087803b15801561075257600080fd5b505af1158015610766573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061078a9190810190610c85565b505b6005546001600160a01b0316156108305760055460405163a9059cbb60e01b81526001600160a01b038481169263a9059cbb926107dc92909116906a0da602cad43550e080000090600401610d98565b602060405180830381600087803b1580156107f657600080fd5b505af115801561080a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061082e9190810190610c85565b505b6006546001600160a01b0316156108d45760065460405163a9059cbb60e01b81526001600160a01b038481169263a9059cbb9261088092909116906a51e410c0f93fe54300000090600401610d98565b602060405180830381600087803b15801561089a57600080fd5b505af11580156108ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506108d29190810190610c85565b505b816001600160a01b031663a9059cbb600160009054906101000a90046001600160a01b03166001600160a01b031663cd3293de6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561093357600080fd5b505af1158015610947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061096b9190810190610c67565b6040516370a0823160e01b81526001600160a01b038616906370a0823190610997903090600401610d8a565b60206040518083038186803b1580156109af57600080fd5b505afa1580156109c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506109e79190810190610cc1565b6040518363ffffffff1660e01b8152600401610a04929190610d98565b602060405180830381600087803b158015610a1e57600080fd5b505af1158015610a32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a569190810190610c85565b50816001600160a01b031663f2fde38b600160009054906101000a90046001600160a01b03166001600160a01b031663cd3293de6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610ab657600080fd5b505af1158015610aca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610aee9190810190610c67565b6040518263ffffffff1660e01b8152600401610b0a9190610d8a565b600060405180830381600087803b158015610b2457600080fd5b505af1158015610b38573d6000803e3d6000fd5b505050505050565b610b486101d8565b610b645760405162461bcd60e51b815260040161016790610de6565b610b6d81610b83565b50565b6005546001600160a01b031681565b3390565b6001600160a01b038116610ba95760405162461bcd60e51b815260040161016790610dd6565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b8035610c0f81610e37565b92915050565b8051610c0f81610e37565b8051610c0f81610e4b565b8051610c0f81610e54565b8051610c0f81610e5d565b600060208284031215610c5357600080fd5b6000610c5f8484610c04565b949350505050565b600060208284031215610c7957600080fd5b6000610c5f8484610c15565b600060208284031215610c9757600080fd5b6000610c5f8484610c20565b600060208284031215610cb557600080fd5b6000610c5f8484610c2b565b600060208284031215610cd357600080fd5b6000610c5f8484610c36565b610ce881610e0d565b82525050565b610ce881610e18565b610ce881610e1d565b6000610d0d602683610e04565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b6000610d55602083610e04565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b610ce881610e34565b60208101610c0f8284610cdf565b60408101610da68285610cdf565b610db36020830184610d81565b9392505050565b60208101610c0f8284610cee565b60208101610c0f8284610cf7565b60208082528101610c0f81610d00565b60208082528101610c0f81610d48565b60208101610c0f8284610d81565b90815260200190565b6000610c0f82610e28565b151590565b6000610c0f82610e0d565b6001600160a01b031690565b90565b610e4081610e0d565b8114610b6d57600080fd5b610e4081610e18565b610e4081610e1d565b610e4081610e3456fea365627a7a7231582068f279c5a925c87a9a2e44c2f64ece527906a63726e5688f14dfb95b850d9de76c6578706572696d656e74616cf564736f6c63430005110040

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

000000000000000000000000c5285ee6d5c9adf4e04f5ccb47d0501ae638c7a9000000000000000000000000c6e09feb984acab2c956c9af56b9b3729a1bf3c8000000000000000000000000d353a618abd6b39e8c334291c74a52ceb19b18fd0000000000000000000000004078c4523af1a3288e48aaf82284e310f0d53a35000000000000000000000000ac4673a22a0a292da0c975690d1463253ad26ddf000000000000000000000000955f5bc8aa8528d0949ac88941f36c6c8dc38d72

-----Decoded View---------------
Arg [0] : _registry (address): 0xC5285EE6D5C9Adf4E04f5CCB47d0501AE638c7A9
Arg [1] : _incentivizerUniswap (address): 0xC6e09feb984aCAb2C956c9aF56b9B3729A1Bf3c8
Arg [2] : _incentivizerCurve (address): 0xd353a618aBd6b39E8c334291c74A52Ceb19b18FD
Arg [3] : _sn2Vester (address): 0x4078C4523Af1a3288E48AAf82284E310f0d53a35
Arg [4] : _dfpVester (address): 0xaC4673a22A0A292Da0c975690d1463253Ad26DdF
Arg [5] : _eqlVester (address): 0x955f5Bc8aa8528D0949aC88941F36c6c8Dc38D72

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000c5285ee6d5c9adf4e04f5ccb47d0501ae638c7a9
Arg [1] : 000000000000000000000000c6e09feb984acab2c956c9af56b9b3729a1bf3c8
Arg [2] : 000000000000000000000000d353a618abd6b39e8c334291c74a52ceb19b18fd
Arg [3] : 0000000000000000000000004078c4523af1a3288e48aaf82284e310f0d53a35
Arg [4] : 000000000000000000000000ac4673a22a0a292da0c975690d1463253ad26ddf
Arg [5] : 000000000000000000000000955f5bc8aa8528d0949ac88941f36c6c8dc38d72


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.