ETH Price: $2,937.85 (+4.68%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Call On Extensio...201233282024-06-19 4:12:23142 days ago1718770343IN
0x47029E8D...b6Ca905ba
0 ETH0.001318155.08228134
Call On Extensio...199622502024-05-27 15:58:11164 days ago1716825491IN
0x47029E8D...b6Ca905ba
0 ETH0.0069875527.35806578
Call On Extensio...197433042024-04-27 1:09:59195 days ago1714180199IN
0x47029E8D...b6Ca905ba
0 ETH0.00136045.24383714
Call On Extensio...192097122024-02-12 4:58:23270 days ago1707713903IN
0x47029E8D...b6Ca905ba
0 ETH0.0053532520.95428224
Call On Extensio...190422552024-01-19 16:58:23293 days ago1705683503IN
0x47029E8D...b6Ca905ba
0 ETH0.0135673256.16266382
Call On Extensio...182813762023-10-05 2:37:35400 days ago1696473455IN
0x47029E8D...b6Ca905ba
0 ETH0.001721476.62524728
Buy Shares182813582023-10-05 2:33:59400 days ago1696473239IN
0x47029E8D...b6Ca905ba
0 ETH0.001726316.90477234
Vault Call On Co...182813382023-10-05 2:29:59400 days ago1696472999IN
0x47029E8D...b6Ca905ba
0 ETH0.000564885.95673797
Redeem Shares Fo...182744912023-10-04 3:32:23401 days ago1696390343IN
0x47029E8D...b6Ca905ba
0 ETH0.001371096.1221553
Redeem Shares Fo...178083002023-07-30 20:43:23466 days ago1690749803IN
0x47029E8D...b6Ca905ba
0 ETH0.0064991726.46750744
Call On Extensio...178039592023-07-30 6:07:11467 days ago1690697231IN
0x47029E8D...b6Ca905ba
0 ETH0.005976815.61024696
Call On Extensio...178039422023-07-30 6:03:47467 days ago1690697027IN
0x47029E8D...b6Ca905ba
0 ETH0.0052689914.32676739
Call On Extensio...175539582023-06-25 3:54:11502 days ago1687665251IN
0x47029E8D...b6Ca905ba
0 ETH0.0054210511.93374245
Call On Extensio...175539072023-06-25 3:43:47502 days ago1687664627IN
0x47029E8D...b6Ca905ba
0 ETH0.0073888113.06602798
Buy Shares175539002023-06-25 3:42:23502 days ago1687664543IN
0x47029E8D...b6Ca905ba
0 ETH0.0029681712.55157506

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
175323982023-06-22 3:08:47505 days ago1687403327  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.