ETH Price: $2,094.30 (+0.93%)

Contract

0x04Dba13bB6fEa22FD2a1CC2be0bA4c075ee12387
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Call On Extensio...246565202026-03-14 15:08:1124 hrs ago1773500891IN
0x04Dba13b...75ee12387
0 ETH0.000026310.07923499
Call On Extensio...246565182026-03-14 15:07:4724 hrs ago1773500867IN
0x04Dba13b...75ee12387
0 ETH0.000028080.07141852
Call On Extensio...246564642026-03-14 14:56:5924 hrs ago1773500219IN
0x04Dba13b...75ee12387
0 ETH0.000063490.12236019
Call On Extensio...246564602026-03-14 14:56:1124 hrs ago1773500171IN
0x04Dba13b...75ee12387
0 ETH0.000049550.0974654
Call On Extensio...246564562026-03-14 14:55:2324 hrs ago1773500123IN
0x04Dba13b...75ee12387
0 ETH0.000045570.09516448
Redeem Shares Fo...245912522026-03-05 12:24:5910 days ago1772713499IN
0x04Dba13b...75ee12387
0 ETH0.000111540.16449619
Buy Shares245702092026-03-02 13:58:3513 days ago1772459915IN
0x04Dba13b...75ee12387
0 ETH0.000225020.32469432
Redeem Shares Fo...245680652026-03-02 6:47:3513 days ago1772434055IN
0x04Dba13b...75ee12387
0 ETH0.000034690.05114491
Redeem Shares Fo...245564162026-02-28 15:46:3514 days ago1772293595IN
0x04Dba13b...75ee12387
0 ETH0.000054630.08056776
Call On Extensio...245205442026-02-23 15:40:4719 days ago1771861247IN
0x04Dba13b...75ee12387
0 ETH0.00008220.23072419
Call On Extensio...245205272026-02-23 15:37:2319 days ago1771861043IN
0x04Dba13b...75ee12387
0 ETH0.000078960.22163465
Redeem Shares Fo...245200652026-02-23 14:03:5920 days ago1771855439IN
0x04Dba13b...75ee12387
0 ETH0.000089310.12846692
Call On Extensio...245119562026-02-22 10:57:2321 days ago1771757843IN
0x04Dba13b...75ee12387
0 ETH0.000030520.05997996
Call On Extensio...245119502026-02-22 10:56:1121 days ago1771757771IN
0x04Dba13b...75ee12387
0 ETH0.000040020.05117298
Call On Extensio...245119432026-02-22 10:54:4721 days ago1771757687IN
0x04Dba13b...75ee12387
0 ETH0.000033850.07009285
Buy Shares244880492026-02-19 2:57:4724 days ago1771469867IN
0x04Dba13b...75ee12387
0 ETH0.000063210.0896145
Buy Shares244875122026-02-19 1:09:2324 days ago1771463363IN
0x04Dba13b...75ee12387
0 ETH0.000748051.04623479
Redeem Shares Fo...244810902026-02-18 3:40:3525 days ago1771386035IN
0x04Dba13b...75ee12387
0 ETH0.000041830.06125815
Redeem Shares Fo...244747622026-02-17 6:28:2326 days ago1771309703IN
0x04Dba13b...75ee12387
0 ETH0.000029650.04373389
Call On Extensio...244234572026-02-10 2:42:2333 days ago1770691343IN
0x04Dba13b...75ee12387
0 ETH0.000020390.0584079
Call On Extensio...244234292026-02-10 2:36:4733 days ago1770691007IN
0x04Dba13b...75ee12387
0 ETH0.000093090.18005168
Call On Extensio...244234232026-02-10 2:35:3533 days ago1770690935IN
0x04Dba13b...75ee12387
0 ETH0.00002670.05266834
Call On Extensio...244234172026-02-10 2:34:2333 days ago1770690863IN
0x04Dba13b...75ee12387
0 ETH0.000026260.05595519
Redeem Shares Fo...244013192026-02-07 0:19:3536 days ago1770423575IN
0x04Dba13b...75ee12387
0 ETH0.00015690.23937657
Call On Extensio...243970622026-02-06 10:03:3537 days ago1770372215IN
0x04Dba13b...75ee12387
0 ETH0.000345471.0403199
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x60a06040240668572025-12-22 8:07:5983 days ago1766390879  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 2 : ComptrollerProxy.sol
// SPDX-License-Identifier: GPL-3.0

/*
    This file is part of the Enzyme Protocol.

    (c) Enzyme Council <council@enzyme.finance>

    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 <security@enzyme.finance>
/// @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 <council@enzyme.finance>

    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 <security@enzyme.finance>
/// @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"}]

0x60a060405234801561001057600080fd5b506040516103093803806103098339818101604052604081101561003357600080fd5b810190808051604051939291908464010000000082111561005357600080fd5b90830190602082018581111561006857600080fd5b825164010000000081118282018810171561008257600080fd5b82525081516020918201929091019080838360005b838110156100af578181015183820152602001610097565b50505050905090810190601f1680156100dc5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291905050508181806001600160a01b03166080816001600160a01b031660601b81525050807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5560006060826001600160a01b0316846040518082805190602001908083835b602083106101705780518252601f199092019160209182019101610151565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d80600081146101d0576040519150601f19603f3d011682016040523d82523d6000602084013e6101d5565b606091505b50915091508181906102655760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561022a578181015183820152602001610212565b50505050905090810190601f1680156102575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505050505060805160601c6083610286600039806006525060836000f3fe60806040527f00000000000000000000000000000000000000000000000000000000000000003660008037600080366000846127105a03f43d806000803e818015604857816000f35b816000fdfea2646970667358221220af3fa506b4585d3105feda3d44f2fc3c9f0ebf4c6a5e5924e3a86b53bce8828564736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000003f7f3b8da875881206655d8099b9dacf721f1ef0000000000000000000000000000000000000000000000000000000000000044399ae724000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000003f48000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040527f00000000000000000000000003f7f3b8da875881206655d8099b9dacf721f1ef3660008037600080366000846127105a03f43d806000803e818015604857816000f35b816000fdfea2646970667358221220af3fa506b4585d3105feda3d44f2fc3c9f0ebf4c6a5e5924e3a86b53bce8828564736f6c634300060c0033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.