ETH Price: $2,953.52 (-0.38%)
 

More Info

Private Name Tags

Multichain Info

Transaction Hash
Method
Block
From
To
Claim286525802026-01-23 15:20:0325 hrs ago1769181603IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.00000080.00505
Claim286474942026-01-23 13:42:2827 hrs ago1769175748IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000780.004999
Claim285881232026-01-22 13:53:032 days ago1769089983IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000390.0001201
Claim284451242026-01-20 9:36:154 days ago1768901775IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000150.0001201
Claim283449772026-01-18 21:37:015 days ago1768772221IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000930.004999
Claim283428142026-01-18 20:41:465 days ago1768768906IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000001250.004999
Claim280857262026-01-14 18:47:469 days ago1768416466IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000390.0001486
Claim280301422026-01-13 18:32:3910 days ago1768329159IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000001320.004999
Claim280241342026-01-13 15:36:0411 days ago1768318564IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000540.0001201
Claim279578412026-01-12 11:04:0612 days ago1768215846IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000120.0001201
Claim279345872026-01-11 22:21:0112 days ago1768170061IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000060.0001333
Claim279344802026-01-11 22:15:0512 days ago1768169705IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000780.004999
Claim279291422026-01-11 18:29:4712 days ago1768156187IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000070.0001201
Claim278577332026-01-09 21:09:5414 days ago1767992994IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000470.004999
Claim278516232026-01-09 17:20:3714 days ago1767979237IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000290.00030327
Claim278191142026-01-08 23:40:4415 days ago1767915644IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000050.0001201
Claim278175492026-01-08 22:19:0115 days ago1767910741IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000940.004999
Claim277809382026-01-08 1:33:2916 days ago1767836009IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000070.0001201
Claim277760562026-01-07 21:06:0216 days ago1767819962IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000110.000147
Claim277600472026-01-07 11:29:5717 days ago1767785397IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000130.0001201
Claim277590842026-01-07 10:58:2117 days ago1767783501IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000070.0001201
Claim277589892026-01-07 10:54:3117 days ago1767783271IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000060.0001201
Claim277370832026-01-06 19:51:4017 days ago1767729100IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000940.004999
Claim277319782026-01-06 16:54:5817 days ago1767718498IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000000790.0001489
Claim277280192026-01-06 15:03:1018 days ago1767711790IN
0x3Ef3D8bA...CE00Dd9Ae
0 ETH0.000001930.004999
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Cross-Chain Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x8BB4C975...3802B36Fd
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC1967Proxy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 100000 runs

Other Settings:
london EvmVersion, MIT license

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol)

pragma solidity ^0.8.0;

import "../Proxy.sol";
import "./ERC1967Upgrade.sol";

/**
 * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
 * implementation address that can be changed. This address is stored in storage in the location specified by
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
 * implementation behind the proxy.
 */
contract ERC1967Proxy is Proxy, ERC1967Upgrade {
    /**
     * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
     *
     * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
     * function call, and allows initializing the storage of the proxy like a Solidity constructor.
     */
    constructor(address _logic, bytes memory _data) payable {
        _upgradeToAndCall(_logic, _data, false);
    }

    /**
     * @dev Returns the current implementation address.
     */
    function _implementation() internal view virtual override returns (address impl) {
        return ERC1967Upgrade._getImplementation();
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)

pragma solidity ^0.8.0;

/**
 * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
 * proxy whose upgrades are fully controlled by the current implementation.
 */
interface IERC1822Proxiable {
    /**
     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
     * address.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy.
     */
    function proxiableUUID() external view returns (bytes32);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol)

pragma solidity ^0.8.2;

import "../beacon/IBeacon.sol";
import "../../interfaces/draft-IERC1822.sol";
import "../../utils/Address.sol";
import "../../utils/StorageSlot.sol";

/**
 * @dev This abstract contract provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
 *
 * _Available since v4.1._
 *
 * @custom:oz-upgrades-unsafe-allow delegatecall
 */
abstract contract ERC1967Upgrade {
    // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
    bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Returns the current implementation address.
     */
    function _getImplementation() internal view returns (address) {
        return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
        StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Perform implementation upgrade
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeTo(address newImplementation) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Perform implementation upgrade with additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCall(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        _upgradeTo(newImplementation);
        if (data.length > 0 || forceCall) {
            Address.functionDelegateCall(newImplementation, data);
        }
    }

    /**
     * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCallUUPS(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        // Upgrades from old implementations will perform a rollback test. This test requires the new
        // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
        // this special case will break upgrade paths from old UUPS implementation to new ones.
        if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) {
            _setImplementation(newImplementation);
        } else {
            try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {
                require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
            } catch {
                revert("ERC1967Upgrade: new implementation is not UUPS");
            }
            _upgradeToAndCall(newImplementation, data, forceCall);
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Returns the current admin.
     */
    function _getAdmin() internal view returns (address) {
        return StorageSlot.getAddressSlot(_ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        require(newAdmin != address(0), "ERC1967: new admin is the zero address");
        StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {AdminChanged} event.
     */
    function _changeAdmin(address newAdmin) internal {
        emit AdminChanged(_getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
     */
    bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Emitted when the beacon is upgraded.
     */
    event BeaconUpgraded(address indexed beacon);

    /**
     * @dev Returns the current beacon.
     */
    function _getBeacon() internal view returns (address) {
        return StorageSlot.getAddressSlot(_BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the EIP1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract");
        require(
            Address.isContract(IBeacon(newBeacon).implementation()),
            "ERC1967: beacon implementation is not a contract"
        );
        StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon;
    }

    /**
     * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
     * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
     *
     * Emits a {BeaconUpgraded} event.
     */
    function _upgradeBeaconToAndCall(
        address newBeacon,
        bytes memory data,
        bool forceCall
    ) internal {
        _setBeacon(newBeacon);
        emit BeaconUpgraded(newBeacon);
        if (data.length > 0 || forceCall) {
            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)

pragma solidity ^0.8.0;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive() external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overridden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeacon {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {BeaconProxy} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 100000
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

0x60806040526040516107ad3803806107ad83398101604081905261002291610319565b61002e82826000610035565b5050610436565b61003e8361006b565b60008251118061004b5750805b156100665761006483836100ab60201b6100291760201c565b505b505050565b610074816100d7565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606100d08383604051806060016040528060278152602001610786602791396101a9565b9392505050565b6100ea8161022260201b6100551760201c565b6101515760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084015b60405180910390fd5b806101887f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61023160201b6100711760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080856001600160a01b0316856040516101c691906103e7565b600060405180830381855af49150503d8060008114610201576040519150601f19603f3d011682016040523d82523d6000602084013e610206565b606091505b50909250905061021886838387610234565b9695505050505050565b6001600160a01b03163b151590565b90565b606083156102a357825160000361029c576001600160a01b0385163b61029c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610148565b50816102ad565b6102ad83836102b5565b949350505050565b8151156102c55781518083602001fd5b8060405162461bcd60e51b81526004016101489190610403565b634e487b7160e01b600052604160045260246000fd5b60005b838110156103105781810151838201526020016102f8565b50506000910152565b6000806040838503121561032c57600080fd5b82516001600160a01b038116811461034357600080fd5b60208401519092506001600160401b038082111561036057600080fd5b818501915085601f83011261037457600080fd5b815181811115610386576103866102df565b604051601f8201601f19908116603f011681019083821181831017156103ae576103ae6102df565b816040528281528860208487010111156103c757600080fd5b6103d88360208301602088016102f5565b80955050505050509250929050565b600082516103f98184602087016102f5565b9190910192915050565b60208152600082518060208401526104228160408501602087016102f5565b601f01601f19169190910160400192915050565b610341806104456000396000f3fe60806040523661001357610011610017565b005b6100115b610027610022610074565b6100b9565b565b606061004e83836040518060600160405280602781526020016102e5602791396100dd565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b90565b60006100b47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e8080156100d8573d6000f35b3d6000fd5b60606000808573ffffffffffffffffffffffffffffffffffffffff16856040516101079190610277565b600060405180830381855af49150503d8060008114610142576040519150601f19603f3d011682016040523d82523d6000602084013e610147565b606091505b509150915061015886838387610162565b9695505050505050565b606083156101fd5782516000036101f65773ffffffffffffffffffffffffffffffffffffffff85163b6101f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064015b60405180910390fd5b5081610207565b610207838361020f565b949350505050565b81511561021f5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ed9190610293565b60005b8381101561026e578181015183820152602001610256565b50506000910152565b60008251610289818460208701610253565b9190910192915050565b60208152600082518060208401526102b2816040850160208701610253565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212208d6f628b23c1e021c9b2ae38fc6a126b22b03b9629f5dfe1de8fc7f044229aec64736f6c63430008110033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564000000000000000000000000918261fa5dd9c3b1358ca911792e9bdf3c5cca3500000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040523661001357610011610017565b005b6100115b610027610022610074565b6100b9565b565b606061004e83836040518060600160405280602781526020016102e5602791396100dd565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b90565b60006100b47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e8080156100d8573d6000f35b3d6000fd5b60606000808573ffffffffffffffffffffffffffffffffffffffff16856040516101079190610277565b600060405180830381855af49150503d8060008114610142576040519150601f19603f3d011682016040523d82523d6000602084013e610147565b606091505b509150915061015886838387610162565b9695505050505050565b606083156101fd5782516000036101f65773ffffffffffffffffffffffffffffffffffffffff85163b6101f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064015b60405180910390fd5b5081610207565b610207838361020f565b949350505050565b81511561021f5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ed9190610293565b60005b8381101561026e578181015183820152602001610256565b50506000910152565b60008251610289818460208701610253565b9190910192915050565b60208152600082518060208401526102b2816040850160208701610253565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212208d6f628b23c1e021c9b2ae38fc6a126b22b03b9629f5dfe1de8fc7f044229aec64736f6c63430008110033

Block Transaction Gas Used Reward
view all blocks sequenced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
0x3Ef3D8bA38EBe18DB133cEc108f4D14CE00Dd9Ae
Net Worth in USD
$15,164,643.79

Net Worth in ETH
Scroll LogoScroll LogoScroll Logo 5,134.432927

Token Allocations
WXPL 19.17%
MORPHO 17.15%
UNI 11.70%
Others 51.98%
Chain Token Portfolio % Price Amount Value
ETH11.48%$4.84359,672.0643$1,740,812.79
ETH10.05%$1.191,281,182.2305$1,524,606.85
ETH8.10%$0.9989131,229,995.4216$1,228,658.42
ETH3.89%$0.999915590,110.6261$590,060.47
ETH2.29%$0.0220715,703,939.6007$346,583.59
ETH2.07%$1314,336.0629$314,336.06
ETH1.25%$2,955.3963.908$188,872.91
ETH1.13%$155.571,101.7089$171,392.85
ETH0.95%$0.999639144,101.7529$144,049.73
ETH0.50%$1.1864,756.0099$76,412.09
ETH0.43%$0.99815165,512.8244$65,391.69
ETH0.32%$3.0115,968.8699$48,066.3
ETH0.31%$0.94643250,222.7495$47,532.42
ETH0.28%$0.99929643,150.4623$43,120.08
ETH0.27%$0.0366581,112,250.3612$40,772.44
ETH0.25%$0.9997437,903.0235$37,893.17
ETH0.24%$0.00075947,390,527.5071$35,961.91
ETH0.23%$0.99842835,229.2525$35,173.87
ETH0.23%$1.1330,464.5582$34,424.95
ETH0.21%$0.176908184,061.3664$32,561.93
ETH0.19%$0.99951328,728.37$28,714.38
ETH0.18%$89,3060.3009$26,868.83
ETH0.17%$1.1122,619.5525$25,140.17
ETH0.14%$1.1817,664.0458$20,843.57
ETH0.13%$0.0175221,166,104.3819$20,432.03
ETH0.13%$1.9410,379.9463$20,102.22
ETH0.13%$0.99946219,068.1534$19,057.89
ETH0.11%$0.33081349,119.5387$16,249.38
ETH0.09%$0.0078571,750,852.3436$13,756.38
ETH0.09%$3,616.653.6331$13,139.63
ETH0.08%$0.99891312,249.7342$12,236.42
ETH0.08%$0.99633211,895.6341$11,852
ETH0.07%$0.9938210,256.4515$10,193.07
ETH0.07%$3,155.633.1308$9,879.63
ETH0.06%$2,951.013.3317$9,831.97
ETH0.06%$0.60030515,645.0233$9,391.79
ETH0.05%$1.017,401.3551$7,475.37
ETH0.04%$0.0009976,675,607.4518$6,652.38
ETH0.04%$3,151.222.0893$6,583.78
ETH0.04%$297.5621.8612$6,505.01
ETH0.04%$16,127.4528$6,127.45
ETH0.03%$0.0008665,997,891.1185$5,196.35
ETH0.03%$0.9832534,844.1572$4,763.03
ETH0.03%$0.004583864,101.684$3,960.4
ETH0.03%$0.09821840,035.7187$3,932.23
ETH0.02%$0.99993,760.6104$3,760.23
ETH0.02%$0.03459186,300.8032$2,985.19
ETH0.02%$0.4398045,467.1838$2,404.49
ETH0.01%$0.3439936,252.3867$2,150.78
ETH0.01%$0.2346458,357.0534$1,960.94
ETH0.01%$0.6030362,637.1946$1,590.32
ETH<0.01%$0.009336160,667.9176$1,500.07
ETH<0.01%$1.061,333.4852$1,406.83
ETH<0.01%$1.9679.4343$1,290.93
ETH<0.01%$0.0273145,048.7405$1,230.29
ETH<0.01%$24.9445.4156$1,132.67
ETH<0.01%$0.0003032,665,796.8312$806.75
ETH<0.01%$0.3805042,000.6084$761.24
ETH<0.01%$0.998449741.0668$739.92
ETH<0.01%$0.05995212,016.1596$720.39
ETH<0.01%$0.499644642.2828$320.91
ETH<0.01%$0.29974815.5145$244.44
ETH<0.01%$0.0147213,404.191$197.3
ETH<0.01%$0.527899259.9534$137.23
ETH<0.01%$0.0534882,255.6591$120.65
ETH<0.01%$0.0818491,411.5623$115.54
ETH<0.01%$0.0570311,465.8722$83.6
ETH<0.01%$2.0226.8912$54.32
ETH<0.01%$0.99970250.6495$50.63
ETH<0.01%$0.000381113,477.0914$43.28
ETH<0.01%$0.0070766,101.4888$43.18
ETH<0.01%$0.64283736.5093$23.47
ETH<0.01%$0.0062712,198.7681$13.79
ETH<0.01%$22.830.5$11.41
ETH<0.01%$0.000023390,014.3827$8.92
ETH<0.01%$0.0024962,420.0838$6.04
ETH<0.01%$0.0030591,963.4772$6.01
ETH<0.01%<$0.00000142,690,000$4.73
ETH<0.01%$0.9997612.6092$2.61
ETH<0.01%$0.021718114.5607$2.49
ETH<0.01%$0.0016691,325.9224$2.21
ETH<0.01%$0.51684$2.07
ETH<0.01%$0.000005188,722.1827$0.8662
ETH<0.01%$0.0001233,807.4766$0.4679
PLASMA19.17%$0.12637822,999,809.6884$2,906,669.95
PLASMA<0.01%$0.99848953.847$53.77
BASE6.45%$1.19821,403.068$977,469.65
BASE1.48%$0.00645334,828,957.3246$224,743.95
BASE0.91%$2,954.1146.8443$138,383.17
BASE0.79%$3.0938,765.7298$119,786.11
BASE0.51%$0.0454281,686,880.6091$76,632.37
BASE0.13%$0.9995219,070.6838$19,061.53
BASE0.12%$0.127603145,459.1341$18,561.02
BASE0.11%$1.948,759.7321$16,993.88
BASE0.10%$0.0117631,312,479.8482$15,439.15
BASE0.05%$0.007853973,032.7997$7,641.17
BASE0.04%$3,176.911.8344$5,827.84
BASE0.03%$2,950.521.3688$4,038.6
BASE0.02%$1.063,511.7486$3,736.5
BASE0.02%$0.09038633,259.1573$3,006.16
BASE0.01%$0.2567318,674.4363$2,227
BASE0.01%$0.005165428,993.0332$2,215.65
BASE0.01%$90,2430.0223$2,009.04
BASE0.01%$0.0003216,049,511.5675$1,942.8
BASE0.01%$1.21,607.1726$1,928.61
BASE0.01%$0.0000820,853,717.9618$1,675.6
BASE0.01%$0.0003344,817,922.2362$1,609.67
BASE<0.01%$0.002543431,499.9584$1,097.45
BASE<0.01%$2,944.190.2924$860.76
BASE<0.01%$0.02351911,076.2943$260.5
BASE<0.01%$3,615.240.0669$241.97
BASE<0.01%$0.00391519,066.9518$74.64
BASE<0.01%$0.99939154.545$54.51
BASE<0.01%$0.000488111,405.9614$54.32
BASE<0.01%$0.00000317,147,785.1337$46.13
BASE<0.01%$0.0356651,015.1955$36.21
BASE<0.01%$0.0018128,799.6005$15.95
BASE<0.01%$0.053946165.1586$8.91
BASE<0.01%$0.019895160$3.18
BASE<0.01%$0.02093998$2.05
BASE<0.01%$0.000001740,000$0.8732
BASE<0.01%$0.0018233.881$0.421
BASE<0.01%$0.0000328,433$0.2715
MONAD3.39%$0.01867927,484,378.2251$513,391.69
MONAD2.68%$0.999696405,808.9216$405,685.56
MONAD0.15%$2,950.947.5862$22,386.42
MONAD<0.01%$0.9996343.395$3.39
ARB3.11%$0.175812,684,233.1445$471,915.03
ARB0.52%$2,954.1126.443$78,115.6
ARB0.41%$3,614.5717.2242$62,258.07
ARB0.31%$1.1939,107.5724$46,538.01
ARB0.22%$4.836,819.1376$32,936.43
ARB0.11%$0.99960316,885.7314$16,879.03
ARB0.05%$89,2820.0892$7,964.75
ARB0.04%$0.0027412,000,000$5,481.05
ARB0.03%$0.29955214,687.0499$4,399.54
ARB<0.01%$0.01919769,658.6715$1,337.23
ARB<0.01%$0.00193612,775.4556$1,182.82
ARB<0.01%$0.9132341,273.2249$1,162.75
ARB<0.01%$0.9930961,145.0896$1,137.18
ARB<0.01%$0.0676956,519.855$441.36
ARB<0.01%$0.998117412.3117$411.54
ARB<0.01%$0.000142,870,793.1845$401.39
ARB<0.01%$0.02801112,273.7961$343.8
ARB<0.01%$0.935298290.3666$271.58
ARB<0.01%$0.998571224.7435$224.42
ARB<0.01%$0.02182110,155.8414$221.61
ARB<0.01%$0.0752871,003.1943$75.53
ARB<0.01%$0.000281113,060.409$31.73
ARB<0.01%$0.0078541,334.5343$10.48
ARB<0.01%$0.0000051,392,668.644$6.48
ARB<0.01%$0.0010693,976.0933$4.25
ARB<0.01%$0.0008043,648.0063$2.93
ARB<0.01%$3,616.120.0002858$1.03
ARB<0.01%$0.9959240.3514$0.35
ARB<0.01%$0.0922373.4987$0.3227
ARB<0.01%$0.00179994.9241$0.1707
ARB<0.01%$0.00627420.6334$0.1294
SWELL1.19%$0.001668108,471,801.3086$180,887.58
SWELL0.66%$0.00166859,595,278.5737$99,381.09
WORLD1.30%$0.468843419,828.7624$196,833.78
WORLD0.24%$2,952.2412.5041$36,915.23
HYPEREVM0.88%$0.999522134,136.1484$134,072.03
HYPEREVM0.59%$0.99963290,090.3163$90,057.16
HYPEREVM<0.01%$0.00308320,935.0027$988.4
HYPEREVM<0.01%$22.9640.3702$926.9
HYPEREVM<0.01%$0.000931413,964.0302$385.57
HYPEREVM<0.01%$0.000074143,548.2276$10.63
KATANA0.65%$198,716.212$98,913.64
KATANA0.35%$1.1944,070.4257$52,443.81
KATANA0.28%$2,963.5414.5006$42,973.02
KATANA0.08%$0.99862312,205.2797$12,188.47
KATANA<0.01%$0.9832431,207.018$1,186.79
KATANA<0.01%$0.998957407.4071$406.98
KATANA<0.01%$10.4738$0.4743
POL0.75%$0.0118579,638,494.3772$114,279.77
POL0.30%$23.921,909.9975$45,687.14
POL0.13%$0.125433156,241.8259$19,597.81
POL<0.01%$0.998328610.8131$609.79
POL<0.01%$1.17193.9387$226.91
POL<0.01%$0.0289896,109.2271$177.1
POL<0.01%$0.299528331.6827$99.35
POL<0.01%$0.000604118,501.5537$71.53
POL<0.01%<$0.00000172,187,699.6466$25.92
POL<0.01%$0.000037617,586.6554$22.66
POL<0.01%$0.014721,145.9626$16.87
POL<0.01%$0.000129108,184.1671$13.91
POL<0.01%$0.00059218,974.9218$11.23
POL<0.01%$0.0004221,627.5675$9.08
POL<0.01%$0.17218138.3713$6.61
POL<0.01%$0.000005927,672.9458$4.31
POL<0.01%<$0.0000018,484,220,561.0937$1.7
POL<0.01%$0.8721951.1951$1.04
POL<0.01%$0.006365161.7672$1.03
POL<0.01%$0.9995220.9849$0.9844
POL<0.01%$0.01267946.1553$0.5851
POL<0.01%$0.00029970.9488$0.2814
POL<0.01%$11.030.01$0.1103
AVAX1.12%$12.0114,141.5518$169,848.41
AVAX<0.01%$0.99968353.1052$53.09
AVAX<0.01%$0.00638922.0429$0.1408
OP1.06%$0.300091537,482.8668$161,293.97
OP<0.01%$0.01176430,796.6279$362.28
OP<0.01%$178.310.1869$33.32
OP<0.01%$0.0147219.9989$0.2943
MANTLE0.50%$323.21233.565$75,490.54
MANTLE0.08%$0.90230413,325.3954$12,023.56
UNI0.49%$0.9995273,725.6303$73,690.24
UNI0.08%$1.946,500.65$12,611.26
UNI<0.01%$2,948.340.0249$73.55
BSC0.15%$0.99846222,993.4961$22,958.13
BSC0.07%$0.86593411,999.942$10,391.16
BSC0.07%$1.865,358.2376$9,988.05
BSC0.06%$0.9994788,548.4666$8,544
BSC0.04%$0.09817763,714.1519$6,255.26
BSC0.03%$1.92,310.2102$4,389.4
BSC0.02%$0.23624914,184.2596$3,351.02
BSC0.02%$0.9970842,862.9789$2,854.63
BSC0.01%$1.941,002.0852$1,944.05
BSC<0.01%$5.31263.6028$1,400.35
BSC<0.01%$0.00054716,822.525$387.43
BSC<0.01%$0.000422752,489.3772$317.79
BSC<0.01%$0.999582252.0307$251.93
BSC<0.01%$0.00153610,000$15.36
BSC<0.01%$11.6934$1.69
BSC<0.01%$0.00002130,000$0.6231
BSC<0.01%$4.830.1261$0.6095
BSC<0.01%$885.640.00015782$0.1397
CELO0.16%$0.99846225,043.55$25,005.03
CELO0.08%$0.99959412,464.2871$12,459.23
CELO0.07%$0.11563585,515.6519$9,888.56
CELO<0.01%$0.998099145.9791$145.7
SONIC0.17%$0.070077359,602.3446$25,199.85
SONIC0.08%$0.99952212,138.807$12,133
SONIC0.01%$1.94832.7329$1,615.5
SONIC<0.01%$4.83160.6951$776.16
SONIC<0.01%$0.996925330.7834$329.77
SONIC<0.01%$1.06239.8801$253.66
SONIC<0.01%$0.018476830.5932$15.35
SONIC<0.01%$1.941.3025$2.53
GNO0.22%$137.85246.0257$33,914.64
GNO<0.01%$0.0119832,450.9271$29.37
GNO<0.01%$0.99954513.1497$13.14
SEI0.06%$0.10542687,033.5429$9,175.6
SEI<0.01%$0.980711189.2084$185.56
BERA<0.01%$0.7285291,998.3994$1,455.89
BERA<0.01%$0.9976921,018.9351$1,016.58
BERA<0.01%$0.0565392,084.0189$117.83
TAIKO<0.01%$0.1665787,579.9165$1,262.65
SCROLL<0.01%$0.0742993,458.006$256.93
SCROLL<0.01%$4.8422.2794$107.83
GLMR<0.01%$0.0214187,410.7967$158.72
LINEA<0.01%$19.0699$9.07
STABLE<0.01%$0.020305200$4.06
Loading...
Loading
Loading...
Loading
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.