ETH Price: $3,589.90 (+3.71%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...215192792024-12-31 1:49:474 days ago1735609787IN
0x23294eF5...73781f207
0 ETH0.000136894.7
Safe Transfer Fr...203441032024-07-20 0:16:23168 days ago1721434583IN
0x23294eF5...73781f207
0 ETH0.000195843.8916924
Set Approval For...203440782024-07-20 0:11:11168 days ago1721434271IN
0x23294eF5...73781f207
0 ETH0.000222714.36981085
Set Approval For...202976002024-07-13 12:30:59174 days ago1720873859IN
0x23294eF5...73781f207
0 ETH0.000060752.09119924
Set Approval For...202441572024-07-06 1:21:59182 days ago1720228919IN
0x23294eF5...73781f207
0 ETH0.000177573.4841763
Approve202041072024-06-30 11:08:59187 days ago1719745739IN
0x23294eF5...73781f207
0 ETH0.000194313.61494568
Set Approval For...192620842024-02-19 13:30:23319 days ago1708349423IN
0x23294eF5...73781f207
0 ETH0.0015471853.25194744
Set Approval For...192266342024-02-14 13:55:23324 days ago1707918923IN
0x23294eF5...73781f207
0 ETH0.0016877133.11449597
Set Approval For...189495922024-01-06 17:21:35363 days ago1704561695IN
0x23294eF5...73781f207
0 ETH0.0006879623.61056259
Set Approval For...187479222023-12-09 9:57:23391 days ago1702115843IN
0x23294eF5...73781f207
0 ETH0.0009909134.10587273
Safe Transfer Fr...185898542023-11-17 6:35:59413 days ago1700202959IN
0x23294eF5...73781f207
0 ETH0.0009567618.98831361
Safe Transfer Fr...185896252023-11-17 5:49:23413 days ago1700200163IN
0x23294eF5...73781f207
0 ETH0.000910818.07615503
Transfer From183491612023-10-14 14:17:59447 days ago1697293079IN
0x23294eF5...73781f207
0 ETH0.000368085.69365198
Set Approval For...183389432023-10-13 3:57:47448 days ago1697169467IN
0x23294eF5...73781f207
0 ETH0.000318186.24309327
Transfer From183200322023-10-10 12:23:47451 days ago1696940627IN
0x23294eF5...73781f207
0 ETH0.00058168.37317549
Safe Transfer Fr...182391522023-09-29 4:59:59462 days ago1695963599IN
0x23294eF5...73781f207
0 ETH0.000450156.61343555
Safe Transfer Fr...181408042023-09-15 9:43:11476 days ago1694770991IN
0x23294eF5...73781f207
0 ETH0.0007101910.43562028
Safe Transfer Fr...177908102023-07-28 9:57:59525 days ago1690538279IN
0x23294eF5...73781f207
0 ETH0.0010538120.68136133
Safe Transfer Fr...177907822023-07-28 9:52:23525 days ago1690537943IN
0x23294eF5...73781f207
0 ETH0.0009511118.66579522
Safe Transfer Fr...177907332023-07-28 9:42:35525 days ago1690537355IN
0x23294eF5...73781f207
0 ETH0.0011091621.76759785
Set Approval For...176369632023-07-06 19:45:35547 days ago1688672735IN
0x23294eF5...73781f207
0 ETH0.0013498726.4858508
Set Approval For...174986702023-06-17 9:35:35566 days ago1686994535IN
0x23294eF5...73781f207
0 ETH0.0008156316.0034541
Set Approval For...174575132023-06-11 14:38:35572 days ago1686494315IN
0x23294eF5...73781f207
0 ETH0.0008472416.62374873
Safe Transfer Fr...173849632023-06-01 9:06:11582 days ago1685610371IN
0x23294eF5...73781f207
0 ETH0.0021384731.42823415
Set Approval For...173540852023-05-28 0:54:47587 days ago1685235287IN
0x23294eF5...73781f207
0 ETH0.0011123121.82461646
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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  ]

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.