ETH Price: $1,814.88 (+10.99%)

Contract

0xdc5c45287FdEdb214413Cd0fbD66a87D2CcD493F

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Call On Extensio...3281650532025-04-20 0:06:443 days ago1745107604IN
0xdc5c4528...D2CcD493F
0 ETH0.000010460.010292
Call On Extensio...3281635052025-04-20 0:00:153 days ago1745107215IN
0xdc5c4528...D2CcD493F
0 ETH0.000011210.01
Vault Call On Co...3262261282025-04-14 8:43:389 days ago1744620218IN
0xdc5c4528...D2CcD493F
0 ETH0.000000990.01
Buy Shares3256735882025-04-12 18:07:2110 days ago1744481241IN
0xdc5c4528...D2CcD493F
0 ETH0.000006250.01
Vault Call On Co...3253727202025-04-11 21:08:0511 days ago1744405685IN
0xdc5c4528...D2CcD493F
0 ETH0.000000990.01
Buy Shares3245309242025-04-09 10:32:3114 days ago1744194751IN
0xdc5c4528...D2CcD493F
0 ETH0.000005910.01
Vault Call On Co...3241474582025-04-08 7:51:3015 days ago1744098690IN
0xdc5c4528...D2CcD493F
0 ETH0.000001260.01
Vault Call On Co...3233142422025-04-05 21:45:1417 days ago1743889514IN
0xdc5c4528...D2CcD493F
0 ETH0.000001550.01
Vault Call On Co...3232842352025-04-05 19:39:2417 days ago1743881964IN
0xdc5c4528...D2CcD493F
0 ETH0.000001280.01
Call On Extensio...3229629422025-04-04 21:12:4818 days ago1743801168IN
0xdc5c4528...D2CcD493F
0 ETH0.000016030.01
Call On Extensio...3229625782025-04-04 21:11:1718 days ago1743801077IN
0xdc5c4528...D2CcD493F
0 ETH0.000003260.01
Vault Call On Co...3229099702025-04-04 17:31:3318 days ago1743787893IN
0xdc5c4528...D2CcD493F
0 ETH0.0000010.010022
Vault Call On Co...3227566542025-04-04 6:51:5319 days ago1743749513IN
0xdc5c4528...D2CcD493F
0 ETH0.000001020.01
Vault Call On Co...3224349862025-04-03 8:24:1920 days ago1743668659IN
0xdc5c4528...D2CcD493F
0 ETH0.000001310.01
Vault Call On Co...3222838512025-04-02 21:53:0820 days ago1743630788IN
0xdc5c4528...D2CcD493F
0 ETH0.000001040.01
Vault Call On Co...3220804982025-04-02 7:45:2321 days ago1743579923IN
0xdc5c4528...D2CcD493F
0 ETH0.0000010.01
Buy Shares3220049922025-04-02 2:30:4221 days ago1743561042IN
0xdc5c4528...D2CcD493F
0 ETH0.000003610.010371
Vault Call On Co...3217741822025-04-01 10:29:0922 days ago1743503349IN
0xdc5c4528...D2CcD493F
0 ETH0.0000050.01
Vault Call On Co...3217738372025-04-01 10:27:3622 days ago1743503256IN
0xdc5c4528...D2CcD493F
0 ETH0.000002390.01

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
3217613072025-04-01 9:35:2322 days ago1743500123  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.