ETH Price: $3,500.21 (+2.07%)
Gas: 2 Gwei

Contract

0x4A2F434b37f3ad41A183C00ffC48DD49483ED451
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0xd1ae82cda2f77f8bf822287bc04b855b0a3d5c03544a27059d13ce6f9d487529 Migrate(pending)2024-07-14 10:33:445 days ago1720953224IN
0x4A2F434b...9483ED451
0 ETH(Pending)(Pending)
Migrate203449062024-07-20 2:58:1147 mins ago1721444291IN
0x4A2F434b...9483ED451
0 ETH0.000443942.95161205
Migrate203436472024-07-19 22:44:475 hrs ago1721429087IN
0x4A2F434b...9483ED451
0 ETH0.000695514.62419373
Migrate203433732024-07-19 21:49:475 hrs ago1721425787IN
0x4A2F434b...9483ED451
0 ETH0.00047094.44772104
Migrate203424992024-07-19 18:54:358 hrs ago1721415275IN
0x4A2F434b...9483ED451
0 ETH0.000615285.81204684
Migrate203422962024-07-19 18:13:359 hrs ago1721412815IN
0x4A2F434b...9483ED451
0 ETH0.000743357.02100371
Migrate203422262024-07-19 17:59:359 hrs ago1721411975IN
0x4A2F434b...9483ED451
0 ETH0.000478575.39080335
Migrate203421742024-07-19 17:49:119 hrs ago1721411351IN
0x4A2F434b...9483ED451
0 ETH0.000647596.40780253
Migrate203421112024-07-19 17:36:3510 hrs ago1721410595IN
0x4A2F434b...9483ED451
0 ETH0.000876948.28371489
Migrate203416882024-07-19 16:11:1111 hrs ago1721405471IN
0x4A2F434b...9483ED451
0 ETH0.0011322610.69425995
Migrate203414442024-07-19 15:21:5912 hrs ago1721402519IN
0x4A2F434b...9483ED451
0 ETH0.0020888613.88797643
Migrate203413842024-07-19 15:09:5912 hrs ago1721401799IN
0x4A2F434b...9483ED451
0 ETH0.0019615413.04152251
Migrate203413282024-07-19 14:58:4712 hrs ago1721401127IN
0x4A2F434b...9483ED451
0 ETH0.0013816113.04935013
Migrate203405832024-07-19 12:29:2315 hrs ago1721392163IN
0x4A2F434b...9483ED451
0 ETH0.000475135.35275573
Migrate203403532024-07-19 11:43:1116 hrs ago1721389391IN
0x4A2F434b...9483ED451
0 ETH0.000851516.22741054
Migrate203403482024-07-19 11:42:1116 hrs ago1721389331IN
0x4A2F434b...9483ED451
0 ETH0.000664355.99057451
Migrate203397942024-07-19 9:51:1117 hrs ago1721382671IN
0x4A2F434b...9483ED451
0 ETH0.000902446
Migrate203396652024-07-19 9:25:2318 hrs ago1721381123IN
0x4A2F434b...9483ED451
0 ETH0.000795645.28988989
Migrate203394902024-07-19 8:50:2318 hrs ago1721379023IN
0x4A2F434b...9483ED451
0 ETH0.001315098.74350799
Migrate203391632024-07-19 7:44:4720 hrs ago1721375087IN
0x4A2F434b...9483ED451
0 ETH0.001154047.67329677
Migrate203384492024-07-19 5:20:5922 hrs ago1721366459IN
0x4A2F434b...9483ED451
0 ETH0.000600185.6687549
Migrate203383832024-07-19 5:07:4722 hrs ago1721365667IN
0x4A2F434b...9483ED451
0 ETH0.000990516.58596025
Migrate203383792024-07-19 5:06:5922 hrs ago1721365619IN
0x4A2F434b...9483ED451
0 ETH0.00099416.60941186
Migrate203360172024-07-18 21:12:5930 hrs ago1721337179IN
0x4A2F434b...9483ED451
0 ETH0.0017874313.07293909
Migrate203359872024-07-18 21:06:5930 hrs ago1721336819IN
0x4A2F434b...9483ED451
0 ETH0.000994188.96566721
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Migration

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 5 : Migration.sol
pragma solidity 0.8.19;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable2Step.sol";

interface IVEC {
    function burn(uint256 _amount) external;
}

interface IStaking {
    function unstake(address _to, uint256 _amount, bool _rebase) external;
}

interface IKERN {
    function mint(address to_, uint256 amount_) external;
}

contract Migration is Ownable2Step {
    /// STATE VARIABLES ///

    /// @notice Address of VEC
    address public constant VEC = 0x1BB9b64927e0C5e207C9DB4093b3738Eef5D8447;
    /// @notice Address of sVEC
    address public constant sVEC = 0x66d5c66E7C83E0682d947176534242c9f19b3365;
    /// @notice Address of staking
    address public constant staking = 0xFdC28cd1BFEBF3033870C0344B4E0beE639be9b1;

    /// @notice Address of KERN
    address public KERN;

    /// @notice Max amount that can be migrated
    uint256 public constant MAX_CAN_MIGRATE = 3_849_354 * 1e18;
    /// @notice Amount of KERN migrated
    uint256 public amountMigrated;

    /// @notice Bool if migration is open
    bool public migrationOpen;

    /// CONSTRUCTOR ///

    constructor() Ownable2Step() {
        IERC20(sVEC).approve(staking, type(uint256).max);
    }

    /// INITIALIZE ///

    /// @notice Set KERN address
    function setKERN(address _kern) external onlyOwner {
        require(KERN == address(0), "Address already set");
        KERN = _kern;
    }

    /// @notice Open migartion
    function openMigration() external onlyOwner {
        require(!migrationOpen, "Migration had already been opened");
        migrationOpen = true;
    }

    /// MIGRATE ///

    /// @notice         Migrate `_amount` of VEC to KERN
    /// @param _amount  Amount of VEC to migrate
    /// @param _staked  Bool if sVEC
    function migrate(uint256 _amount, bool _staked) external {
        if (msg.sender != owner()) {
            require(migrationOpen, "Migration not open yet");
        }
        if (!_staked) {
            IERC20(VEC).transferFrom(msg.sender, address(this), _amount);
        } else {
            IERC20(sVEC).transferFrom(msg.sender, address(this), _amount);
            IStaking(staking).unstake(address(this), _amount, false);
        }

        IVEC(VEC).burn(_amount);

        amountMigrated += _amount * 1e9;
        require(MAX_CAN_MIGRATE >= amountMigrated, "Migrating more than max");

        IKERN(KERN).mint(msg.sender, _amount * 1e9);
    }
}

File 2 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 5 : Ownable2Step.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

import "./Ownable.sol";

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

File 4 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"KERN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CAN_MIGRATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VEC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountMigrated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_staked","type":"bool"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrationOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sVEC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_kern","type":"address"}],"name":"setKERN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5061001a336100b1565b60405163095ea7b360e01b815273fdc28cd1bfebf3033870c0344b4e0bee639be9b1600482015260001960248201527366d5c66e7c83e0682d947176534242c9f19b33659063095ea7b3906044016020604051808303816000875af1158015610087573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100ab919061011d565b50610146565b600180546001600160a01b03191690556100ca816100cd565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561012f57600080fd5b8151801515811461013f57600080fd5b9392505050565b610a0e806101556000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806398c8bece11610097578063e30c397811610066578063e30c3978146101ee578063e37e581b146101ff578063e60c5f911461021a578063f2fde38b1461022357600080fd5b806398c8bece1461019b5780639b3007da146101b8578063b0ca2e62146101c0578063bbf3df0c146101db57600080fd5b806379ba5097116100d357806379ba50971461014f5780637cc9a373146101575780637d72e6891461016a5780638da5cb5b1461018a57600080fd5b80631b5d1a6c146100fa5780634cf088d91461010f578063715018a614610147575b600080fd5b61010d6101083660046108ee565b610236565b005b61012a73fdc28cd1bfebf3033870c0344b4e0bee639be9b181565b6040516001600160a01b0390911681526020015b60405180910390f35b61010d6102cb565b61010d6102df565b60025461012a906001600160a01b031681565b61017c6a032f21e602586dabe8000081565b60405190815260200161013e565b6000546001600160a01b031661012a565b6004546101a89060ff1681565b604051901515815260200161013e565b61010d61036d565b61012a731bb9b64927e0c5e207c9db4093b3738eef5d844781565b61010d6101e936600461092c565b6103fd565b6001546001600160a01b031661012a565b61012a7366d5c66e7c83e0682d947176534242c9f19b336581565b61017c60035481565b61010d6102313660046108ee565b610798565b61023e610816565b6002546001600160a01b03161561029c5760405162461bcd60e51b815260206004820152601360248201527f4164647265737320616c7265616479207365740000000000000000000000000060448201526064015b60405180910390fd5b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6102d3610816565b6102dd6000610870565b565b60015433906001600160a01b031681146103615760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152608401610293565b61036a81610870565b50565b610375610816565b60045460ff16156103ee5760405162461bcd60e51b815260206004820152602160248201527f4d6967726174696f6e2068616420616c7265616479206265656e206f70656e6560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610293565b6004805460ff19166001179055565b6000546001600160a01b031633146104615760045460ff166104615760405162461bcd60e51b815260206004820152601660248201527f4d6967726174696f6e206e6f74206f70656e20796574000000000000000000006044820152606401610293565b806104ee576040516323b872dd60e01b815233600482015230602482015260448101839052731bb9b64927e0c5e207c9db4093b3738eef5d8447906323b872dd906064016020604051808303816000875af11580156104c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104e8919061095c565b506105fd565b6040516323b872dd60e01b8152336004820152306024820152604481018390527366d5c66e7c83e0682d947176534242c9f19b3365906323b872dd906064016020604051808303816000875af115801561054c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610570919061095c565b506040517f21d0af34000000000000000000000000000000000000000000000000000000008152306004820152602481018390526000604482015273fdc28cd1bfebf3033870c0344b4e0bee639be9b1906321d0af3490606401600060405180830381600087803b1580156105e457600080fd5b505af11580156105f8573d6000803e3d6000fd5b505050505b6040517f42966c6800000000000000000000000000000000000000000000000000000000815260048101839052731bb9b64927e0c5e207c9db4093b3738eef5d8447906342966c6890602401600060405180830381600087803b15801561066357600080fd5b505af1158015610677573d6000803e3d6000fd5b5050505081633b9aca0061068b91906109a8565b6003600082825461069c91906109c5565b90915550506003546a032f21e602586dabe8000010156106fe5760405162461bcd60e51b815260206004820152601760248201527f4d6967726174696e67206d6f7265207468616e206d61780000000000000000006044820152606401610293565b6002546001600160a01b03166340c10f193361071e85633b9aca006109a8565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561077c57600080fd5b505af1158015610790573d6000803e3d6000fd5b505050505050565b6107a0610816565b600180546001600160a01b03831673ffffffffffffffffffffffffffffffffffffffff1990911681179091556107de6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000546001600160a01b031633146102dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610293565b6001805473ffffffffffffffffffffffffffffffffffffffff1916905561036a81600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561090057600080fd5b81356001600160a01b038116811461091757600080fd5b9392505050565b801515811461036a57600080fd5b6000806040838503121561093f57600080fd5b8235915060208301356109518161091e565b809150509250929050565b60006020828403121561096e57600080fd5b81516109178161091e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820281158282048414176109bf576109bf610979565b92915050565b808201808211156109bf576109bf61097956fea2646970667358221220f9769678a1d7acd003ccabbc2cd990c520ed1e6d15263e5528dfa7aa973612b964736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806398c8bece11610097578063e30c397811610066578063e30c3978146101ee578063e37e581b146101ff578063e60c5f911461021a578063f2fde38b1461022357600080fd5b806398c8bece1461019b5780639b3007da146101b8578063b0ca2e62146101c0578063bbf3df0c146101db57600080fd5b806379ba5097116100d357806379ba50971461014f5780637cc9a373146101575780637d72e6891461016a5780638da5cb5b1461018a57600080fd5b80631b5d1a6c146100fa5780634cf088d91461010f578063715018a614610147575b600080fd5b61010d6101083660046108ee565b610236565b005b61012a73fdc28cd1bfebf3033870c0344b4e0bee639be9b181565b6040516001600160a01b0390911681526020015b60405180910390f35b61010d6102cb565b61010d6102df565b60025461012a906001600160a01b031681565b61017c6a032f21e602586dabe8000081565b60405190815260200161013e565b6000546001600160a01b031661012a565b6004546101a89060ff1681565b604051901515815260200161013e565b61010d61036d565b61012a731bb9b64927e0c5e207c9db4093b3738eef5d844781565b61010d6101e936600461092c565b6103fd565b6001546001600160a01b031661012a565b61012a7366d5c66e7c83e0682d947176534242c9f19b336581565b61017c60035481565b61010d6102313660046108ee565b610798565b61023e610816565b6002546001600160a01b03161561029c5760405162461bcd60e51b815260206004820152601360248201527f4164647265737320616c7265616479207365740000000000000000000000000060448201526064015b60405180910390fd5b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6102d3610816565b6102dd6000610870565b565b60015433906001600160a01b031681146103615760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152608401610293565b61036a81610870565b50565b610375610816565b60045460ff16156103ee5760405162461bcd60e51b815260206004820152602160248201527f4d6967726174696f6e2068616420616c7265616479206265656e206f70656e6560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610293565b6004805460ff19166001179055565b6000546001600160a01b031633146104615760045460ff166104615760405162461bcd60e51b815260206004820152601660248201527f4d6967726174696f6e206e6f74206f70656e20796574000000000000000000006044820152606401610293565b806104ee576040516323b872dd60e01b815233600482015230602482015260448101839052731bb9b64927e0c5e207c9db4093b3738eef5d8447906323b872dd906064016020604051808303816000875af11580156104c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104e8919061095c565b506105fd565b6040516323b872dd60e01b8152336004820152306024820152604481018390527366d5c66e7c83e0682d947176534242c9f19b3365906323b872dd906064016020604051808303816000875af115801561054c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610570919061095c565b506040517f21d0af34000000000000000000000000000000000000000000000000000000008152306004820152602481018390526000604482015273fdc28cd1bfebf3033870c0344b4e0bee639be9b1906321d0af3490606401600060405180830381600087803b1580156105e457600080fd5b505af11580156105f8573d6000803e3d6000fd5b505050505b6040517f42966c6800000000000000000000000000000000000000000000000000000000815260048101839052731bb9b64927e0c5e207c9db4093b3738eef5d8447906342966c6890602401600060405180830381600087803b15801561066357600080fd5b505af1158015610677573d6000803e3d6000fd5b5050505081633b9aca0061068b91906109a8565b6003600082825461069c91906109c5565b90915550506003546a032f21e602586dabe8000010156106fe5760405162461bcd60e51b815260206004820152601760248201527f4d6967726174696e67206d6f7265207468616e206d61780000000000000000006044820152606401610293565b6002546001600160a01b03166340c10f193361071e85633b9aca006109a8565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561077c57600080fd5b505af1158015610790573d6000803e3d6000fd5b505050505050565b6107a0610816565b600180546001600160a01b03831673ffffffffffffffffffffffffffffffffffffffff1990911681179091556107de6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000546001600160a01b031633146102dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610293565b6001805473ffffffffffffffffffffffffffffffffffffffff1916905561036a81600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561090057600080fd5b81356001600160a01b038116811461091757600080fd5b9392505050565b801515811461036a57600080fd5b6000806040838503121561093f57600080fd5b8235915060208301356109518161091e565b809150509250929050565b60006020828403121561096e57600080fd5b81516109178161091e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820281158282048414176109bf576109bf610979565b92915050565b808201808211156109bf576109bf61097956fea2646970667358221220f9769678a1d7acd003ccabbc2cd990c520ed1e6d15263e5528dfa7aa973612b964736f6c63430008130033

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.