ETH Price: $1,799.85 (+13.64%)

Contract

0x123C13E7940851510C899a457476eC5aab2c3402
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
3292486172025-04-23 3:41:222 hrs ago1745379682
0x123C13E7...aab2c3402
0.0000095 ETH
3292155222025-04-23 1:23:544 hrs ago1745371434
0x123C13E7...aab2c3402
0.00000009 ETH
3292145432025-04-23 1:19:414 hrs ago1745371181
0x123C13E7...aab2c3402
0.00002102 ETH
3292143522025-04-23 1:18:524 hrs ago1745371132
0x123C13E7...aab2c3402
0.00001148 ETH
3292074572025-04-23 0:50:175 hrs ago1745369417
0x123C13E7...aab2c3402
0.00000003 ETH
3292041112025-04-23 0:36:065 hrs ago1745368566
0x123C13E7...aab2c3402
0.00000001 ETH
3291952492025-04-22 23:59:075 hrs ago1745366347
0x123C13E7...aab2c3402
0.00009014 ETH
3291922162025-04-22 23:46:276 hrs ago1745365587
0x123C13E7...aab2c3402
0.00012124 ETH
3291761602025-04-22 22:39:117 hrs ago1745361551
0x123C13E7...aab2c3402
0 ETH
3291611962025-04-22 21:36:398 hrs ago1745357799
0x123C13E7...aab2c3402
0.00000014 ETH
3291596982025-04-22 21:30:258 hrs ago1745357425
0x123C13E7...aab2c3402
0.00004908 ETH
3291596982025-04-22 21:30:258 hrs ago1745357425
0x123C13E7...aab2c3402
0.00008832 ETH
3291555762025-04-22 21:13:108 hrs ago1745356390
0x123C13E7...aab2c3402
0.0000497 ETH
3291555762025-04-22 21:13:108 hrs ago1745356390
0x123C13E7...aab2c3402
0.00000732 ETH
3291377602025-04-22 19:58:319 hrs ago1745351911
0x123C13E7...aab2c3402
0.00014631 ETH
3291377602025-04-22 19:58:319 hrs ago1745351911
0x123C13E7...aab2c3402
0.00005637 ETH
3291331422025-04-22 19:39:1110 hrs ago1745350751
0x123C13E7...aab2c3402
0.00000034 ETH
3291322312025-04-22 19:35:2310 hrs ago1745350523
0x123C13E7...aab2c3402
0.00005975 ETH
3291322312025-04-22 19:35:2310 hrs ago1745350523
0x123C13E7...aab2c3402
0.00000014 ETH
3291239302025-04-22 19:00:4510 hrs ago1745348445
0x123C13E7...aab2c3402
0.00002828 ETH
3291239302025-04-22 19:00:4510 hrs ago1745348445
0x123C13E7...aab2c3402
0.0000072 ETH
3291154832025-04-22 18:25:2911 hrs ago1745346329
0x123C13E7...aab2c3402
0.00027339 ETH
3291154832025-04-22 18:25:2911 hrs ago1745346329
0x123C13E7...aab2c3402
0.00003641 ETH
3291151782025-04-22 18:24:1311 hrs ago1745346253
0x123C13E7...aab2c3402
0.00063014 ETH
3291151782025-04-22 18:24:1311 hrs ago1745346253
0x123C13E7...aab2c3402
0.00016656 ETH
View All Internal Transactions

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

API
[{"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
ARB33.70%$0.999896300.8337$300.8
ARB
Ether (ETH)
31.56%$1,799.970.1565$281.65
ARB19.48%$3.5548.9775$173.87
ARB3.19%$0.029635960.8937$28.48
ARB2.00%$163.960.1089$17.85
ARB1.27%$0.091528123.8721$11.34
ARB1.11%$14.580.6805$9.92
ARB0.80%$0.33211721.4887$7.14
ARB0.71%$16.3191$6.32
ARB0.39%$13.5074$3.51
ARB0.37%$2.731.2192$3.33
ARB0.21%$11.914$1.92
ARB0.20%$93,3410.00001883$1.76
ARB0.10%$0.0605114.557$0.8808
ARB0.05%$1,807.480.00025532$0.4614
ARB0.04%$14.990.0233$0.3491
ARB0.02%$5.980.0248$0.1484
BASE1.77%$0.99989815.8199$15.82
BASE1.76%$1,799.970.00873993$15.73
BASE0.49%$0.12724534.4566$4.38
BASE0.41%$0.7844284.6687$3.66
BASE0.14%$93,4020.00001322$1.23
BASE0.13%$0.4872932.4464$1.19
BASE0.09%$0.1115417.2109$0.8043
UNI<0.01%$1,799.910.0000000155$0.000028
Loading...
Loading
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.