ETH Price: $2,518.94 (+2.11%)

Contract

0x5ab912457042622494b110CaCFebd63fcfFa6620
 

Overview

ETH Balance

0.184953300604100819 ETH

Eth Value

$465.89 (@ $2,518.94/ETH)

Token Holdings

Transaction Hash
Method
Block
From
To
Exec Transaction206219912024-08-27 19:24:115 days ago1724786651IN
0x5ab91245...fcfFa6620
0 ETH0.000468811.42344995
Exec Transaction203644942024-07-22 20:36:1141 days ago1721680571IN
0x5ab91245...fcfFa6620
0 ETH0.002511317.85888538
Exec Transaction203641132024-07-22 19:19:2341 days ago1721675963IN
0x5ab91245...fcfFa6620
0 ETH0.000558257.31455228
Exec Transaction203641062024-07-22 19:17:5941 days ago1721675879IN
0x5ab91245...fcfFa6620
0 ETH0.002037917.06120021
Transfer203341952024-07-18 15:06:5945 days ago1721315219IN
0x5ab91245...fcfFa6620
0.005 ETH0.0007760128.39545659
Exec Transaction202922042024-07-12 18:25:3551 days ago1720808735IN
0x5ab91245...fcfFa6620
0 ETH0.000408752.73757751
Exec Transaction201796792024-06-27 1:16:2367 days ago1719450983IN
0x5ab91245...fcfFa6620
0 ETH0.001122373.90189063
Exec Transaction200654712024-06-11 2:01:4783 days ago1718071307IN
0x5ab91245...fcfFa6620
0 ETH0.0011297419.23303885
Exec Transaction200131802024-06-03 18:47:3590 days ago1717440455IN
0x5ab91245...fcfFa6620
0 ETH0.0006796511.57062947
Exec Transaction200131272024-06-03 18:36:5990 days ago1717439819IN
0x5ab91245...fcfFa6620
0 ETH0.0008559414.5747277
Exec Transaction200129442024-06-03 17:59:5990 days ago1717437599IN
0x5ab91245...fcfFa6620
0 ETH0.0006102510.3890516
Transfer200129342024-06-03 17:57:5990 days ago1717437479IN
0x5ab91245...fcfFa6620
0.2 ETH0.0003092711.31674016
Exec Transaction200128972024-06-03 17:50:3590 days ago1717437035IN
0x5ab91245...fcfFa6620
0 ETH0.0006666911.34998751
Exec Transaction200128772024-06-03 17:46:3590 days ago1717436795IN
0x5ab91245...fcfFa6620
0 ETH0.0006471311.01695
Transfer200128682024-06-03 17:44:4790 days ago1717436687IN
0x5ab91245...fcfFa6620
0.1 ETH0.0002893710.58844831
Exec Transaction200127072024-06-03 17:12:2390 days ago1717434743IN
0x5ab91245...fcfFa6620
0 ETH0.0010226613.48452373
Transfer200126932024-06-03 17:09:3590 days ago1717434575IN
0x5ab91245...fcfFa6620
0.01 ETH0.0003897314.26075964

Latest 11 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
203644942024-07-22 20:36:1141 days ago1721680571
0x5ab91245...fcfFa6620
0.0550483 ETH
203641062024-07-22 19:17:5941 days ago1721675879
0x5ab91245...fcfFa6620
0.005 ETH
201796792024-06-27 1:16:2367 days ago1719450983
0x5ab91245...fcfFa6620
0.000595 ETH
200654712024-06-11 2:01:4783 days ago1718071307
0x5ab91245...fcfFa6620
0.002 ETH
200131802024-06-03 18:47:3590 days ago1717440455
0x5ab91245...fcfFa6620
0.0045 ETH
200131272024-06-03 18:36:5990 days ago1717439819
0x5ab91245...fcfFa6620
0.01 ETH
200129442024-06-03 17:59:5990 days ago1717437599
0x5ab91245...fcfFa6620
0.08 ETH
200128972024-06-03 17:50:3590 days ago1717437035
0x5ab91245...fcfFa6620
0.053 ETH
200128772024-06-03 17:46:3590 days ago1717436795
0x5ab91245...fcfFa6620
0.026 ETH
200127072024-06-03 17:12:2390 days ago1717434743
0x5ab91245...fcfFa6620
0.004 ETH
198271712024-05-08 18:37:23116 days ago1715193443  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
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.