FTM Price: $1.02 (+2.26%)
Gas: 137 GWei

Contract

0x217E80Cef895764cFd9b490Fd03795f3068BABaD
 

Overview

FTM Balance

Fantom LogoFantom LogoFantom Logo0 FTM

FTM Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Value
0x60a06040310020832022-02-15 3:12:35772 days ago1644894755IN
 Create: TendV2DetachedGaslessJob
0 FTM0.32540417229.1845

Latest 1 internal transaction

Parent Txn Hash Block From To Value
310020832022-02-15 3:12:35772 days ago1644894755  Contract Creation0 FTM
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TendV2DetachedGaslessJob

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 20 : TendV2DetachedGaslessJob.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.4 <0.9.0;

import '../../interfaces/yearn/IBaseStrategy.sol';
import './V2DetachedGaslessJob.sol';

contract TendV2DetachedGaslessJob is V2DetachedGaslessJob {
  constructor(
    address _WETH,
    address _mechanicsRegistry,
    address _v2Keeper,
    uint256 _workCooldown,
    uint256 _callCost
  )
    V2DetachedGaslessJob(_WETH, _mechanicsRegistry, _v2Keeper, _workCooldown, _callCost) // solhint-disable-next-line no-empty-blocks
  {}

  function workable(address _strategy) external view override returns (bool) {
    return _workable(_strategy);
  }

  function _workable(address _strategy) internal view override returns (bool) {
    if (!super._workable(_strategy)) return false;
    return IBaseStrategy(_strategy).tendTrigger(callCost);
  }

  function _work(address _strategy) internal override {
    lastWorkAt[_strategy] = block.timestamp;
    V2Keeper.tend(_strategy);
  }

  // Keep3r actions
  function work(address _strategy) external override notPaused onlyGovernorOrMechanic {
    _workInternal(_strategy);
  }
}

File 2 of 20 : IBaseStrategy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IBaseStrategy {
  function vault() external view returns (address _vault);

  function strategist() external view returns (address _strategist);

  function rewards() external view returns (address _rewards);

  function keeper() external view returns (address _keeper);

  function want() external view returns (address _want);

  function name() external view returns (string memory _name);

  function profitFactor() external view returns (uint256 _profitFactor);

  function maxReportDelay() external view returns (uint256 _maxReportDelay);

  // custom view
  function crv() external view returns (address _crv);

  // Setters
  function setStrategist(address _strategist) external;

  function setKeeper(address _keeper) external;

  function setRewards(address _rewards) external;

  function tendTrigger(uint256 callCost) external view returns (bool);

  function tend() external;

  function harvestTrigger(uint256 callCost) external view returns (bool);

  function harvest() external;

  function setBorrowCollateralizationRatio(uint256 _c) external;
}

File 3 of 20 : V2DetachedGaslessJob.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.4 <0.9.0;

import '@openzeppelin/contracts/utils/structs/EnumerableSet.sol';
import '@yearn/contract-utils/contracts/abstract/MachineryReady.sol';

import '../../interfaces/jobs/detached/IV2DetachedGaslessJob.sol';

abstract contract V2DetachedGaslessJob is MachineryReady, IV2DetachedGaslessJob {
  using EnumerableSet for EnumerableSet.AddressSet;

  address public override immutable WETH;
  IV2Keeper public override V2Keeper;

  EnumerableSet.AddressSet internal _availableStrategies;

  mapping(address => uint256) public override lastWorkAt;

  uint256 public override workCooldown;
  uint256 public override callCost;

  constructor(
    address _WETH,
    address _mechanicsRegistry,
    address _v2Keeper,
    uint256 _workCooldown,
    uint256 _callCost
  ) MachineryReady(_mechanicsRegistry) {
    if (_workCooldown > 0) workCooldown = _workCooldown;
    V2Keeper = IV2Keeper(_v2Keeper);
    WETH = _WETH;
    callCost = _callCost;
  }

  function setV2Keep3r(address _v2Keeper) external override onlyGovernor {
    V2Keeper = IV2Keeper(_v2Keeper);
  }

  // Setters
  function setWorkCooldown(uint256 _workCooldown) external override onlyGovernorOrMechanic {
    if (_workCooldown == 0) revert NotZero();
    workCooldown = _workCooldown;
  }

  function setCallCost(uint256 _callCost) external override onlyGovernorOrMechanic {
    if (_callCost == 0) revert NotZero();
    callCost = _callCost;
  }

  // Governor
  function addStrategies(
    address[] calldata _strategies
  ) external override onlyGovernorOrMechanic {
    for (uint256 i; i < _strategies.length; i++) {
      if (!_availableStrategies.add(_strategies[i])) revert StrategyAlreadyAdded();
    }
    emit StrategiesAdded(_strategies);
  }

  function removeStrategies(address[] calldata _strategies) external override onlyGovernorOrMechanic {
    for (uint256 i; i < _strategies.length; i++) {
      if (!_availableStrategies.remove(_strategies[i])) revert StrategyNotAdded();
    }
    emit StrategiesRemoved(_strategies);
  }

  // Getters
  function strategies() public view override returns (address[] memory _strategies) {
    _strategies = _availableStrategies.values();
  }

  // Keeper view actions (internal)
  function _workable(address _strategy) internal view virtual returns (bool) {
    if (!_availableStrategies.contains(_strategy)) revert StrategyNotAdded();
    if (workCooldown == 0 || block.timestamp > lastWorkAt[_strategy] + workCooldown) return true;
    return false;
  }

  // Keeper actions
  function _workInternal(address _strategy) internal {
    if (!_workable(_strategy)) revert NotWorkable();
    _work(_strategy);
    emit Worked(_strategy, msg.sender);
  }

  function forceWork(address _strategy) external override onlyGovernorOrMechanic {
    _work(_strategy);
    emit ForceWorked(_strategy);
  }

  function _work(address _strategy) internal virtual {}
}

File 4 of 20 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 5 of 20 : MachineryReady.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

import './UtilsReady.sol';
import '../utils/Machinery.sol';

abstract contract MachineryReady is UtilsReady, Machinery {
  constructor(address _mechanicsRegistry) Machinery(_mechanicsRegistry) UtilsReady() {}

  // Machinery: restricted-access
  function setMechanicsRegistry(address _mechanicsRegistry) external override onlyGovernor {
    _setMechanicsRegistry(_mechanicsRegistry);
  }

  // Machinery: modifiers
  modifier onlyGovernorOrMechanic() {
    require(isGovernor(msg.sender) || isMechanic(msg.sender), 'Machinery::onlyGovernorOrMechanic:invalid-msg-sender');
    _;
  }
}

File 6 of 20 : IV2DetachedGaslessJob.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

import '../../../interfaces/jobs/v2/IV2Keeper.sol';

interface IV2DetachedGaslessJob {
  error NotZero();
  error StrategyAlreadyAdded();
  error StrategyNotAdded();
  error NotWorkable();

  // Setters
  event StrategiesAdded(address[] _strategies);
  event StrategiesRemoved(address[] _strategies);

  // Actions by Keeper
  event Worked(address _strategy, address _keeper);

  // Actions forced by governor
  event ForceWorked(address _strategy);

  // Getters
  function WETH() external view returns (address);

  function V2Keeper() external view returns (IV2Keeper);

  function lastWorkAt(address) external view returns (uint256);

  function workCooldown() external view returns (uint256);

  function callCost() external view returns (uint256);

  function strategies() external view returns (address[] memory);

  function workable(address _strategy) external view returns (bool);

  // Setters
  function setV2Keep3r(address _v2Keeper) external;

  function setWorkCooldown(uint256 _workCooldown) external;

  function setCallCost(uint256 _callCost) external;
  
  function addStrategies(
    address[] calldata _strategy
  ) external;

  function removeStrategies(address[] calldata _strategy) external;

  // Keeper actions
  function work(address _strategy) external;

  // Mechanics keeper bypass
  function forceWork(address _strategy) external;
}

File 7 of 20 : UtilsReady.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

import '../utils/Governable.sol';
import '../utils/CollectableDust.sol';
import '../utils/Pausable.sol';

abstract contract UtilsReady is Governable, CollectableDust, Pausable {
  constructor() Governable(msg.sender) {}

  // Governable: restricted-access
  function setPendingGovernor(address _pendingGovernor) external override onlyGovernor {
    _setPendingGovernor(_pendingGovernor);
  }

  function acceptGovernor() external override onlyPendingGovernor {
    _acceptGovernor();
  }

  // Collectable Dust: restricted-access
  function sendDust(
    address _to,
    address _token,
    uint256 _amount
  ) external virtual override onlyGovernor {
    _sendDust(_to, _token, _amount);
  }

  // Pausable: restricted-access
  function pause(bool _paused) external override onlyGovernor {
    _pause(_paused);
  }
}

File 8 of 20 : Machinery.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

import '@openzeppelin/contracts/utils/structs/EnumerableSet.sol';
import '../interfaces/utils/IMachinery.sol';
import '../interfaces/mechanics/IMechanicsRegistry.sol';

contract Machinery is IMachinery {
  using EnumerableSet for EnumerableSet.AddressSet;

  IMechanicsRegistry internal _mechanicsRegistry;

  constructor(address __mechanicsRegistry) {
    _setMechanicsRegistry(__mechanicsRegistry);
  }

  modifier onlyMechanic() {
    require(_mechanicsRegistry.isMechanic(msg.sender), 'Machinery: not mechanic');
    _;
  }

  function setMechanicsRegistry(address __mechanicsRegistry) external virtual override {
    _setMechanicsRegistry(__mechanicsRegistry);
  }

  function _setMechanicsRegistry(address __mechanicsRegistry) internal {
    _mechanicsRegistry = IMechanicsRegistry(__mechanicsRegistry);
  }

  // View helpers
  function mechanicsRegistry() external view override returns (address _mechanicRegistry) {
    return address(_mechanicsRegistry);
  }

  function isMechanic(address _mechanic) public view override returns (bool _isMechanic) {
    return _mechanicsRegistry.isMechanic(_mechanic);
  }
}

File 9 of 20 : Governable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

import '../interfaces/utils/IGovernable.sol';

contract Governable is IGovernable {
  address public override governor;
  address public override pendingGovernor;

  constructor(address _governor) {
    require(_governor != address(0), 'governable/governor-should-not-be-zero-address');
    governor = _governor;
  }

  function setPendingGovernor(address _pendingGovernor) external virtual override onlyGovernor {
    _setPendingGovernor(_pendingGovernor);
  }

  function acceptGovernor() external virtual override onlyPendingGovernor {
    _acceptGovernor();
  }

  function _setPendingGovernor(address _pendingGovernor) internal {
    require(_pendingGovernor != address(0), 'governable/pending-governor-should-not-be-zero-addres');
    pendingGovernor = _pendingGovernor;
    emit PendingGovernorSet(_pendingGovernor);
  }

  function _acceptGovernor() internal {
    governor = pendingGovernor;
    pendingGovernor = address(0);
    emit GovernorAccepted();
  }

  function isGovernor(address _account) public view override returns (bool _isGovernor) {
    return _account == governor;
  }

  modifier onlyGovernor() {
    require(isGovernor(msg.sender), 'governable/only-governor');
    _;
  }

  modifier onlyPendingGovernor() {
    require(msg.sender == pendingGovernor, 'governable/only-pending-governor');
    _;
  }
}

File 10 of 20 : CollectableDust.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

import '@openzeppelin/contracts/utils/structs/EnumerableSet.sol';
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';

import '../interfaces/utils/ICollectableDust.sol';

abstract contract CollectableDust is ICollectableDust {
  using SafeERC20 for IERC20;
  using EnumerableSet for EnumerableSet.AddressSet;

  address public constant ETH_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
  EnumerableSet.AddressSet internal protocolTokens;

  constructor() {}

  function _addProtocolToken(address _token) internal {
    require(!protocolTokens.contains(_token), 'collectable-dust/token-is-part-of-the-protocol');
    protocolTokens.add(_token);
  }

  function _removeProtocolToken(address _token) internal {
    require(protocolTokens.contains(_token), 'collectable-dust/token-not-part-of-the-protocol');
    protocolTokens.remove(_token);
  }

  function _sendDust(
    address _to,
    address _token,
    uint256 _amount
  ) internal {
    require(_to != address(0), 'collectable-dust/cant-send-dust-to-zero-address');
    require(!protocolTokens.contains(_token), 'collectable-dust/token-is-part-of-the-protocol');
    if (_token == ETH_ADDRESS) {
      payable(_to).transfer(_amount);
    } else {
      IERC20(_token).safeTransfer(_to, _amount);
    }
    emit DustSent(_to, _token, _amount);
  }
}

File 11 of 20 : Pausable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

import '../interfaces/utils/IPausable.sol';

abstract contract Pausable is IPausable {
  bool public paused;

  constructor() {}

  modifier notPaused() {
    require(!paused, 'paused');
    _;
  }

  function _pause(bool _paused) internal {
    require(paused != _paused, 'no-change');
    paused = _paused;
    emit Paused(_paused);
  }
}

File 12 of 20 : IGovernable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

interface IGovernable {
  event PendingGovernorSet(address pendingGovernor);
  event GovernorAccepted();

  function setPendingGovernor(address _pendingGovernor) external;

  function acceptGovernor() external;

  function governor() external view returns (address _governor);

  function pendingGovernor() external view returns (address _pendingGovernor);

  function isGovernor(address _account) external view returns (bool _isGovernor);
}

File 13 of 20 : 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 14 of 20 : 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 15 of 20 : ICollectableDust.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

interface ICollectableDust {
  event DustSent(address _to, address token, uint256 amount);

  function sendDust(
    address _to,
    address _token,
    uint256 _amount
  ) external;
}

File 16 of 20 : 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);
            }
        }
    }
}

File 17 of 20 : IPausable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

interface IPausable {
  event Paused(bool _paused);

  function pause(bool _paused) external;
}

File 18 of 20 : IMachinery.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

interface IMachinery {
  // View helpers
  function mechanicsRegistry() external view returns (address _mechanicsRegistry);

  function isMechanic(address mechanic) external view returns (bool _isMechanic);

  // Setters
  function setMechanicsRegistry(address _mechanicsRegistry) external;
}

File 19 of 20 : IMechanicsRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;

interface IMechanicsRegistry {
  event MechanicAdded(address _mechanic);
  event MechanicRemoved(address _mechanic);

  function addMechanic(address _mechanic) external;

  function removeMechanic(address _mechanic) external;

  function mechanics() external view returns (address[] memory _mechanicsList);

  function isMechanic(address mechanic) external view returns (bool _isMechanic);
}

File 20 of 20 : IV2Keeper.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.8;

interface IV2Keeper {
  // Getters
  function jobs() external view returns (address[] memory);

  event JobAdded(address _job);
  event JobRemoved(address _job);

  // Setters
  function addJobs(address[] calldata _jobs) external;

  function addJob(address _job) external;

  function removeJob(address _job) external;

  // Jobs actions
  function tend(address _strategy) external;

  function harvest(address _strategy) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_WETH","type":"address"},{"internalType":"address","name":"_mechanicsRegistry","type":"address"},{"internalType":"address","name":"_v2Keeper","type":"address"},{"internalType":"uint256","name":"_workCooldown","type":"uint256"},{"internalType":"uint256","name":"_callCost","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"NotWorkable","type":"error"},{"inputs":[],"name":"NotZero","type":"error"},{"inputs":[],"name":"StrategyAlreadyAdded","type":"error"},{"inputs":[],"name":"StrategyNotAdded","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DustSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_strategy","type":"address"}],"name":"ForceWorked","type":"event"},{"anonymous":false,"inputs":[],"name":"GovernorAccepted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_paused","type":"bool"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pendingGovernor","type":"address"}],"name":"PendingGovernorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"_strategies","type":"address[]"}],"name":"StrategiesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"_strategies","type":"address[]"}],"name":"StrategiesRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_strategy","type":"address"},{"indexed":false,"internalType":"address","name":"_keeper","type":"address"}],"name":"Worked","type":"event"},{"inputs":[],"name":"ETH_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"V2Keeper","outputs":[{"internalType":"contract IV2Keeper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_strategies","type":"address[]"}],"name":"addStrategies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_strategy","type":"address"}],"name":"forceWork","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isGovernor","outputs":[{"internalType":"bool","name":"_isGovernor","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_mechanic","type":"address"}],"name":"isMechanic","outputs":[{"internalType":"bool","name":"_isMechanic","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastWorkAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mechanicsRegistry","outputs":[{"internalType":"address","name":"_mechanicRegistry","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_strategies","type":"address[]"}],"name":"removeStrategies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sendDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_callCost","type":"uint256"}],"name":"setCallCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mechanicsRegistry","type":"address"}],"name":"setMechanicsRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pendingGovernor","type":"address"}],"name":"setPendingGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_v2Keeper","type":"address"}],"name":"setV2Keep3r","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_workCooldown","type":"uint256"}],"name":"setWorkCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategies","outputs":[{"internalType":"address[]","name":"_strategies","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_strategy","type":"address"}],"name":"work","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_strategy","type":"address"}],"name":"workable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b50604051620018723803806200187283398101604081905262000034916200013f565b848484848483803380620000a55760405162461bcd60e51b815260206004820152602e60248201527f676f7665726e61626c652f676f7665726e6f722d73686f756c642d6e6f742d6260448201526d652d7a65726f2d6164647265737360901b606482015260840160405180910390fd5b600080546001600160a01b0319166001600160a01b039283161790556004805491831661010002610100600160a81b031990921691909117905550508115620000ee5760098290555b600580546001600160a01b0319166001600160a01b03948516179055939091166080525050600a55506200019c9350505050565b80516001600160a01b03811681146200013a57600080fd5b919050565b600080600080600060a086880312156200015857600080fd5b620001638662000122565b9450620001736020870162000122565b9350620001836040870162000122565b6060870151608090970151959894975095949392505050565b6080516116ba620001b860003960006102fa01526116ba6000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80639f471303116100de578063e06a7cb911610097578063e43581b811610071578063e43581b814610386578063e58bb639146103a8578063ef47da6d146103b0578063f235757f146103c357600080fd5b8063e06a7cb914610357578063e1c5b39514610360578063e3056a341461037357600080fd5b80639f471303146102c7578063a734f06e146102da578063ad5c4648146102f5578063c0c0b6021461031c578063d9f9027f1461032f578063dd7ba4201461034457600080fd5b806334d6020d1161014b57806365834acc1161012557806365834acc1461027b57806370814eeb1461028e57806374c2ca83146102a157806382376a99146102b457600080fd5b806334d6020d1461023857806336df7ea51461024b5780635c975abb1461025e57600080fd5b806302329a291461019357806304146a39146101a85780630c340a24146101c457806310262803146101ef5780631078f3881461020f5780632db8c12914610225575b600080fd5b6101a66101a136600461131a565b6103d6565b005b6101b1600a5481565b6040519081526020015b60405180910390f35b6000546101d7906001600160a01b031681565b6040516001600160a01b0390911681526020016101bb565b6101b16101fd366004611353565b60086020526000908152604090205481565b60045461010090046001600160a01b03166101d7565b6101a661023336600461136e565b610415565b6005546101d7906001600160a01b031681565b6101a6610259366004611353565b61044f565b60045461026b9060ff1681565b60405190151581526020016101bb565b61026b610289366004611353565b6104cd565b6101a661029c3660046113aa565b61055d565b6101a66102af36600461141f565b610640565b6101a66102c2366004611353565b61069b565b61026b6102d5366004611353565b6106e7565b6101d773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b6101d77f000000000000000000000000000000000000000000000000000000000000000081565b6101a661032a3660046113aa565b6106f2565b6103376107c9565b6040516101bb9190611438565b6101a6610352366004611353565b6107da565b6101b160095481565b6101a661036e36600461141f565b61085c565b6001546101d7906001600160a01b031681565b61026b610394366004611353565b6000546001600160a01b0391821691161490565b6101a66108b7565b6101a66103be366004611353565b61091b565b6101a66103d1366004611353565b610968565b6000546001600160a01b031633146104095760405162461bcd60e51b815260040161040090611485565b60405180910390fd5b6104128161099b565b50565b6000546001600160a01b0316331461043f5760405162461bcd60e51b815260040161040090611485565b61044a838383610a21565b505050565b60045460ff161561048b5760405162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b6044820152606401610400565b6000546001600160a01b03163314806104a857506104a8336104cd565b6104c45760405162461bcd60e51b8152600401610400906114bc565b61041281610bc3565b60048054604051631960d2b360e21b81526001600160a01b0384811693820193909352600092610100909204909116906365834acc906024015b60206040518083038186803b15801561051f57600080fd5b505afa158015610533573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105579190611510565b92915050565b6000546001600160a01b031633148061057a575061057a336104cd565b6105965760405162461bcd60e51b8152600401610400906114bc565b60005b81811015610602576105d38383838181106105b6576105b661152d565b90506020020160208101906105cb9190611353565b600690610c30565b6105f057604051638716f5eb60e01b815260040160405180910390fd5b806105fa81611559565b915050610599565b507fa52141b1b38605c552bd988329fd94c9f42979f3b8ca555f875962960a6d55a68282604051610634929190611574565b60405180910390a15050565b6000546001600160a01b031633148061065d575061065d336104cd565b6106795760405162461bcd60e51b8152600401610400906114bc565b80610696576040516252b55360e31b815260040160405180910390fd5b600955565b6000546001600160a01b031633146106c55760405162461bcd60e51b815260040161040090611485565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600061055782610c4c565b6000546001600160a01b031633148061070f575061070f336104cd565b61072b5760405162461bcd60e51b8152600401610400906114bc565b60005b818110156107975761076883838381811061074b5761074b61152d565b90506020020160208101906107609190611353565b600690610c93565b6107855760405163165e236760e01b815260040160405180910390fd5b8061078f81611559565b91505061072e565b507fa7e35176a12cd26c4faa0cd1d742d768c473cd6a40fb4a7d377fb8fc9b836ec98282604051610634929190611574565b60606107d56006610ca8565b905090565b6000546001600160a01b03163314806107f757506107f7336104cd565b6108135760405162461bcd60e51b8152600401610400906114bc565b61081c81610cb5565b6040516001600160a01b03821681527fee8d688761ac1d0fda49e2ac999f0e46b3beaf16857a8e8905aeab2987dc8d38906020015b60405180910390a150565b6000546001600160a01b03163314806108795750610879336104cd565b6108955760405162461bcd60e51b8152600401610400906114bc565b806108b2576040516252b55360e31b815260040160405180910390fd5b600a55565b6001546001600160a01b031633146109115760405162461bcd60e51b815260206004820181905260248201527f676f7665726e61626c652f6f6e6c792d70656e64696e672d676f7665726e6f726044820152606401610400565b610919610d2c565b565b6000546001600160a01b031633146109455760405162461bcd60e51b815260040161040090611485565b60048054610100600160a81b0319166101006001600160a01b0384160217905550565b6000546001600160a01b031633146109925760405162461bcd60e51b815260040161040090611485565b61041281610d7c565b60045460ff16151581151514156109e05760405162461bcd60e51b81526020600482015260096024820152686e6f2d6368616e676560b81b6044820152606401610400565b6004805460ff19168215159081179091556040519081527f0e2fb031ee032dc02d8011dc50b816eb450cf856abd8261680dac74f72165bd290602001610851565b6001600160a01b038316610a8f5760405162461bcd60e51b815260206004820152602f60248201527f636f6c6c65637461626c652d647573742f63616e742d73656e642d647573742d60448201526e746f2d7a65726f2d6164647265737360881b6064820152608401610400565b610a9a600283610e3e565b15610afe5760405162461bcd60e51b815260206004820152602e60248201527f636f6c6c65637461626c652d647573742f746f6b656e2d69732d706172742d6f60448201526d198b5d1a194b5c1c9bdd1bd8dbdb60921b6064820152608401610400565b6001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610b5f576040516001600160a01b0384169082156108fc029083906000818181858888f19350505050158015610b59573d6000803e3d6000fd5b50610b73565b610b736001600160a01b0383168483610e60565b604080516001600160a01b038086168252841660208201529081018290527f1e34c1aee8e83c2dcc14c21bb4bfeea7f46c0c998cb797ac7cc4d7a18f5c656b9060600160405180910390a1505050565b610bcc81610c4c565b610be957604051630efd608960e21b815260040160405180910390fd5b610bf281610cb5565b604080516001600160a01b03831681523360208201527f6696222bb476e2b08ac3bf59d60b85b81ae8327ff2cf3efe73a02b7bf71c618c9101610851565b6000610c45836001600160a01b038416610eb2565b9392505050565b6000610c5782610fa5565b610c6357506000919050565b600a5460405162ca1a3160e71b815260048101919091526001600160a01b0383169063650d188090602401610507565b6000610c45836001600160a01b038416611017565b60606000610c4583611066565b6001600160a01b0381811660008181526008602052604090819020429055600554905163d6d2dcf960e01b815260048101929092529091169063d6d2dcf990602401600060405180830381600087803b158015610d1157600080fd5b505af1158015610d25573d6000803e3d6000fd5b5050505050565b60018054600080546001600160a01b03199081166001600160a01b0384161782559091169091556040517f7880f0fcc848e1f26e461654b100a69f8d0641e29aa29f6596c6afadbb36b5ea9190a1565b6001600160a01b038116610df05760405162461bcd60e51b815260206004820152603560248201527f676f7665726e61626c652f70656e64696e672d676f7665726e6f722d73686f756044820152746c642d6e6f742d62652d7a65726f2d61646472657360581b6064820152608401610400565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f56bddfa0cee9697cebddf9acd7f23dc6583663b05e007b877056d05017994def90602001610851565b6001600160a01b03811660009081526001830160205260408120541515610c45565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261044a9084906110c2565b60008181526001830160205260408120548015610f9b576000610ed66001836115c0565b8554909150600090610eea906001906115c0565b9050818114610f4f576000866000018281548110610f0a57610f0a61152d565b9060005260206000200154905080876000018481548110610f2d57610f2d61152d565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610f6057610f606115d7565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610557565b6000915050610557565b6000610fb2600683610e3e565b610fcf57604051638716f5eb60e01b815260040160405180910390fd5b600954158061100257506009546001600160a01b038316600090815260086020526040902054610fff91906115ed565b42115b1561100f57506001919050565b506000919050565b600081815260018301602052604081205461105e57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610557565b506000610557565b6060816000018054806020026020016040519081016040528092919081815260200182805480156110b657602002820191906000526020600020905b8154815260200190600101908083116110a2575b50505050509050919050565b6000611117826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111949092919063ffffffff16565b80519091501561044a57808060200190518101906111359190611510565b61044a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610400565b60606111a384846000856111ab565b949350505050565b60608247101561120c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610400565b843b61125a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610400565b600080866001600160a01b031685876040516112769190611635565b60006040518083038185875af1925050503d80600081146112b3576040519150601f19603f3d011682016040523d82523d6000602084013e6112b8565b606091505b50915091506112c88282866112d3565b979650505050505050565b606083156112e2575081610c45565b8251156112f25782518084602001fd5b8160405162461bcd60e51b81526004016104009190611651565b801515811461041257600080fd5b60006020828403121561132c57600080fd5b8135610c458161130c565b80356001600160a01b038116811461134e57600080fd5b919050565b60006020828403121561136557600080fd5b610c4582611337565b60008060006060848603121561138357600080fd5b61138c84611337565b925061139a60208501611337565b9150604084013590509250925092565b600080602083850312156113bd57600080fd5b823567ffffffffffffffff808211156113d557600080fd5b818501915085601f8301126113e957600080fd5b8135818111156113f857600080fd5b8660208260051b850101111561140d57600080fd5b60209290920196919550909350505050565b60006020828403121561143157600080fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b818110156114795783516001600160a01b031683529284019291840191600101611454565b50909695505050505050565b60208082526018908201527f676f7665726e61626c652f6f6e6c792d676f7665726e6f720000000000000000604082015260600190565b60208082526034908201527f4d616368696e6572793a3a6f6e6c79476f7665726e6f724f724d656368616e69604082015273319d34b73b30b634b216b6b9b396b9b2b73232b960611b606082015260800190565b60006020828403121561152257600080fd5b8151610c458161130c565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561156d5761156d611543565b5060010190565b60208082528181018390526000908460408401835b868110156115b5576001600160a01b036115a284611337565b1682529183019190830190600101611589565b509695505050505050565b6000828210156115d2576115d2611543565b500390565b634e487b7160e01b600052603160045260246000fd5b6000821982111561160057611600611543565b500190565b60005b83811015611620578181015183820152602001611608565b8381111561162f576000848401525b50505050565b60008251611647818460208701611605565b9190910192915050565b6020815260008251806020840152611670816040850160208701611605565b601f01601f1916919091016040019291505056fea2646970667358221220b5eb027862eedbe989ec719938aeddf238d1a6099e471be3dc1bb2c1d56b018864736f6c63430008090033000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007f462b92f92114a2d57a03e5ae2db5da28b77d73000000000000000000000000e72d641f09a48cce6997377d13b2ac7029c642b2000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80639f471303116100de578063e06a7cb911610097578063e43581b811610071578063e43581b814610386578063e58bb639146103a8578063ef47da6d146103b0578063f235757f146103c357600080fd5b8063e06a7cb914610357578063e1c5b39514610360578063e3056a341461037357600080fd5b80639f471303146102c7578063a734f06e146102da578063ad5c4648146102f5578063c0c0b6021461031c578063d9f9027f1461032f578063dd7ba4201461034457600080fd5b806334d6020d1161014b57806365834acc1161012557806365834acc1461027b57806370814eeb1461028e57806374c2ca83146102a157806382376a99146102b457600080fd5b806334d6020d1461023857806336df7ea51461024b5780635c975abb1461025e57600080fd5b806302329a291461019357806304146a39146101a85780630c340a24146101c457806310262803146101ef5780631078f3881461020f5780632db8c12914610225575b600080fd5b6101a66101a136600461131a565b6103d6565b005b6101b1600a5481565b6040519081526020015b60405180910390f35b6000546101d7906001600160a01b031681565b6040516001600160a01b0390911681526020016101bb565b6101b16101fd366004611353565b60086020526000908152604090205481565b60045461010090046001600160a01b03166101d7565b6101a661023336600461136e565b610415565b6005546101d7906001600160a01b031681565b6101a6610259366004611353565b61044f565b60045461026b9060ff1681565b60405190151581526020016101bb565b61026b610289366004611353565b6104cd565b6101a661029c3660046113aa565b61055d565b6101a66102af36600461141f565b610640565b6101a66102c2366004611353565b61069b565b61026b6102d5366004611353565b6106e7565b6101d773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b6101d77f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6101a661032a3660046113aa565b6106f2565b6103376107c9565b6040516101bb9190611438565b6101a6610352366004611353565b6107da565b6101b160095481565b6101a661036e36600461141f565b61085c565b6001546101d7906001600160a01b031681565b61026b610394366004611353565b6000546001600160a01b0391821691161490565b6101a66108b7565b6101a66103be366004611353565b61091b565b6101a66103d1366004611353565b610968565b6000546001600160a01b031633146104095760405162461bcd60e51b815260040161040090611485565b60405180910390fd5b6104128161099b565b50565b6000546001600160a01b0316331461043f5760405162461bcd60e51b815260040161040090611485565b61044a838383610a21565b505050565b60045460ff161561048b5760405162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b6044820152606401610400565b6000546001600160a01b03163314806104a857506104a8336104cd565b6104c45760405162461bcd60e51b8152600401610400906114bc565b61041281610bc3565b60048054604051631960d2b360e21b81526001600160a01b0384811693820193909352600092610100909204909116906365834acc906024015b60206040518083038186803b15801561051f57600080fd5b505afa158015610533573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105579190611510565b92915050565b6000546001600160a01b031633148061057a575061057a336104cd565b6105965760405162461bcd60e51b8152600401610400906114bc565b60005b81811015610602576105d38383838181106105b6576105b661152d565b90506020020160208101906105cb9190611353565b600690610c30565b6105f057604051638716f5eb60e01b815260040160405180910390fd5b806105fa81611559565b915050610599565b507fa52141b1b38605c552bd988329fd94c9f42979f3b8ca555f875962960a6d55a68282604051610634929190611574565b60405180910390a15050565b6000546001600160a01b031633148061065d575061065d336104cd565b6106795760405162461bcd60e51b8152600401610400906114bc565b80610696576040516252b55360e31b815260040160405180910390fd5b600955565b6000546001600160a01b031633146106c55760405162461bcd60e51b815260040161040090611485565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600061055782610c4c565b6000546001600160a01b031633148061070f575061070f336104cd565b61072b5760405162461bcd60e51b8152600401610400906114bc565b60005b818110156107975761076883838381811061074b5761074b61152d565b90506020020160208101906107609190611353565b600690610c93565b6107855760405163165e236760e01b815260040160405180910390fd5b8061078f81611559565b91505061072e565b507fa7e35176a12cd26c4faa0cd1d742d768c473cd6a40fb4a7d377fb8fc9b836ec98282604051610634929190611574565b60606107d56006610ca8565b905090565b6000546001600160a01b03163314806107f757506107f7336104cd565b6108135760405162461bcd60e51b8152600401610400906114bc565b61081c81610cb5565b6040516001600160a01b03821681527fee8d688761ac1d0fda49e2ac999f0e46b3beaf16857a8e8905aeab2987dc8d38906020015b60405180910390a150565b6000546001600160a01b03163314806108795750610879336104cd565b6108955760405162461bcd60e51b8152600401610400906114bc565b806108b2576040516252b55360e31b815260040160405180910390fd5b600a55565b6001546001600160a01b031633146109115760405162461bcd60e51b815260206004820181905260248201527f676f7665726e61626c652f6f6e6c792d70656e64696e672d676f7665726e6f726044820152606401610400565b610919610d2c565b565b6000546001600160a01b031633146109455760405162461bcd60e51b815260040161040090611485565b60048054610100600160a81b0319166101006001600160a01b0384160217905550565b6000546001600160a01b031633146109925760405162461bcd60e51b815260040161040090611485565b61041281610d7c565b60045460ff16151581151514156109e05760405162461bcd60e51b81526020600482015260096024820152686e6f2d6368616e676560b81b6044820152606401610400565b6004805460ff19168215159081179091556040519081527f0e2fb031ee032dc02d8011dc50b816eb450cf856abd8261680dac74f72165bd290602001610851565b6001600160a01b038316610a8f5760405162461bcd60e51b815260206004820152602f60248201527f636f6c6c65637461626c652d647573742f63616e742d73656e642d647573742d60448201526e746f2d7a65726f2d6164647265737360881b6064820152608401610400565b610a9a600283610e3e565b15610afe5760405162461bcd60e51b815260206004820152602e60248201527f636f6c6c65637461626c652d647573742f746f6b656e2d69732d706172742d6f60448201526d198b5d1a194b5c1c9bdd1bd8dbdb60921b6064820152608401610400565b6001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610b5f576040516001600160a01b0384169082156108fc029083906000818181858888f19350505050158015610b59573d6000803e3d6000fd5b50610b73565b610b736001600160a01b0383168483610e60565b604080516001600160a01b038086168252841660208201529081018290527f1e34c1aee8e83c2dcc14c21bb4bfeea7f46c0c998cb797ac7cc4d7a18f5c656b9060600160405180910390a1505050565b610bcc81610c4c565b610be957604051630efd608960e21b815260040160405180910390fd5b610bf281610cb5565b604080516001600160a01b03831681523360208201527f6696222bb476e2b08ac3bf59d60b85b81ae8327ff2cf3efe73a02b7bf71c618c9101610851565b6000610c45836001600160a01b038416610eb2565b9392505050565b6000610c5782610fa5565b610c6357506000919050565b600a5460405162ca1a3160e71b815260048101919091526001600160a01b0383169063650d188090602401610507565b6000610c45836001600160a01b038416611017565b60606000610c4583611066565b6001600160a01b0381811660008181526008602052604090819020429055600554905163d6d2dcf960e01b815260048101929092529091169063d6d2dcf990602401600060405180830381600087803b158015610d1157600080fd5b505af1158015610d25573d6000803e3d6000fd5b5050505050565b60018054600080546001600160a01b03199081166001600160a01b0384161782559091169091556040517f7880f0fcc848e1f26e461654b100a69f8d0641e29aa29f6596c6afadbb36b5ea9190a1565b6001600160a01b038116610df05760405162461bcd60e51b815260206004820152603560248201527f676f7665726e61626c652f70656e64696e672d676f7665726e6f722d73686f756044820152746c642d6e6f742d62652d7a65726f2d61646472657360581b6064820152608401610400565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f56bddfa0cee9697cebddf9acd7f23dc6583663b05e007b877056d05017994def90602001610851565b6001600160a01b03811660009081526001830160205260408120541515610c45565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261044a9084906110c2565b60008181526001830160205260408120548015610f9b576000610ed66001836115c0565b8554909150600090610eea906001906115c0565b9050818114610f4f576000866000018281548110610f0a57610f0a61152d565b9060005260206000200154905080876000018481548110610f2d57610f2d61152d565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610f6057610f606115d7565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610557565b6000915050610557565b6000610fb2600683610e3e565b610fcf57604051638716f5eb60e01b815260040160405180910390fd5b600954158061100257506009546001600160a01b038316600090815260086020526040902054610fff91906115ed565b42115b1561100f57506001919050565b506000919050565b600081815260018301602052604081205461105e57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610557565b506000610557565b6060816000018054806020026020016040519081016040528092919081815260200182805480156110b657602002820191906000526020600020905b8154815260200190600101908083116110a2575b50505050509050919050565b6000611117826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111949092919063ffffffff16565b80519091501561044a57808060200190518101906111359190611510565b61044a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610400565b60606111a384846000856111ab565b949350505050565b60608247101561120c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610400565b843b61125a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610400565b600080866001600160a01b031685876040516112769190611635565b60006040518083038185875af1925050503d80600081146112b3576040519150601f19603f3d011682016040523d82523d6000602084013e6112b8565b606091505b50915091506112c88282866112d3565b979650505050505050565b606083156112e2575081610c45565b8251156112f25782518084602001fd5b8160405162461bcd60e51b81526004016104009190611651565b801515811461041257600080fd5b60006020828403121561132c57600080fd5b8135610c458161130c565b80356001600160a01b038116811461134e57600080fd5b919050565b60006020828403121561136557600080fd5b610c4582611337565b60008060006060848603121561138357600080fd5b61138c84611337565b925061139a60208501611337565b9150604084013590509250925092565b600080602083850312156113bd57600080fd5b823567ffffffffffffffff808211156113d557600080fd5b818501915085601f8301126113e957600080fd5b8135818111156113f857600080fd5b8660208260051b850101111561140d57600080fd5b60209290920196919550909350505050565b60006020828403121561143157600080fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b818110156114795783516001600160a01b031683529284019291840191600101611454565b50909695505050505050565b60208082526018908201527f676f7665726e61626c652f6f6e6c792d676f7665726e6f720000000000000000604082015260600190565b60208082526034908201527f4d616368696e6572793a3a6f6e6c79476f7665726e6f724f724d656368616e69604082015273319d34b73b30b634b216b6b9b396b9b2b73232b960611b606082015260800190565b60006020828403121561152257600080fd5b8151610c458161130c565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561156d5761156d611543565b5060010190565b60208082528181018390526000908460408401835b868110156115b5576001600160a01b036115a284611337565b1682529183019190830190600101611589565b509695505050505050565b6000828210156115d2576115d2611543565b500390565b634e487b7160e01b600052603160045260246000fd5b6000821982111561160057611600611543565b500190565b60005b83811015611620578181015183820152602001611608565b8381111561162f576000848401525b50505050565b60008251611647818460208701611605565b9190910192915050565b6020815260008251806020840152611670816040850160208701611605565b601f01601f1916919091016040019291505056fea2646970667358221220b5eb027862eedbe989ec719938aeddf238d1a6099e471be3dc1bb2c1d56b018864736f6c63430008090033

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

000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007f462b92f92114a2d57a03e5ae2db5da28b77d73000000000000000000000000e72d641f09a48cce6997377d13b2ac7029c642b2000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : _WETH (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [1] : _mechanicsRegistry (address): 0x7f462B92F92114A2D57A03e5Ae2DB5DA28b77d73
Arg [2] : _v2Keeper (address): 0xe72d641f09a48cce6997377d13b2Ac7029c642b2
Arg [3] : _workCooldown (uint256): 300
Arg [4] : _callCost (uint256): 1

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [1] : 0000000000000000000000007f462b92f92114a2d57a03e5ae2db5da28b77d73
Arg [2] : 000000000000000000000000e72d641f09a48cce6997377d13b2ac7029c642b2
Arg [3] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001


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

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ 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.