ETH Price: $2,674.13 (+1.49%)

Contract

0xCC03a9D85A5a8A6045595f52a00ce36A3041885a
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Wrap204116602024-07-29 10:36:1124 days ago1722249371IN
0xCC03a9D8...A3041885a
0 ETH0.000151941.76336329
Wrap203866172024-07-25 22:42:4728 days ago1721947367IN
0xCC03a9D8...A3041885a
0 ETH0.000157181.82420478
Unwrap202236862024-07-03 4:46:2351 days ago1719981983IN
0xCC03a9D8...A3041885a
0 ETH0.000302322.77009653
Unwrap202181432024-07-02 10:09:4751 days ago1719914987IN
0xCC03a9D8...A3041885a
0 ETH0.000396084.30357418
Wrap202159982024-07-02 2:57:4752 days ago1719889067IN
0xCC03a9D8...A3041885a
0 ETH0.000354853.43634941
Wrap202159042024-07-02 2:38:5952 days ago1719887939IN
0xCC03a9D8...A3041885a
0 ETH0.000173422.01272205
Wrap202157832024-07-02 2:14:3552 days ago1719886475IN
0xCC03a9D8...A3041885a
0 ETH0.000208412.01823587
Wrap202156062024-07-02 1:39:1152 days ago1719884351IN
0xCC03a9D8...A3041885a
0 ETH0.000174782.02853353
Wrap202155952024-07-02 1:36:5952 days ago1719884219IN
0xCC03a9D8...A3041885a
0 ETH0.000188832.19158301
Wrap202153682024-07-02 0:51:3552 days ago1719881495IN
0xCC03a9D8...A3041885a
0 ETH0.000203712.36420376
Wrap202126712024-07-01 15:49:5952 days ago1719848999IN
0xCC03a9D8...A3041885a
0 ETH0.0011173910.82060726
Wrap202125252024-07-01 15:20:4752 days ago1719847247IN
0xCC03a9D8...A3041885a
0 ETH0.0012619214.64545262
Wrap201665252024-06-25 5:10:5959 days ago1719292259IN
0xCC03a9D8...A3041885a
0 ETH0.000338973.28262183
Unwrap199364052024-05-24 1:17:3591 days ago1716513455IN
0xCC03a9D8...A3041885a
0 ETH0.000606355.55591891
Wrap199056212024-05-19 17:58:4795 days ago1716141527IN
0xCC03a9D8...A3041885a
0 ETH0.000329783.82795278
Unwrap197585382024-04-29 4:19:23116 days ago1714364363IN
0xCC03a9D8...A3041885a
0 ETH0.000643845.90010839
Unwrap197505862024-04-28 1:37:59117 days ago1714268279IN
0xCC03a9D8...A3041885a
0 ETH0.000522964.79182437
Unwrap197171732024-04-23 9:22:47121 days ago1713864167IN
0xCC03a9D8...A3041885a
0 ETH0.000734437.98083413
Unwrap197171682024-04-23 9:21:47121 days ago1713864107IN
0xCC03a9D8...A3041885a
0 ETH0.000759918.25879749
Unwrap197167522024-04-23 7:58:11122 days ago1713859091IN
0xCC03a9D8...A3041885a
0 ETH0.000762389.77398821
Unwrap197167422024-04-23 7:56:11122 days ago1713858971IN
0xCC03a9D8...A3041885a
0 ETH0.000842569.15703472
Unwrap197167392024-04-23 7:55:35122 days ago1713858935IN
0xCC03a9D8...A3041885a
0 ETH0.000898919.7681301
Unwrap197166412024-04-23 7:35:47122 days ago1713857747IN
0xCC03a9D8...A3041885a
0 ETH0.0007874110.09496842
Unwrap197166242024-04-23 7:32:23122 days ago1713857543IN
0xCC03a9D8...A3041885a
0 ETH0.0008675911.12290557
Unwrap197166022024-04-23 7:27:59122 days ago1713857279IN
0xCC03a9D8...A3041885a
0 ETH0.000887929.64752037
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:
GnomeWrapper

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 2 : GnomeBridge.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

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

contract GnomeWrapper {
    IERC20 public gnomeToken = IERC20(0x42069d11A2CC72388a2e06210921E839Cfbd3280);
    IERC20 public gnomeWhormHoleToken = IERC20(0xa29F2f60aA589B2dac72e72b7CFed51bfbA52862);

    uint256 public wrapFee = 100; // Fee for wrapping in basis points (1% = 100)
    uint256 public unwrapFee = 5000; // Fee for unwrapping in basis points (1% = 100)

    address public owner;

    modifier onlyOwner() {
        require(msg.sender == owner, "Not the owner");
        _;
    }

    event Wrap(address indexed account, uint256 amount, uint256 fee);
    event Unwrap(address indexed account, uint256 amount, uint256 fee);

    constructor() {
        owner = msg.sender;
    }

    function setGnomeToken(address _gnomeToken) external onlyOwner {
        gnomeToken = IERC20(_gnomeToken);
    }

    function setGnomeWhormHoleToken(address _gnomeWhormHoleToken) external onlyOwner {
        gnomeWhormHoleToken = IERC20(_gnomeWhormHoleToken);
    }

    function setWrapFee(uint256 _wrapFee) external onlyOwner {
        require(_wrapFee <= 10000, "Wrap fee must be less than or equal to 100%");
        wrapFee = _wrapFee;
    }

    function setUnwrapFee(uint256 _unwrapFee) external onlyOwner {
        require(_unwrapFee <= 10000, "Unwrap fee must be less than or equal to 100%");
        unwrapFee = _unwrapFee;
    }

    function wrap(uint256 amount) external {
        require(address(gnomeToken) != address(0), "GnomeToken address not set");
        require(address(gnomeWhormHoleToken) != address(0), "GnomeWhormHoleToken address not set");

        uint256 feeAmount = (amount * wrapFee) / 10000;
        uint256 transferAmount = amount - feeAmount;
        transferAmount *= 10 ** 9;
        require(gnomeToken.transferFrom(msg.sender, address(this), amount * 10 ** 18), "Transfer failed");
        gnomeWhormHoleToken.transfer(msg.sender, transferAmount);
        emit Wrap(msg.sender, amount, feeAmount);
    }

    function unwrap(uint256 amount) external {
        require(address(gnomeToken) != address(0), "GnomeToken address not set");
        require(address(gnomeWhormHoleToken) != address(0), "GnomeWhormHoleToken address not set");

        uint256 feeAmount = (amount * unwrapFee) / 10000;
        uint256 transferAmount = amount - feeAmount;
        transferAmount *= 10 ** 18;
        require(gnomeWhormHoleToken.transferFrom(msg.sender, address(this), amount * 10 ** 9), "Transfer failed");
        gnomeToken.transfer(msg.sender, transferAmount);
        emit Unwrap(msg.sender, amount, feeAmount);
    }

    // Owner functions for emergency recovery
    function recoverERC20(address token, uint256 amount) external onlyOwner {
        IERC20(token).transfer(owner, amount);
    }
}

File 2 of 2 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"Unwrap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"Wrap","type":"event"},{"inputs":[],"name":"gnomeToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gnomeWhormHoleToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gnomeToken","type":"address"}],"name":"setGnomeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gnomeWhormHoleToken","type":"address"}],"name":"setGnomeWhormHoleToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_unwrapFee","type":"uint256"}],"name":"setUnwrapFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wrapFee","type":"uint256"}],"name":"setWrapFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unwrapFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrapFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600080546001600160a01b03199081167342069d11a2cc72388a2e06210921e839cfbd3280179091556001805490911673a29f2f60aa589b2dac72e72b7cfed51bfba52862179055606460025561138860035534801561006357600080fd5b50600480546001600160a01b03191633179055610a6d806100856000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b1461014e5780639637e4a8146101615780639aed427914610174578063c2c569b11461017d578063de0e9a3e14610190578063ea598cb0146101a357600080fd5b80630aabe407146100b95780632653908c146100ce5780632aafb3eb146100e15780633cf6eed8146100fd57806386136c6d146101285780638980f11f1461013b575b600080fd5b6100cc6100c73660046108de565b6101b6565b005b6100cc6100dc3660046108de565b61020b565b6100ea60025481565b6040519081526020015b60405180910390f35b600054610110906001600160a01b031681565b6040516001600160a01b0390911681526020016100f4565b600154610110906001600160a01b031681565b6100cc610149366004610900565b610257565b600454610110906001600160a01b031681565b6100cc61016f36600461092a565b6102ff565b6100ea60035481565b6100cc61018b36600461092a565b610396565b6100cc61019e36600461092a565b61042b565b6100cc6101b136600461092a565b61067b565b6004546001600160a01b031633146101e95760405162461bcd60e51b81526004016101e090610943565b60405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031633146102355760405162461bcd60e51b81526004016101e090610943565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031633146102815760405162461bcd60e51b81526004016101e090610943565b6004805460405163a9059cbb60e01b81526001600160a01b03918216928101929092526024820183905283169063a9059cbb906044016020604051808303816000875af11580156102d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102fa919061096a565b505050565b6004546001600160a01b031633146103295760405162461bcd60e51b81526004016101e090610943565b6127108111156103915760405162461bcd60e51b815260206004820152602d60248201527f556e7772617020666565206d757374206265206c657373207468616e206f722060448201526c657175616c20746f203130302560981b60648201526084016101e0565b600355565b6004546001600160a01b031633146103c05760405162461bcd60e51b81526004016101e090610943565b6127108111156104265760405162461bcd60e51b815260206004820152602b60248201527f5772617020666565206d757374206265206c657373207468616e206f7220657160448201526a75616c20746f203130302560a81b60648201526084016101e0565b600255565b6000546001600160a01b03166104835760405162461bcd60e51b815260206004820152601a60248201527f476e6f6d65546f6b656e2061646472657373206e6f742073657400000000000060448201526064016101e0565b6001546001600160a01b03166104ab5760405162461bcd60e51b81526004016101e09061098c565b6000612710600354836104be91906109e5565b6104c89190610a02565b905060006104d68284610a24565b90506104ea670de0b6b3a7640000826109e5565b6001549091506001600160a01b03166323b872dd333061050e87633b9aca006109e5565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af1158015610562573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610586919061096a565b6105c45760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016101e0565b60005460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610615573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610639919061096a565b50604080518481526020810184905233917fe8e8d3915b94f03b4f3342716334ae94bd6f36775da7b263c908889b93d0574b91015b60405180910390a2505050565b6000546001600160a01b03166106d35760405162461bcd60e51b815260206004820152601a60248201527f476e6f6d65546f6b656e2061646472657373206e6f742073657400000000000060448201526064016101e0565b6001546001600160a01b03166106fb5760405162461bcd60e51b81526004016101e09061098c565b60006127106002548361070e91906109e5565b6107189190610a02565b905060006107268284610a24565b9050610736633b9aca00826109e5565b6000549091506001600160a01b03166323b872dd333061075e87670de0b6b3a76400006109e5565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af11580156107b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d6919061096a565b6108145760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016101e0565b60015460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610865573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610889919061096a565b50604080518481526020810184905233917f18a5ed48bb0a697c64a5aef8f28cec1f29ab01da27a45c5f835099781ef1ea46910161066e565b80356001600160a01b03811681146108d957600080fd5b919050565b6000602082840312156108f057600080fd5b6108f9826108c2565b9392505050565b6000806040838503121561091357600080fd5b61091c836108c2565b946020939093013593505050565b60006020828403121561093c57600080fd5b5035919050565b6020808252600d908201526c2737ba103a34329037bbb732b960991b604082015260600190565b60006020828403121561097c57600080fd5b815180151581146108f957600080fd5b60208082526023908201527f476e6f6d6557686f726d486f6c65546f6b656e2061646472657373206e6f74206040820152621cd95d60ea1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109fc576109fc6109cf565b92915050565b600082610a1f57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156109fc576109fc6109cf56fea2646970667358221220db3717c3fb427a35814c81e089b47da09fe4c025d22adcad483aee555171495464736f6c63430008150033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b1461014e5780639637e4a8146101615780639aed427914610174578063c2c569b11461017d578063de0e9a3e14610190578063ea598cb0146101a357600080fd5b80630aabe407146100b95780632653908c146100ce5780632aafb3eb146100e15780633cf6eed8146100fd57806386136c6d146101285780638980f11f1461013b575b600080fd5b6100cc6100c73660046108de565b6101b6565b005b6100cc6100dc3660046108de565b61020b565b6100ea60025481565b6040519081526020015b60405180910390f35b600054610110906001600160a01b031681565b6040516001600160a01b0390911681526020016100f4565b600154610110906001600160a01b031681565b6100cc610149366004610900565b610257565b600454610110906001600160a01b031681565b6100cc61016f36600461092a565b6102ff565b6100ea60035481565b6100cc61018b36600461092a565b610396565b6100cc61019e36600461092a565b61042b565b6100cc6101b136600461092a565b61067b565b6004546001600160a01b031633146101e95760405162461bcd60e51b81526004016101e090610943565b60405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031633146102355760405162461bcd60e51b81526004016101e090610943565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031633146102815760405162461bcd60e51b81526004016101e090610943565b6004805460405163a9059cbb60e01b81526001600160a01b03918216928101929092526024820183905283169063a9059cbb906044016020604051808303816000875af11580156102d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102fa919061096a565b505050565b6004546001600160a01b031633146103295760405162461bcd60e51b81526004016101e090610943565b6127108111156103915760405162461bcd60e51b815260206004820152602d60248201527f556e7772617020666565206d757374206265206c657373207468616e206f722060448201526c657175616c20746f203130302560981b60648201526084016101e0565b600355565b6004546001600160a01b031633146103c05760405162461bcd60e51b81526004016101e090610943565b6127108111156104265760405162461bcd60e51b815260206004820152602b60248201527f5772617020666565206d757374206265206c657373207468616e206f7220657160448201526a75616c20746f203130302560a81b60648201526084016101e0565b600255565b6000546001600160a01b03166104835760405162461bcd60e51b815260206004820152601a60248201527f476e6f6d65546f6b656e2061646472657373206e6f742073657400000000000060448201526064016101e0565b6001546001600160a01b03166104ab5760405162461bcd60e51b81526004016101e09061098c565b6000612710600354836104be91906109e5565b6104c89190610a02565b905060006104d68284610a24565b90506104ea670de0b6b3a7640000826109e5565b6001549091506001600160a01b03166323b872dd333061050e87633b9aca006109e5565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af1158015610562573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610586919061096a565b6105c45760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016101e0565b60005460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610615573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610639919061096a565b50604080518481526020810184905233917fe8e8d3915b94f03b4f3342716334ae94bd6f36775da7b263c908889b93d0574b91015b60405180910390a2505050565b6000546001600160a01b03166106d35760405162461bcd60e51b815260206004820152601a60248201527f476e6f6d65546f6b656e2061646472657373206e6f742073657400000000000060448201526064016101e0565b6001546001600160a01b03166106fb5760405162461bcd60e51b81526004016101e09061098c565b60006127106002548361070e91906109e5565b6107189190610a02565b905060006107268284610a24565b9050610736633b9aca00826109e5565b6000549091506001600160a01b03166323b872dd333061075e87670de0b6b3a76400006109e5565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af11580156107b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d6919061096a565b6108145760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016101e0565b60015460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610865573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610889919061096a565b50604080518481526020810184905233917f18a5ed48bb0a697c64a5aef8f28cec1f29ab01da27a45c5f835099781ef1ea46910161066e565b80356001600160a01b03811681146108d957600080fd5b919050565b6000602082840312156108f057600080fd5b6108f9826108c2565b9392505050565b6000806040838503121561091357600080fd5b61091c836108c2565b946020939093013593505050565b60006020828403121561093c57600080fd5b5035919050565b6020808252600d908201526c2737ba103a34329037bbb732b960991b604082015260600190565b60006020828403121561097c57600080fd5b815180151581146108f957600080fd5b60208082526023908201527f476e6f6d6557686f726d486f6c65546f6b656e2061646472657373206e6f74206040820152621cd95d60ea1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109fc576109fc6109cf565b92915050565b600082610a1f57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156109fc576109fc6109cf56fea2646970667358221220db3717c3fb427a35814c81e089b47da09fe4c025d22adcad483aee555171495464736f6c63430008150033

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.