ETH Price: $3,834.51 (-2.22%)

Contract

0xb5bb0157B8eeb52200F514b8bD1EDDD362303886
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Call On Extensio...213780362024-12-11 8:19:593 days ago1733905199IN
0xb5bb0157...362303886
0 ETH0.0036491314.60873732
Call On Extensio...213301912024-12-04 16:01:1110 days ago1733328071IN
0xb5bb0157...362303886
0 ETH0.0151118653.91375927
Call On Extensio...213223112024-12-03 13:35:1111 days ago1733232911IN
0xb5bb0157...362303886
0 ETH0.0160642138.88568263
Call On Extensio...213208882024-12-03 8:49:2311 days ago1733215763IN
0xb5bb0157...362303886
0 ETH0.0043710518.62803624
Call On Extensio...213073292024-12-01 11:21:4713 days ago1733052107IN
0xb5bb0157...362303886
0 ETH0.002921119.05031794
Call On Extensio...213068062024-12-01 9:36:4713 days ago1733045807IN
0xb5bb0157...362303886
0 ETH0.0038182111.86614112
Call On Extensio...212861092024-11-28 12:09:4716 days ago1732795787IN
0xb5bb0157...362303886
0 ETH0.004429678.59661548
Call On Extensio...212849862024-11-28 8:24:3516 days ago1732782275IN
0xb5bb0157...362303886
0 ETH0.003873418.48535078
Call On Extensio...212728762024-11-26 15:39:5918 days ago1732635599IN
0xb5bb0157...362303886
0 ETH0.0048924716.21371347
Call On Extensio...212643082024-11-25 10:54:4719 days ago1732532087IN
0xb5bb0157...362303886
0 ETH0.0041767917.12167806
Call On Extensio...212642502024-11-25 10:42:5919 days ago1732531379IN
0xb5bb0157...362303886
0 ETH0.009435717.0756379
Call On Extensio...212569422024-11-24 10:14:4720 days ago1732443287IN
0xb5bb0157...362303886
0 ETH0.003613028.43992353
Call On Extensio...212364612024-11-21 13:39:4723 days ago1732196387IN
0xb5bb0157...362303886
0 ETH0.0078105529.09598829
Call On Extensio...212364522024-11-21 13:37:5923 days ago1732196279IN
0xb5bb0157...362303886
0 ETH0.0082261328.74613833
Call On Extensio...212362422024-11-21 12:55:5923 days ago1732193759IN
0xb5bb0157...362303886
0 ETH0.0118131131.59651959
Call On Extensio...211794552024-11-13 14:45:4731 days ago1731509147IN
0xb5bb0157...362303886
0 ETH0.0388345184.65382209
Call On Extensio...211291632024-11-06 14:19:5938 days ago1730902799IN
0xb5bb0157...362303886
0 ETH0.0050629415.86622901
Call On Extensio...211081912024-11-03 16:04:5941 days ago1730649899IN
0xb5bb0157...362303886
0 ETH0.002027488.71029921
Call On Extensio...209645242024-10-14 14:53:3561 days ago1728917615IN
0xb5bb0157...362303886
0 ETH0.018430748.97574731
Call On Extensio...209645152024-10-14 14:51:4761 days ago1728917507IN
0xb5bb0157...362303886
0 ETH0.0251924147.88704468
Call On Extensio...209074992024-10-06 15:46:5969 days ago1728229619IN
0xb5bb0157...362303886
0 ETH0.0068381220.64170423
Call On Extensio...209074812024-10-06 15:43:2369 days ago1728229403IN
0xb5bb0157...362303886
0 ETH0.0063225219.595071
Call On Extensio...209074222024-10-06 15:31:3569 days ago1728228695IN
0xb5bb0157...362303886
0 ETH0.0075856624.67726392
Call On Extensio...208847022024-10-03 11:30:3572 days ago1727955035IN
0xb5bb0157...362303886
0 ETH0.001804465.96719513
Call On Extensio...208342272024-09-26 10:35:3579 days ago1727346935IN
0xb5bb0157...362303886
0 ETH0.0061609615.08968959
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
184123702023-10-23 10:27:59418 days ago1698056879  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x3d49a798...0334D7db9
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:
default 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 "../../../utils/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
{
  "optimizer": {
    "enabled": true,
    "runs": 200,
    "details": {
      "yul": false
    }
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x60806040527f00000000000000000000000003f7f3b8da875881206655d8099b9dacf721f1ef3660008037600080366000846127105a03f43d806000803e818015604857816000f35b816000fdfea2646970667358221220af3fa506b4585d3105feda3d44f2fc3c9f0ebf4c6a5e5924e3a86b53bce8828564736f6c634300060c0033

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