ETH Price: $1,673.59 (+6.36%)
Gas: 3.7 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Redeem Shares Fo...222524712025-04-12 11:06:112 days ago1744455971IN
0x17A5a274...c8022147F
0 ETH0.000269250.83619654
Redeem Shares In...222126912025-04-06 21:56:477 days ago1743976607IN
0x17A5a274...c8022147F
0 ETH0.000598912.6
Redeem Shares Fo...222121122025-04-06 19:59:237 days ago1743969563IN
0x17A5a274...c8022147F
0 ETH0.00203315.99568744
Redeem Shares Fo...222015552025-04-05 8:35:119 days ago1743842111IN
0x17A5a274...c8022147F
0 ETH0.000314160.92648285
Redeem Shares Fo...221927992025-04-04 3:14:4710 days ago1743736487IN
0x17A5a274...c8022147F
0 ETH0.000313780.92535459
Redeem Shares Fo...221720092025-04-01 5:36:5913 days ago1743485819IN
0x17A5a274...c8022147F
0 ETH0.000320180.99401572
Redeem Shares Fo...221184542025-03-24 18:07:5920 days ago1742839679IN
0x17A5a274...c8022147F
0 ETH0.000232610.68574747
Redeem Shares Fo...221117912025-03-23 19:50:4721 days ago1742759447IN
0x17A5a274...c8022147F
0 ETH0.000163420.48178825
Redeem Shares Fo...220853292025-03-20 3:16:2325 days ago1742440583IN
0x17A5a274...c8022147F
0 ETH0.000293160.91013387
Redeem Shares Fo...219475792025-02-28 21:37:2344 days ago1740778643IN
0x17A5a274...c8022147F
0 ETH0.000431511.27254362
Redeem Shares Fo...219294332025-02-26 8:52:3547 days ago1740559955IN
0x17A5a274...c8022147F
0 ETH0.00023540.69421708
Redeem Shares Fo...219119992025-02-23 22:26:4749 days ago1740349607IN
0x17A5a274...c8022147F
0 ETH0.000467191.37776928
Redeem Shares Fo...218609572025-02-16 19:11:1156 days ago1739733071IN
0x17A5a274...c8022147F
0 ETH0.000271360.8
Redeem Shares Fo...218107922025-02-09 18:37:2363 days ago1739126243IN
0x17A5a274...c8022147F
0 ETH0.000294550.86864043
Redeem Shares Fo...217849122025-02-06 3:55:4767 days ago1738814147IN
0x17A5a274...c8022147F
0 ETH0.000528621.55893795
Redeem Shares Fo...217837042025-02-05 23:52:5967 days ago1738799579IN
0x17A5a274...c8022147F
0 ETH0.000565981.66912112
Redeem Shares Fo...217833022025-02-05 22:32:1167 days ago1738794731IN
0x17A5a274...c8022147F
0 ETH0.001063233.13551334
Redeem Shares Fo...217754732025-02-04 20:18:4768 days ago1738700327IN
0x17A5a274...c8022147F
0 ETH0.003010048.87672749
Redeem Shares Fo...217542762025-02-01 21:12:2371 days ago1738444343IN
0x17A5a274...c8022147F
0 ETH0.00178655.26845297
Redeem Shares Fo...217383762025-01-30 15:53:4773 days ago1738252427IN
0x17A5a274...c8022147F
0 ETH0.001887465.56619652
Redeem Shares In...217312222025-01-29 15:56:4774 days ago1738166207IN
0x17A5a274...c8022147F
0 ETH0.001165055.46357602
Redeem Shares Fo...217311252025-01-29 15:37:2374 days ago1738165043IN
0x17A5a274...c8022147F
0 ETH0.001865385.5010871
Redeem Shares Fo...217276292025-01-29 3:54:2375 days ago1738122863IN
0x17A5a274...c8022147F
0 ETH0.000670011.97589232
Redeem Shares In...217082172025-01-26 10:52:4778 days ago1737888767IN
0x17A5a274...c8022147F
0 ETH0.000623722.70768694
Redeem Shares Fo...216670962025-01-20 17:08:1183 days ago1737392891IN
0x17A5a274...c8022147F
0 ETH0.0170564250.3
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x60a06040196259462024-04-10 14:52:59368 days ago1712760779  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

API
[{"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.