ETH Price: $2,841.73 (-5.64%)
 

Overview

ETH Balance

Scroll LogoScroll LogoScroll Logo0 ETH

ETH Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Call Agreement241966612025-11-02 7:06:4288 days ago1762067202IN
0x0F86a21F...C34520bb7
0 ETH0.000000040.0001201
Call Agreement122962522024-12-29 8:10:20396 days ago1735459820IN
0x0F86a21F...C34520bb7
0 ETH0.000015630.03970315
Call Agreement119504202024-12-16 5:27:13409 days ago1734326833IN
0x0F86a21F...C34520bb7
0 ETH0.000022920.0411684
Call Agreement116648422024-12-05 11:03:47420 days ago1733396627IN
0x0F86a21F...C34520bb7
0 ETH0.000027860.04830829
Call Agreement109000232024-11-07 20:17:40447 days ago1731010660IN
0x0F86a21F...C34520bb7
0 ETH0.000029380.04348714
Call Agreement107935242024-11-04 2:59:45451 days ago1730689185IN
0x0F86a21F...C34520bb7
0 ETH0.000018490.03983862
Call Agreement107472502024-11-02 12:05:58453 days ago1730549158IN
0x0F86a21F...C34520bb7
0 ETH0.000018850.03987903
Call Agreement106256212024-10-29 6:30:13457 days ago1730183413IN
0x0F86a21F...C34520bb7
0 ETH0.000021080.04079461
Call Agreement105829492024-10-27 19:09:58458 days ago1730056198IN
0x0F86a21F...C34520bb7
0 ETH0.000018970.04011103
Call Agreement103943032024-10-22 3:24:10464 days ago1729567450IN
0x0F86a21F...C34520bb7
0 ETH0.000018380.0403092
Call Agreement102550082024-10-17 15:58:20469 days ago1729180700IN
0x0F86a21F...C34520bb7
0 ETH0.000026020.04239732
Call Agreement102144182024-10-16 10:02:34470 days ago1729072954IN
0x0F86a21F...C34520bb7
0 ETH0.000021760.04101636
Call Agreement99512062024-10-07 14:22:34479 days ago1728310954IN
0x0F86a21F...C34520bb7
0 ETH0.000057880.05596836
Call Agreement99508632024-10-07 14:05:58479 days ago1728309958IN
0x0F86a21F...C34520bb7
0 ETH0.000037930.04970431
Call Agreement97649332024-10-01 4:23:06485 days ago1727756586IN
0x0F86a21F...C34520bb7
0 ETH0.000087810.20024668
Call Agreement97147572024-09-29 10:53:20487 days ago1727607200IN
0x0F86a21F...C34520bb7
0 ETH0.00002310.05322311
Call Agreement97089332024-09-29 6:05:41487 days ago1727589941IN
0x0F86a21F...C34520bb7
0 ETH0.000022930.05266757
Call Agreement97082172024-09-29 5:30:03487 days ago1727587803IN
0x0F86a21F...C34520bb7
0 ETH0.000023050.05291177
Call Agreement97072532024-09-29 4:41:56487 days ago1727584916IN
0x0F86a21F...C34520bb7
0 ETH0.000022540.05186232
Call Agreement95739962024-09-24 14:16:59492 days ago1727187419IN
0x0F86a21F...C34520bb7
0 ETH0.000075110.17204308
Call Agreement94354722024-09-19 19:22:24496 days ago1726773744IN
0x0F86a21F...C34520bb7
0 ETH0.000039930.09390986
Call Agreement91807472024-09-11 0:36:29505 days ago1726014989IN
0x0F86a21F...C34520bb7
0 ETH0.000016460.04180116
Call Agreement91271762024-09-09 4:26:08507 days ago1725855968IN
0x0F86a21F...C34520bb7
0 ETH0.00001560.03989857
Call Agreement88280032024-08-30 2:18:38517 days ago1724984318IN
0x0F86a21F...C34520bb7
0 ETH0.000014610.03954734
Call Agreement88086812024-08-29 10:37:26518 days ago1724927846IN
0x0F86a21F...C34520bb7
0 ETH0.000016330.03904786
View all transactions

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
25752032024-01-18 21:11:05741 days ago1705612265
0x0F86a21F...C34520bb7
 Contract Creation0 ETH
25750792024-01-18 21:04:30741 days ago1705611870
0x0F86a21F...C34520bb7
 Contract Creation0 ETH
25750732024-01-18 21:04:12741 days ago1705611852
0x0F86a21F...C34520bb7
 Contract Creation0 ETH
25750682024-01-18 21:03:57741 days ago1705611837
0x0F86a21F...C34520bb7
 Contract Creation0 ETH
Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UUPSProxy

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: AGPLv3
pragma solidity 0.8.19;

import { UUPSUtils } from "./UUPSUtils.sol";
import { Proxy } from "@openzeppelin/contracts/proxy/Proxy.sol";


/**
 * @title UUPS (Universal Upgradeable Proxy Standard) Proxy
 *
 * NOTE:
 * - Compliant with [Universal Upgradeable Proxy Standard](https://eips.ethereum.org/EIPS/eip-1822)
 * - Compiiant with [Standard Proxy Storage Slots](https://eips.ethereum.org/EIPS/eip-1967)
 * - Implements delegation of calls to other contracts, with proper forwarding of
 *   return values and bubbling of failures.
 * - It defines a fallback function that delegates all calls to the implementation.
 */
contract UUPSProxy is Proxy {

    /**
     * @dev Proxy initialization function.
     *      This should only be called once and it is permission-less.
     * @param initialAddress Initial logic contract code address to be used.
     */
    function initializeProxy(address initialAddress) external {
        require(initialAddress != address(0), "UUPSProxy: zero address");
        require(UUPSUtils.implementation() == address(0), "UUPSProxy: already initialized");
        UUPSUtils.setImplementation(initialAddress);
    }

    /// @dev Proxy._implementation implementation
    function _implementation() internal virtual override view returns (address)
    {
        return UUPSUtils.implementation();
    }

}

// SPDX-License-Identifier: AGPLv3
pragma solidity 0.8.19;

/**
 * @title UUPS (Universal Upgradeable Proxy Standard) Shared Library
 */
library UUPSUtils {

    /**
     * @dev Implementation slot constant.
     * Using https://eips.ethereum.org/EIPS/eip-1967 standard
     * Storage slot 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc
     * (obtained as bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)).
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /// @dev Get implementation address.
    function implementation() internal view returns (address impl) {
        assembly { // solium-disable-line
            impl := sload(_IMPLEMENTATION_SLOT)
        }
    }

    /// @dev Set new implementation address.
    function setImplementation(address codeAddress) internal {
        assembly {
            // solium-disable-line
            sstore(
                _IMPLEMENTATION_SLOT,
                codeAddress
            )
        }
    }

}

// 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 {}
}

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

Contract Security Audit

Contract ABI

API
[{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"initialAddress","type":"address"}],"name":"initializeProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b5061022a806100206000396000f3fe6080604052600436106100225760003560e01c80634a0687ef1461003957610031565b366100315761002f610059565b005b61002f610059565b34801561004557600080fd5b5061002f6100543660046101c4565b61006b565b610069610064610171565b6101a0565b565b6001600160a01b0381166100c65760405162461bcd60e51b815260206004820152601760248201527f5555505350726f78793a207a65726f206164647265737300000000000000000060448201526064015b60405180910390fd5b60006100f07f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b0316146101465760405162461bcd60e51b815260206004820152601e60248201527f5555505350726f78793a20616c726561647920696e697469616c697a6564000060448201526064016100bd565b61016e817f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b50565b600061019b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905090565b3660008037600080366000845af43d6000803e8080156101bf573d6000f35b3d6000fd5b6000602082840312156101d657600080fd5b81356001600160a01b03811681146101ed57600080fd5b939250505056fea26469706673582212207b854fb470c84fe2f7ac8508498d435a5f32ef93071c687a148ef683fa3ede9964736f6c63430008130033

Deployed Bytecode

0x6080604052600436106100225760003560e01c80634a0687ef1461003957610031565b366100315761002f610059565b005b61002f610059565b34801561004557600080fd5b5061002f6100543660046101c4565b61006b565b610069610064610171565b6101a0565b565b6001600160a01b0381166100c65760405162461bcd60e51b815260206004820152601760248201527f5555505350726f78793a207a65726f206164647265737300000000000000000060448201526064015b60405180910390fd5b60006100f07f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b0316146101465760405162461bcd60e51b815260206004820152601e60248201527f5555505350726f78793a20616c726561647920696e697469616c697a6564000060448201526064016100bd565b61016e817f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b50565b600061019b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905090565b3660008037600080366000845af43d6000803e8080156101bf573d6000f35b3d6000fd5b6000602082840312156101d657600080fd5b81356001600160a01b03811681146101ed57600080fd5b939250505056fea26469706673582212207b854fb470c84fe2f7ac8508498d435a5f32ef93071c687a148ef683fa3ede9964736f6c63430008130033

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
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.