ETH Price: $1,999.82 (+2.69%)
 

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Withdraw417735692026-02-06 0:08:0531 days ago1770336485IN
0x9529E598...f11C3Ec99
0 ETH0.000031870.24379127
Flash Action417718502026-02-05 23:10:4731 days ago1770333047IN
0x9529E598...f11C3Ec99
0 ETH0.000027560.01557499
Flash Action417718372026-02-05 23:10:2131 days ago1770333021IN
0x9529E598...f11C3Ec99
0 ETH0.000008480.01562035
Flash Action417718222026-02-05 23:09:5131 days ago1770332991IN
0x9529E598...f11C3Ec99
0 ETH0.000018460.01588463
Flash Action417717582026-02-05 23:07:4331 days ago1770332863IN
0x9529E598...f11C3Ec99
0 ETH0.000022080.01678656
Flash Action417697252026-02-05 21:59:5731 days ago1770328797IN
0x9529E598...f11C3Ec99
0 ETH0.000113830.02373327
Set Asset Manage...414224262026-01-28 21:03:1939 days ago1769634199IN
0x9529E598...f11C3Ec99
0 ETH0.000000570.01121759
Set Asset Manage...413870232026-01-28 1:23:1340 days ago1769563393IN
0x9529E598...f11C3Ec99
0 ETH0.00000010.00211614
Set Asset Manage...413870132026-01-28 1:22:5340 days ago1769563373IN
0x9529E598...f11C3Ec99
0 ETH0.000002150.0020686
Flash Action413869702026-01-28 1:21:2740 days ago1769563287IN
0x9529E598...f11C3Ec99
0 ETH0.000009210.00206403
Flash Action413869402026-01-28 1:20:2740 days ago1769563227IN
0x9529E598...f11C3Ec99
0 ETH0.000002320.00211177
Flash Action413005502026-01-26 1:20:4742 days ago1769390447IN
0x9529E598...f11C3Ec99
0 ETH0.000037230.01033757
Flash Action412917882026-01-25 20:28:4342 days ago1769372923IN
0x9529E598...f11C3Ec99
0 ETH0.000043070.02924753
Flash Action412917712026-01-25 20:28:0942 days ago1769372889IN
0x9529E598...f11C3Ec99
0 ETH0.000066480.03159675
Flash Action412917532026-01-25 20:27:3342 days ago1769372853IN
0x9529E598...f11C3Ec99
0 ETH0.000036280.03321628
Flash Action410375792026-01-19 23:15:0548 days ago1768864505IN
0x9529E598...f11C3Ec99
0 ETH0.000008590.00465272
Flash Action410375632026-01-19 23:14:3348 days ago1768864473IN
0x9529E598...f11C3Ec99
0 ETH0.000007210.0047244
Flash Action410375392026-01-19 23:13:4548 days ago1768864425IN
0x9529E598...f11C3Ec99
0 ETH0.000006070.00494518
Flash Action410375182026-01-19 23:13:0348 days ago1768864383IN
0x9529E598...f11C3Ec99
0 ETH0.000007250.00502701
Flash Action410375032026-01-19 23:12:3348 days ago1768864353IN
0x9529E598...f11C3Ec99
0 ETH0.000003720.00528177
Flash Action393106062025-12-10 23:49:1988 days ago1765410559IN
0x9529E598...f11C3Ec99
0 ETH0.00000410.00121336
Flash Action392745322025-12-10 3:46:5188 days ago1765338411IN
0x9529E598...f11C3Ec99
0 ETH0.000002880.0012
Withdraw392744652025-12-10 3:44:3788 days ago1765338277IN
0x9529E598...f11C3Ec99
0 ETH0.000000480.0012
Withdraw387390482025-11-27 18:17:23101 days ago1764267443IN
0x9529E598...f11C3Ec99
0 ETH0.000000570.00148864
Withdraw384088722025-11-20 2:51:31109 days ago1763607091IN
0x9529E598...f11C3Ec99
0 ETH0.000003230.00832383

Latest 1 internal transaction

Parent Transaction Hash Block From To
301077912025-05-11 23:08:49301 days ago1747004929  Contract Creation0 ETH

Cross-Chain Transactions
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

/**
 * @title Proxy
 * @author Pragma Labs
 * @dev Implementation based on ERC1967: Proxy Storage Slots.
 * See https://eips.ethereum.org/EIPS/eip-1967.
 */
contract Proxy {
    /* //////////////////////////////////////////////////////////////
                                CONSTANTS
    ////////////////////////////////////////////////////////////// */

    // Storage slot with the address of the current implementation.
    // This is the hardcoded keccak-256 hash of: "eip1967.proxy.implementation" subtracted by 1.
    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /* //////////////////////////////////////////////////////////////
                                STORAGE
    ////////////////////////////////////////////////////////////// */

    // Storage slot for the Account logic, a struct to avoid storage conflict when dealing with upgradeable contracts.
    struct AddressSlot {
        address value;
    }

    /* //////////////////////////////////////////////////////////////
                                EVENTS
    ////////////////////////////////////////////////////////////// */

    event Upgraded(address indexed implementation);

    /* //////////////////////////////////////////////////////////////
                            CONSTRUCTOR
    ////////////////////////////////////////////////////////////// */

    /**
     * @param implementation The contract address of the Account logic.
     */
    constructor(address implementation) payable {
        _getAddressSlot(IMPLEMENTATION_SLOT).value = implementation;
        emit Upgraded(implementation);
    }

    /**
     * @dev Fallback function that delegates calls to the implementation address.
     * Will run if call data is empty.
     */
    receive() external payable virtual {
        _delegate(_getAddressSlot(IMPLEMENTATION_SLOT).value);
    }

    /**
     * @dev Fallback function that delegates calls to the implementation address.
     * Will run if no other function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _delegate(_getAddressSlot(IMPLEMENTATION_SLOT).value);
    }

    /*///////////////////////////////////////////////////////////////
                        IMPLEMENTATION LOGIC
    ///////////////////////////////////////////////////////////////*/

    /**
     * @notice Returns the "AddressSlot" with member "value" located at "slot".
     * @param slot The slot where the address of the Logic contract is stored.
     * @return r The address stored in slot.
     */
    function _getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /*///////////////////////////////////////////////////////////////
                          DELEGATION LOGIC
    ///////////////////////////////////////////////////////////////*/

    /**
     * @param implementation The contract address of the logic.
     * @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()) }
        }
    }
}

Settings
{
  "remappings": [
    "@uniswap/v3-core/contracts/=lib/v3-core/contracts/",
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
    "solmate/=lib/solmate/src/",
    "v3-core/=lib/v3-core/",
    "v3-periphery/=lib/v3-periphery/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "shanghai",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

0x608060405260405161017c38038061017c8339810160408190526100229161008d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0383169081179091556040517fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2506100ba565b5f6020828403121561009d575f80fd5b81516001600160a01b03811681146100b3575f80fd5b9392505050565b60b6806100c65f395ff3fe608060405236603c57603a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b546001600160a01b03166063565b005b603a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc602c565b365f80375f80365f845af43d5f803e808015607c573d5ff35b3d5ffdfea2646970667358221220eeb8a2fa918a2057b66e1d3fa3930647dc7a4e56c99898cd9e280beec9d9ba9f64736f6c63430008160033000000000000000000000000bea2b6d45acaf62385877d835970a0788719cae1

Deployed Bytecode

0x608060405236603c57603a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b546001600160a01b03166063565b005b603a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc602c565b365f80375f80365f845af43d5f803e808015607c573d5ff35b3d5ffdfea2646970667358221220eeb8a2fa918a2057b66e1d3fa3930647dc7a4e56c99898cd9e280beec9d9ba9f64736f6c63430008160033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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.