ETH Price: $3,185.09 (-0.14%)

Contract

0x33A9063116f38F5a7Ac7890CEFaeA8dDD227520D
 

Overview

ETH Balance

0.001055412357014567 ETH

Eth Value

$3.36 (@ $3,185.09/ETH)

Token Holdings

Transaction Hash
Method
Block
From
To
Exec Transaction207568922024-09-15 15:24:11120 days ago1726413851IN
0x33A90631...DD227520D
0 ETH0.000997582.55330511
Exec Transaction207347432024-09-12 13:11:11123 days ago1726146671IN
0x33A90631...DD227520D
0 ETH0.000082781.76364522
Transfer207331532024-09-12 7:50:23123 days ago1726127423IN
0x33A90631...DD227520D
0.00509194 ETH0.000078332.86629286
Exec Transaction206184172024-08-27 7:26:35139 days ago1724743595IN
0x33A90631...DD227520D
0 ETH0.000553691.00281762
Exec Transaction206184052024-08-27 7:24:11139 days ago1724743451IN
0x33A90631...DD227520D
0 ETH0.000154490.81946523
Transfer206178602024-08-27 5:33:59140 days ago1724736839IN
0x33A90631...DD227520D
0.0009 ETH0.000023490.85986667

Latest 7 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
207568922024-09-15 15:24:11120 days ago1726413851
0x33A90631...DD227520D
0.001 ETH
207347432024-09-12 13:11:11123 days ago1726146671
0x33A90631...DD227520D
0.00153036 ETH
207347432024-09-12 13:11:11123 days ago1726146671
0x33A90631...DD227520D
0.002 ETH
206184172024-08-27 7:26:35139 days ago1724743595
0x33A90631...DD227520D
0.0007 ETH
206184052024-08-27 7:24:11139 days ago1724743451
0x33A90631...DD227520D
0.00017754 ETH
206184052024-08-27 7:24:11139 days ago1724743451
0x33A90631...DD227520D
0.00047138 ETH
206178522024-08-27 5:32:23140 days ago1724736743  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
SafeProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : SafeProxy.sol
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;

/**
 * @title IProxy - Helper interface to access the singleton address of the Proxy on-chain.
 * @author Richard Meissner - @rmeissner
 */
interface IProxy {
    function masterCopy() external view returns (address);
}

/**
 * @title SafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
 * @author Stefan George - <[email protected]>
 * @author Richard Meissner - <[email protected]>
 */
contract SafeProxy {
    // Singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
    address internal singleton;

    /**
     * @notice Constructor function sets address of singleton contract.
     * @param _singleton Singleton address.
     */
    constructor(address _singleton) {
        require(_singleton != address(0), "Invalid singleton address provided");
        singleton = _singleton;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    fallback() external payable {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            let _singleton := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) {
                mstore(0, _singleton)
                return(0, 0x20)
            }
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas(), _singleton, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) {
                revert(0, returndatasize())
            }
            return(0, returndatasize())
        }
    }
}

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

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

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
Chain Token Portfolio % Price Amount Value
ETH24.41%$3,257.560.00264109$8.6
ETH
Ether (ETH)
9.54%$3,185.090.00105541$3.36
BASE6.56%$3,185.120.00072629$2.31
BASE5.35%$3,168.290.00059507$1.89
BASE3.94%$1.021.3563$1.39
BASE3.73%$0.000002740,000$1.31
BASE3.33%$0.9999911.1747$1.17
BASE2.87%$0.9991071.0118$1.01
BASE1.62%$0.00914862.5176$0.5718
BASE1.39%$0.9999240.4883$0.4882
BASE0.29%$0.0168246.11$0.1027
BLAST7.60%$3,185.440.0008408$2.68
BLAST6.29%$0.9927762.2341$2.22
SCROLL6.36%$3,185.090.0007035$2.24
SCROLL3.58%$3,168.860.00039817$1.26
SCROLL2.66%$0.9999110.9372$0.9371
ARB2.84%$0.9999261$0.9999
ARB2.66%$3,169.210.00029602$0.9381
ARB2.20%$0.9976410.7768$0.7749
ARB2.16%$0.9999130.7608$0.7607
ARB0.64%$0.7194460.3123$0.2246
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.