ETH Price: $3,359.15 (-2.76%)
Gas: 2 Gwei

Contract

0xC73692c81b93746e0a6d1b3c3CDF843B81691964
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Redeem Shares Fo...197392362024-04-26 11:28:5967 days ago1714130939IN
0xC73692c8...B81691964
0 ETH0.007374127.01296755
Redeem Shares Fo...195381802024-03-29 7:29:1195 days ago1711697351IN
0xC73692c8...B81691964
0 ETH0.0200994318.68060494
Redeem Shares Fo...195381312024-03-29 7:19:2395 days ago1711696763IN
0xC73692c8...B81691964
0 ETH0.0226999921.09210619
Redeem Shares Fo...194835692024-03-21 14:15:59103 days ago1711030559IN
0xC73692c8...B81691964
0 ETH0.0341068432.08736237
Call On Extensio...194835642024-03-21 14:14:59103 days ago1711030499IN
0xC73692c8...B81691964
0 ETH0.0125625633.15159001
Call On Extensio...194835462024-03-21 14:11:23103 days ago1711030283IN
0xC73692c8...B81691964
0 ETH0.0141204430.83861238
Call On Extensio...193178712024-02-27 9:03:23126 days ago1709024603IN
0xC73692c8...B81691964
0 ETH0.0205684544.30898595
Call On Extensio...193178472024-02-27 8:58:35126 days ago1709024315IN
0xC73692c8...B81691964
0 ETH0.0177766538.29590331
Call On Extensio...193177902024-02-27 8:46:59126 days ago1709023619IN
0xC73692c8...B81691964
0 ETH0.0117156438.81486485
Call On Extensio...193177432024-02-27 8:37:35126 days ago1709023055IN
0xC73692c8...B81691964
0 ETH0.0117483242.14389134
Call On Extensio...192674962024-02-20 7:40:47133 days ago1708414847IN
0xC73692c8...B81691964
0 ETH0.0172776526.40870852
Call On Extensio...192674872024-02-20 7:38:59133 days ago1708414739IN
0xC73692c8...B81691964
0 ETH0.0085418622.53462955
Call On Extensio...192363522024-02-15 22:37:23138 days ago1708036643IN
0xC73692c8...B81691964
0 ETH0.012730233.57909244
Call On Extensio...192363432024-02-15 22:35:35138 days ago1708036535IN
0xC73692c8...B81691964
0 ETH0.0128115234.38744613
Call On Extensio...192363232024-02-15 22:31:35138 days ago1708036295IN
0xC73692c8...B81691964
0 ETH0.018592334.41356486
Call On Extensio...192363172024-02-15 22:30:23138 days ago1708036223IN
0xC73692c8...B81691964
0 ETH0.0103087837.037727
Call On Extensio...187136212023-12-04 14:33:23211 days ago1701700403IN
0xC73692c8...B81691964
0 ETH0.0370196250.36265347
Call On Extensio...187120002023-12-04 9:06:59211 days ago1701680819IN
0xC73692c8...B81691964
0 ETH0.0182695738.96603801
Call On Extensio...187118762023-12-04 8:42:11211 days ago1701679331IN
0xC73692c8...B81691964
0 ETH0.014726935.90140599
Call On Extensio...187118692023-12-04 8:40:47211 days ago1701679247IN
0xC73692c8...B81691964
0 ETH0.0103871436.78661638
Call On Extensio...186194462023-11-21 10:08:47224 days ago1700561327IN
0xC73692c8...B81691964
0 ETH0.0173087226.63421204
Call On Extensio...186194292023-11-21 10:05:23224 days ago1700561123IN
0xC73692c8...B81691964
0 ETH0.0100931933.82369145
Call On Extensio...186194232023-11-21 10:04:11224 days ago1700561051IN
0xC73692c8...B81691964
0 ETH0.008814331.08215116
Call On Extensio...184358142023-10-26 17:15:23250 days ago1698340523IN
0xC73692c8...B81691964
0 ETH0.0228092732.45149374
Call On Extensio...184357052023-10-26 16:53:35250 days ago1698339215IN
0xC73692c8...B81691964
0 ETH0.0105967922.30828862
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
152242452022-07-27 11:21:27706 days ago1658920887  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.