ETH Price: $2,414.35 (-1.38%)

Contract

0xeAd0918c9A0388aa2B86C4b69B18cbcaA3764618
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Redeem Shares Fo...193906772024-03-08 13:13:59190 days ago1709903639IN
0xeAd0918c...aA3764618
0 ETH0.0405066554.12991145
Redeem Shares Fo...193394312024-03-01 9:28:35197 days ago1709285315IN
0xeAd0918c...aA3764618
0 ETH0.0322028644.71110948
Redeem Shares Fo...192642792024-02-19 20:53:35208 days ago1708376015IN
0xeAd0918c...aA3764618
0 ETH0.0359874646.647243
Redeem Shares Fo...192331562024-02-15 11:53:35212 days ago1707998015IN
0xeAd0918c...aA3764618
0 ETH0.0175469524.37019867
Redeem Shares Fo...191510422024-02-03 23:17:11223 days ago1707002231IN
0xeAd0918c...aA3764618
0 ETH0.0102843514.12661551
Redeem Shares Fo...188800862023-12-27 22:55:23261 days ago1703717723IN
0xeAd0918c...aA3764618
0 ETH0.0194985526.17744438
Redeem Shares Fo...188095202023-12-18 1:10:59271 days ago1702861859IN
0xeAd0918c...aA3764618
0 ETH0.023711932.78552558
Redeem Shares Fo...186918822023-12-01 13:32:35288 days ago1701437555IN
0xeAd0918c...aA3764618
0 ETH0.0265874236.66835966
Redeem Shares Fo...186918552023-12-01 13:27:11288 days ago1701437231IN
0xeAd0918c...aA3764618
0 ETH0.0257273935.30709483
Redeem Shares Fo...177844662023-07-27 12:41:59415 days ago1690461719IN
0xeAd0918c...aA3764618
0 ETH0.0190425725.08962557
Redeem Shares Fo...176841112023-07-13 10:53:11429 days ago1689245591IN
0xeAd0918c...aA3764618
0 ETH0.011724715.11100873
Call On Extensio...176785502023-07-12 16:04:59430 days ago1689177899IN
0xeAd0918c...aA3764618
0 ETH0.0188969662.02255006
Redeem Shares Fo...176715682023-07-11 16:30:35431 days ago1689093035IN
0xeAd0918c...aA3764618
0 ETH0.0300941638.95235401
Redeem Shares Fo...163913362023-01-12 14:31:23611 days ago1673533883IN
0xeAd0918c...aA3764618
0 ETH0.0175308524.12478106
Call On Extensio...158532232022-10-29 10:49:11686 days ago1667040551IN
0xeAd0918c...aA3764618
0 ETH0.0032225311.10774034
Redeem Shares Fo...153876162022-08-22 2:17:16754 days ago1661134636IN
0xeAd0918c...aA3764618
0 ETH0.005870447.00427326
Redeem Shares Fo...149451532022-06-11 16:00:39826 days ago1654963239IN
0xeAd0918c...aA3764618
0 ETH0.0529257563.29976096
Deploy Gas Relay...148113342022-05-20 13:15:10848 days ago1653052510IN
0xeAd0918c...aA3764618
0 ETH0.0099722639.69422636
Call On Extensio...148113152022-05-20 13:11:38848 days ago1653052298IN
0xeAd0918c...aA3764618
0 ETH0.0178152754.0015438
Call On Extensio...148113102022-05-20 13:10:16848 days ago1653052216IN
0xeAd0918c...aA3764618
0 ETH0.0352715847.55826495
Call On Extensio...148112472022-05-20 12:56:03848 days ago1653051363IN
0xeAd0918c...aA3764618
0 ETH0.0117939824.64293679
Call On Extensio...148112402022-05-20 12:53:59848 days ago1653051239IN
0xeAd0918c...aA3764618
0 ETH0.0088937325.14962763
Call On Extensio...148112302022-05-20 12:52:14848 days ago1653051134IN
0xeAd0918c...aA3764618
0 ETH0.0098782527.83595112
Call On Extensio...148111952022-05-20 12:43:48848 days ago1653050628IN
0xeAd0918c...aA3764618
0 ETH0.0060570723.29637006
Call On Extensio...148111942022-05-20 12:43:40848 days ago1653050620IN
0xeAd0918c...aA3764618
0 ETH0.0056729420.93013058
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
141927382022-02-12 17:50:23945 days ago1644688223  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.