ETH Price: $3,409.80 (+3.31%)

Contract

0x68b429161Ec09a6c1D65ba70727AB1faa5Bc4026
 
Transaction Hash
Method
Block
From
To
Approve212422262024-11-22 8:58:1132 hrs ago1732265891IN
0x68b42916...aa5Bc4026
0 ETH0.0006064812.28803398
Approve212416772024-11-22 7:07:5934 hrs ago1732259279IN
0x68b42916...aa5Bc4026
0 ETH0.000237568.76738451
Approve212416762024-11-22 7:07:4734 hrs ago1732259267IN
0x68b42916...aa5Bc4026
0 ETH0.000232478.58735275
Approve212416762024-11-22 7:07:4734 hrs ago1732259267IN
0x68b42916...aa5Bc4026
0 ETH0.000232998.58735275
Approve212393532024-11-21 23:20:3541 hrs ago1732231235IN
0x68b42916...aa5Bc4026
0 ETH0.0007707315.61584215
Approve212386252024-11-21 20:54:2344 hrs ago1732222463IN
0x68b42916...aa5Bc4026
0 ETH0.0008697917.60153372
Approve212374252024-11-21 16:53:592 days ago1732208039IN
0x68b42916...aa5Bc4026
0 ETH0.00100220.3016582
Approve212339432024-11-21 5:12:472 days ago1732165967IN
0x68b42916...aa5Bc4026
0 ETH0.0006873713.92694374
Approve212336432024-11-21 4:12:352 days ago1732162355IN
0x68b42916...aa5Bc4026
0 ETH0.0005140610.46899691
Approve212332642024-11-21 2:56:232 days ago1732157783IN
0x68b42916...aa5Bc4026
0 ETH0.0005311910.74948451
Approve212328342024-11-21 1:29:592 days ago1732152599IN
0x68b42916...aa5Bc4026
0 ETH0.0005278510.69481645
Approve212318192024-11-20 22:05:472 days ago1732140347IN
0x68b42916...aa5Bc4026
0 ETH0.0007141114.46863803
Approve212313302024-11-20 20:27:472 days ago1732134467IN
0x68b42916...aa5Bc4026
0 ETH0.0008239316.6936274
Approve212251932024-11-19 23:53:353 days ago1732060415IN
0x68b42916...aa5Bc4026
0 ETH0.000304949.50338025
Approve212243082024-11-19 20:55:593 days ago1732049759IN
0x68b42916...aa5Bc4026
0 ETH0.0007346322.93727506
Approve212231732024-11-19 17:08:234 days ago1732036103IN
0x68b42916...aa5Bc4026
0 ETH0.0011258922.90643989
Approve212225012024-11-19 14:53:234 days ago1732028003IN
0x68b42916...aa5Bc4026
0 ETH0.0022132844.78875554
Approve212223612024-11-19 14:25:114 days ago1732026311IN
0x68b42916...aa5Bc4026
0 ETH0.0009025318.34859502
Approve212222472024-11-19 14:02:234 days ago1732024943IN
0x68b42916...aa5Bc4026
0 ETH0.0010782521.81987275
Approve212220252024-11-19 13:17:594 days ago1732022279IN
0x68b42916...aa5Bc4026
0 ETH0.0013324826.9647121
Approve212217512024-11-19 12:22:594 days ago1732018979IN
0x68b42916...aa5Bc4026
0 ETH0.0008884917.98
Approve212217232024-11-19 12:17:234 days ago1732018643IN
0x68b42916...aa5Bc4026
0 ETH0.0005052810.2250366
Approve212217002024-11-19 12:12:474 days ago1732018367IN
0x68b42916...aa5Bc4026
0 ETH0.0005472311.08753189
Approve212216862024-11-19 12:09:594 days ago1732018199IN
0x68b42916...aa5Bc4026
0 ETH0.0005456211.05485143
Approve212209102024-11-19 9:34:234 days ago1732008863IN
0x68b42916...aa5Bc4026
0 ETH0.000531510.81874236
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
170256192023-04-11 15:04:23592 days ago1681225463  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x85b37C6b...4dC2ADecA
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
InitializedProxy

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 1 : InitializedProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @title InitializedProxy
 * @author Anna Carroll
 */
contract InitializedProxy {
    // address of logic contract
    address public immutable logic;

    // ======== Constructor =========

    constructor(
        address _logic,
        bytes memory _initializationCalldata
    ) {
        logic = _logic;
        // Delegatecall into the logic contract, supplying initialization calldata
        (bool _ok, bytes memory returnData) =
            _logic.delegatecall(_initializationCalldata);
        // Revert if delegatecall to implementation reverts
        require(_ok, string(returnData));
    }

    // ======== Fallback =========

    fallback() external payable {
        address _impl = logic;
        assembly {
            let ptr := mload(0x40)
            calldatacopy(ptr, 0, calldatasize())
            let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0)
            let size := returndatasize()
            returndatacopy(ptr, 0, size)

            switch result
                case 0 {
                    revert(ptr, size)
                }
                default {
                    return(ptr, size)
                }
        }
    }

    // ======== Receive =========

    receive() external payable {} // solhint-disable-line no-empty-blocks
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_initializationCalldata","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"logic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.