ETH Price: $1,799.97 (+13.65%)

Contract

0xCE8F190322460349238DAF5fB64f3975355edfE1

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Call On Extensio...3291652422025-04-22 21:53:338 hrs ago1745358813IN
0xCE8F1903...5355edfE1
0 ETH0.000083081.026443
Call On Extensio...3291650982025-04-22 21:52:578 hrs ago1745358777IN
0xCE8F1903...5355edfE1
0 ETH0.000088061.056776
Call On Extensio...3291639942025-04-22 21:48:208 hrs ago1745358500IN
0xCE8F1903...5355edfE1
0 ETH0.000029060.223345
Call On Extensio...3291636992025-04-22 21:47:078 hrs ago1745358427IN
0xCE8F1903...5355edfE1
0 ETH0.000017430.19252
Call On Extensio...3291589732025-04-22 21:27:248 hrs ago1745357244IN
0xCE8F1903...5355edfE1
0 ETH0.000335850.216741
Call On Extensio...3291559772025-04-22 21:14:518 hrs ago1745356491IN
0xCE8F1903...5355edfE1
0 ETH0.000004620.01
Call On Extensio...3291557242025-04-22 21:13:488 hrs ago1745356428IN
0xCE8F1903...5355edfE1
0 ETH0.000004710.01
Call On Extensio...3291554542025-04-22 21:12:398 hrs ago1745356359IN
0xCE8F1903...5355edfE1
0 ETH0.000004710.01
Call On Extensio...3291553852025-04-22 21:12:228 hrs ago1745356342IN
0xCE8F1903...5355edfE1
0 ETH0.0000050.01
Call On Extensio...3291528512025-04-22 21:01:468 hrs ago1745355706IN
0xCE8F1903...5355edfE1
0 ETH0.0000080.01
Call On Extensio...3291522212025-04-22 20:59:068 hrs ago1745355546IN
0xCE8F1903...5355edfE1
0 ETH0.000014240.01
Call On Extensio...3291515632025-04-22 20:56:219 hrs ago1745355381IN
0xCE8F1903...5355edfE1
0 ETH0.000007910.01
Call On Extensio...3291504262025-04-22 20:51:359 hrs ago1745355095IN
0xCE8F1903...5355edfE1
0 ETH0.000008360.01
Call On Extensio...3291494232025-04-22 20:47:219 hrs ago1745354841IN
0xCE8F1903...5355edfE1
0 ETH0.000005920.01
Call On Extensio...3291462492025-04-22 20:34:029 hrs ago1745354042IN
0xCE8F1903...5355edfE1
0 ETH0.000004930.01
Call On Extensio...3291456162025-04-22 20:31:239 hrs ago1745353883IN
0xCE8F1903...5355edfE1
0 ETH0.000008420.01
Call On Extensio...3291435012025-04-22 20:22:329 hrs ago1745353352IN
0xCE8F1903...5355edfE1
0 ETH0.000005880.01
Call On Extensio...3291428112025-04-22 20:19:389 hrs ago1745353178IN
0xCE8F1903...5355edfE1
0 ETH0.000006350.01
Call On Extensio...3291426772025-04-22 20:19:049 hrs ago1745353144IN
0xCE8F1903...5355edfE1
0 ETH0.000005950.01
Call On Extensio...3291420232025-04-22 20:16:219 hrs ago1745352981IN
0xCE8F1903...5355edfE1
0 ETH0.000002290.01
Call On Extensio...3291419012025-04-22 20:15:509 hrs ago1745352950IN
0xCE8F1903...5355edfE1
0 ETH0.000001550.01
Call On Extensio...3291313682025-04-22 19:31:4610 hrs ago1745350306IN
0xCE8F1903...5355edfE1
0 ETH0.000003990.01
Call On Extensio...3270909682025-04-16 21:08:286 days ago1744837708IN
0xCE8F1903...5355edfE1
0 ETH0.000003230.01
Call On Extensio...3270907982025-04-16 21:07:456 days ago1744837665IN
0xCE8F1903...5355edfE1
0 ETH0.000003720.011914
Call On Extensio...3270905632025-04-16 21:06:456 days ago1744837605IN
0xCE8F1903...5355edfE1
0 ETH0.000005130.014009
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
3167698712025-03-17 22:03:2936 days ago1742249009  Contract Creation0 ETH

Loading...
Loading

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

Contract Name:
ComptrollerProxy

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion
File 1 of 2 : ComptrollerProxy.sol
// SPDX-License-Identifier: GPL-3.0

/*
    This file is part of the Enzyme Protocol.

    (c) Enzyme Council <[email protected]>

    For the full license information, please view the LICENSE
    file that was distributed with this source code.
*/

pragma solidity 0.6.12;

import {NonUpgradableProxy} from "../../../../utils/0.6.12/NonUpgradableProxy.sol";

/// @title ComptrollerProxy Contract
/// @author Enzyme Council <[email protected]>
/// @notice A proxy contract for all ComptrollerProxy instances
contract ComptrollerProxy is NonUpgradableProxy {
    constructor(bytes memory _constructData, address _comptrollerLib)
        public
        NonUpgradableProxy(_constructData, _comptrollerLib)
    {}
}

File 2 of 2 : NonUpgradableProxy.sol
// SPDX-License-Identifier: GPL-3.0

/*
    This file is part of the Enzyme Protocol.

    (c) Enzyme Council <[email protected]>

    For the full license information, please view the LICENSE
    file that was distributed with this source code.
*/

pragma solidity 0.6.12;

/// @title NonUpgradableProxy Contract
/// @author Enzyme Council <[email protected]>
/// @notice A proxy contract for use with non-upgradable libs
/// @dev The recommended constructor-fallback pattern of a proxy in EIP-1822, updated for solc 0.6.12,
/// and using an immutable lib value to save on gas (since not upgradable).
/// The EIP-1967 storage slot for the lib is still assigned,
/// for ease of referring to UIs that understand the pattern, i.e., Etherscan.
abstract contract NonUpgradableProxy {
    address private immutable CONTRACT_LOGIC;

    constructor(bytes memory _constructData, address _contractLogic) public {
        CONTRACT_LOGIC = _contractLogic;

        assembly {
            // EIP-1967 slot: `bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)`
            sstore(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc, _contractLogic)
        }
        (bool success, bytes memory returnData) = _contractLogic.delegatecall(_constructData);
        require(success, string(returnData));
    }

    // solhint-disable-next-line no-complex-fallback
    fallback() external payable {
        address contractLogic = CONTRACT_LOGIC;

        assembly {
            calldatacopy(0x0, 0x0, calldatasize())
            let success := delegatecall(sub(gas(), 10000), contractLogic, 0x0, calldatasize(), 0, 0)
            let retSz := returndatasize()
            returndatacopy(0, 0, retSz)
            switch success
            case 0 { revert(0, retSz) }
            default { return(0, retSz) }
        }
    }
}

Settings
{
  "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-solc-0.6/contracts/",
    "@uniswap/v3-core/=lib/uniswap-v3-core/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-solc-0.6/=lib/openzeppelin-solc-0.6/contracts/",
    "openzeppelin-solc-0.7/=lib/openzeppelin-solc-0.7/contracts/",
    "openzeppelin-solc-0.8/=lib/openzeppelin-solc-0.8/contracts/",
    "uniswap-v3-core/=lib/uniswap-v3-core/",
    "uniswap-v3-core-0.8/=lib/uniswap-v3-core-0.8/",
    "uniswap-v3-periphery/=lib/uniswap-v3-periphery/contracts/",
    "uniswap-v3-periphery-0.8/=lib/uniswap-v3-periphery-0.8/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200,
    "details": {
      "yul": false
    }
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "none"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "istanbul",
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"bytes","name":"_constructData","type":"bytes"},{"internalType":"address","name":"_comptrollerLib","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040527f0000000000000000000000003868c0fc34b6ece124c6ab122f6f29e978be66613660008037600080366000846127105a03f43d806000803e818015604857816000f35b816000fdfea164736f6c634300060c000a

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
[ 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.