ETH Price: $3,419.93 (-1.05%)
Gas: 9 Gwei

Contract

0x648B8d2340842a7040680915c4dAb89382eeEDA9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Redeem Shares Fo...202190222024-07-02 13:06:358 hrs ago1719925595IN
Diva: Staking stETH Vault
0 ETH0.001272886.49931769
Redeem Shares Fo...202136352024-07-01 19:03:3526 hrs ago1719860615IN
Diva: Staking stETH Vault
0 ETH0.0022108311.28844423
Buy Shares202098432024-07-01 6:20:5939 hrs ago1719814859IN
Diva: Staking stETH Vault
0 ETH0.000965784.01091032
Redeem Shares Fo...202097102024-07-01 5:54:1139 hrs ago1719813251IN
Diva: Staking stETH Vault
0 ETH0.000365091.86416976
Redeem Shares Fo...202014582024-06-30 2:16:112 days ago1719713771IN
Diva: Staking stETH Vault
0 ETH0.000356781.82171108
Redeem Shares Fo...202014472024-06-30 2:13:592 days ago1719713639IN
Diva: Staking stETH Vault
0 ETH0.000374061.86721319
Redeem Shares Fo...201982472024-06-29 15:30:473 days ago1719675047IN
Diva: Staking stETH Vault
0 ETH0.00069243.5408654
Redeem Shares Fo...201961682024-06-29 8:31:593 days ago1719649919IN
Diva: Staking stETH Vault
0 ETH0.000648313.30636828
Redeem Shares Fo...201909062024-06-28 14:52:594 days ago1719586379IN
Diva: Staking stETH Vault
0 ETH0.001915819.77054677
Redeem Shares Fo...201862582024-06-27 23:18:234 days ago1719530303IN
Diva: Staking stETH Vault
0 ETH0.00086994.08057204
Redeem Shares Fo...201857972024-06-27 21:45:474 days ago1719524747IN
Diva: Staking stETH Vault
0 ETH0.001028875.24717866
Redeem Shares Fo...201786702024-06-26 21:53:355 days ago1719438815IN
Diva: Staking stETH Vault
0 ETH0.00099835.09130664
Redeem Shares Fo...201784912024-06-26 21:17:476 days ago1719436667IN
Diva: Staking stETH Vault
0 ETH0.001426287.27396447
Redeem Shares In...201746062024-06-26 8:15:596 days ago1719389759IN
Diva: Staking stETH Vault
0 ETH0.00049942.91360108
Redeem Shares Fo...201742822024-06-26 7:10:356 days ago1719385835IN
Diva: Staking stETH Vault
0 ETH0.000389781.98789088
Redeem Shares Fo...201656472024-06-25 2:14:477 days ago1719281687IN
Diva: Staking stETH Vault
0 ETH0.000715673.35729726
Redeem Shares Fo...201653122024-06-25 1:07:237 days ago1719277643IN
Diva: Staking stETH Vault
0 ETH0.000695813.55390309
Redeem Shares Fo...201637112024-06-24 19:44:358 days ago1719258275IN
Diva: Staking stETH Vault
0 ETH0.000990565.05183398
Buy Shares201558252024-06-23 17:17:119 days ago1719163031IN
Diva: Staking stETH Vault
0 ETH0.001151274.46312034
Redeem Shares Fo...201558222024-06-23 17:16:359 days ago1719162995IN
Diva: Staking stETH Vault
0 ETH0.000918954.69358563
Redeem Shares Fo...201531502024-06-23 8:17:359 days ago1719130655IN
Diva: Staking stETH Vault
0 ETH0.000618133.15244075
Redeem Shares Fo...201518442024-06-23 3:54:239 days ago1719114863IN
Diva: Staking stETH Vault
0 ETH0.000416132.12228031
Redeem Shares Fo...201514922024-06-23 2:43:359 days ago1719110615IN
Diva: Staking stETH Vault
0 ETH0.00055832.84730271
Redeem Shares Fo...201476522024-06-22 13:50:1110 days ago1719064211IN
Diva: Staking stETH Vault
0 ETH0.000605113.08604188
Redeem Shares Fo...201468452024-06-22 11:07:4710 days ago1719054467IN
Diva: Staking stETH Vault
0 ETH0.000531742.71201784
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
181698292023-09-19 12:02:35287 days ago1695124955  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.