ETH Price: $2,067.84 (-4.42%)

Contract

0x2a01DC1eFee95CF43B71b01FAB7b2f640747A9cf
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Execute213841512024-12-12 4:51:23469 days ago1733979083IN
0x2a01DC1e...40747A9cf
0 ETH0.0013399415.22113746
Execute213841422024-12-12 4:49:35469 days ago1733978975IN
0x2a01DC1e...40747A9cf
0 ETH0.0024126515.45324352
Execute213274722024-12-04 6:54:11477 days ago1733295251IN
0x2a01DC1e...40747A9cf
0 ETH0.0025115818.86095566
Execute204976902024-08-10 10:43:59593 days ago1723286639IN
0x2a01DC1e...40747A9cf
0 ETH0.000058631.08133392
Transfer198651452024-05-14 2:02:59681 days ago1715652179IN
0x2a01DC1e...40747A9cf
0.1 ETH0.000121074.01924167
Execute198195642024-05-07 17:05:23688 days ago1715101523IN
0x2a01DC1e...40747A9cf
0 ETH0.000694678.75694833
Execute198195642024-05-07 17:05:23688 days ago1715101523IN
0x2a01DC1e...40747A9cf
0 ETH0.001743298.75694833
Execute198195622024-05-07 17:04:59688 days ago1715101499IN
0x2a01DC1e...40747A9cf
0 ETH0.000652377.83978336
Execute198194682024-05-07 16:45:59688 days ago1715100359IN
0x2a01DC1e...40747A9cf
0 ETH0.001155977.21907053
Transfer198193812024-05-07 16:28:23688 days ago1715099303IN
0x2a01DC1e...40747A9cf
0.2 ETH0.000337926.73762291

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer204976902024-08-10 10:43:59593 days ago1723286639
0x2a01DC1e...40747A9cf
0.1 ETH
Deposit198194682024-05-07 16:45:59688 days ago1715100359
0x2a01DC1e...40747A9cf
0.2 ETH
0x3d60ad80198187192024-05-07 14:14:35688 days ago1715091275  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

Minimal Proxy Contract for 0x93a1222f62de5b6012af8b4fdd3d2053c5500934

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

Contract Name:
Proxy

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 2 : Proxy.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.21;

import {ERC6551Proxy} from "solady/accounts/ERC6551Proxy.sol";

contract Proxy is ERC6551Proxy {
    constructor(address _implementation) ERC6551Proxy(_implementation) {}
}

File 2 of 2 : ERC6551Proxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Relay proxy for upgradeable ERC6551 accounts.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/accounts/ERC6551Proxy.sol)
/// @author ERC6551 team (https://github.com/erc6551/reference/blob/main/src/examples/upgradeable/ERC6551AccountProxy.sol)
///
/// @dev Note: This relay proxy is required for upgradeable ERC6551 accounts.
///
/// ERC6551 clone -> ERC6551Proxy (relay) -> ERC6551 account implementation.
///
/// This relay proxy also allows for correctly revealing the
/// "Read as Proxy" and "Write as Proxy" tabs on Etherscan.
///
/// After using the registry to deploy a ERC6551 clone pointing to this relay proxy,
/// users must send 0 ETH to the clone before clicking on "Is this a proxy?" on Etherscan.
/// Verification of this relay proxy on Etherscan is optional.
contract ERC6551Proxy {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         IMMUTABLES                         */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The default implementation.
    bytes32 internal immutable _defaultImplementation;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                          STORAGE                           */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The ERC-1967 storage slot for the implementation in the proxy.
    /// `uint256(keccak256("eip1967.proxy.implementation")) - 1`.
    bytes32 internal constant _ERC1967_IMPLEMENTATION_SLOT =
        0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                        CONSTRUCTOR                         */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    constructor(address defaultImplementation) payable {
        _defaultImplementation = bytes32(uint256(uint160(defaultImplementation)));
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                          FALLBACK                          */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    fallback() external payable virtual {
        bytes32 implementation;
        assembly {
            mstore(0x40, returndatasize()) // Optimization trick to change `6040608052` into `3d604052`.
            implementation := sload(_ERC1967_IMPLEMENTATION_SLOT)
        }
        if (implementation == bytes32(0)) {
            implementation = _defaultImplementation;
            assembly {
                // Only initialize if the calldatasize is zero, so that staticcalls to
                // functions (which will have 4-byte function selectors) won't revert.
                // Some users may be fine without Etherscan proxy detection and thus may
                // choose to not initialize the ERC1967 implementation slot.
                if iszero(calldatasize()) { sstore(_ERC1967_IMPLEMENTATION_SLOT, implementation) }
            }
        }
        assembly {
            calldatacopy(returndatasize(), returndatasize(), calldatasize())
            // forgefmt: disable-next-item
            if iszero(delegatecall(gas(), implementation,
                returndatasize(), calldatasize(), codesize(), returndatasize())) {
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }
            returndatacopy(0x00, 0x00, returndatasize())
            return(0x00, returndatasize())
        }
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

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.