ETH Price: $3,393.52 (+1.76%)

Contract

0x762F5C8137C445164c53e138da33032C21F44D65
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...214522492024-12-21 17:02:237 days ago1734800543IN
0x762F5C81...C21F44D65
0 ETH0.00042628.36050243
Safe Transfer Fr...186270202023-11-22 11:36:47402 days ago1700653007IN
0x762F5C81...C21F44D65
0 ETH0.0019658629.15718418
Set Approval For...162735232022-12-27 3:53:35732 days ago1672113215IN
0x762F5C81...C21F44D65
0 ETH0.0006116812.00184098
Set Approval For...160410502022-11-24 16:31:59765 days ago1669307519IN
0x762F5C81...C21F44D65
0 ETH0.0009543318.7250157
Set Approval For...157836532022-10-19 17:29:59801 days ago1666200599IN
0x762F5C81...C21F44D65
0 ETH0.0031503161.81214764
Safe Transfer Fr...157061882022-10-08 21:54:11811 days ago1665266051IN
0x762F5C81...C21F44D65
0 ETH0.0025643732.53997099
Set Approval For...157056172022-10-08 19:59:23812 days ago1665259163IN
0x762F5C81...C21F44D65
0 ETH0.00235546.20729022
Set Approval For...148392562022-05-25 2:24:01948 days ago1653445441IN
0x762F5C81...C21F44D65
0 ETH0.0013299626.05221184
Set Approval For...146369672022-04-22 21:05:10980 days ago1650661510IN
0x762F5C81...C21F44D65
0 ETH0.0042935184.10410863
Set Approval For...146062832022-04-18 1:39:33985 days ago1650245973IN
0x762F5C81...C21F44D65
0 ETH0.0014833129.05606119
Transfer From144637902022-03-26 19:50:471008 days ago1648324247IN
0x762F5C81...C21F44D65
0 ETH0.0025472739.4088874
Set Approval For...142396792022-02-20 0:26:201042 days ago1645316780IN
0x762F5C81...C21F44D65
0 ETH0.0034988468.53761686
Set Approval For...141332342022-02-03 13:16:521059 days ago1643894212IN
0x762F5C81...C21F44D65
0 ETH0.0034955868.4897842
Set Approval For...140795392022-01-26 6:03:231067 days ago1643177003IN
0x762F5C81...C21F44D65
0 ETH0.005067699.26751037
Set Approval For...140210642022-01-17 5:15:561076 days ago1642396556IN
0x762F5C81...C21F44D65
0 ETH0.00540775105.93061278

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
140020282022-01-14 6:23:521079 days ago1642141432  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
MirrorProxy

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-12-05
*/

// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.10;

/**
 * @title MirrorProxy
 * @author MirrorXYZ
 * The MirrorProxy contract is used to deploy minimal proxies.
 */
contract MirrorProxy {
    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT =
        0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @notice Initializes a proxy by delegating logic to the implementation,
     * and reverts if the call is not successful. Stores implementation logic.
     * @param implementation - the implementation holds the logic for all proxies
     * @param initializationData - initialization call
     */
    constructor(address implementation, bytes memory initializationData) {
        // Delegatecall into the implementation, supplying initialization calldata.
        (bool ok, ) = implementation.delegatecall(initializationData);

        // Revert and include revert data if delegatecall to implementation reverts.
        if (!ok) {
            assembly {
                returndatacopy(0, 0, returndatasize())
                revert(0, returndatasize())
            }
        }

        assembly {
            sstore(_IMPLEMENTATION_SLOT, implementation)
        }
    }

    /**
     * @notice When any function is called on this contract, we delegate to
     * the logic contract stored in the implementation storage slot.
     */
    fallback() external payable {
        assembly {
            let ptr := mload(0x40)
            calldatacopy(ptr, 0, calldatasize())
            let result := delegatecall(
                gas(),
                sload(_IMPLEMENTATION_SLOT),
                ptr,
                calldatasize(),
                0,
                0
            )
            let size := returndatasize()
            returndatacopy(ptr, 0, size)

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"initializationData","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x6080604052604051366000823760008036837f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc545af43d806000843e8180156045578184f35b8184fdfea264697066735822122036b5b33695501d38010c0c4b54421ed69b6a79f3a7d5575de37b45130d39e15b64736f6c634300080a0033

Deployed Bytecode Sourcemap

192:2092:0:-:0;;;1730:4;1724:11;1770:14;1767:1;1762:3;1749:36;1989:1;1969;1936:14;1914:3;1874:20;1868:27;1844:5;1813:192;2031:16;2084:4;2081:1;2076:3;2061:28;2112:6;2132:58;;;;2243:4;2238:3;2231:17;2132:58;2170:4;2165:3;2158:17

Swarm Source

ipfs://36b5b33695501d38010c0c4b54421ed69b6a79f3a7d5575de37b45130d39e15b

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.