ETH Price: $2,645.79 (-0.28%)

Contract

0x86D7075099c09d67Ae6de1674CF26462CfaFC961
 

Overview

ETH Balance

5.973504458982671011 ETH

Eth Value

$15,804.61 (@ $2,645.79/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction209946732024-10-18 19:55:1119 hrs ago1729281311IN
0x86D70750...2CfaFC961
0 ETH0.000795414.47796053
Exec Transaction209918432024-10-18 10:26:4729 hrs ago1729247207IN
0x86D70750...2CfaFC961
0 ETH0.0017537621.93881289
Exec Transaction209886722024-10-17 23:49:3539 hrs ago1729208975IN
0x86D70750...2CfaFC961
0 ETH0.0011591612.79940798
Exec Transaction209886342024-10-17 23:41:5939 hrs ago1729208519IN
0x86D70750...2CfaFC961
0 ETH0.0018900711.95997868

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
209981232024-10-19 7:28:478 hrs ago1729322927
0x86D70750...2CfaFC961
0.11531093 ETH
209949752024-10-18 20:55:4718 hrs ago1729284947
0x86D70750...2CfaFC961
0.0497469 ETH
209946732024-10-18 19:55:1119 hrs ago1729281311
0x86D70750...2CfaFC961
0.4 ETH
209944792024-10-18 19:16:2320 hrs ago1729278983
0x86D70750...2CfaFC961
0.03403686 ETH
209942562024-10-18 18:31:3520 hrs ago1729276295
0x86D70750...2CfaFC961
0.22491363 ETH
209918432024-10-18 10:26:4729 hrs ago1729247207
0x86D70750...2CfaFC961
0.4 ETH
209913022024-10-18 8:38:2330 hrs ago1729240703
0x86D70750...2CfaFC961
0.09307932 ETH
209894642024-10-18 2:28:2337 hrs ago1729218503
0x86D70750...2CfaFC961
0.09788788 ETH
209886342024-10-17 23:41:5939 hrs ago1729208519
0x86D70750...2CfaFC961
5 ETH
209883672024-10-17 22:48:1140 hrs ago1729205291
0x86D70750...2CfaFC961
0.05080327 ETH
209878062024-10-17 20:54:5942 hrs ago1729198499
0x86D70750...2CfaFC961
0.00252897 ETH
209878012024-10-17 20:53:5942 hrs ago1729198439
0x86D70750...2CfaFC961
0.02224079 ETH
209877982024-10-17 20:53:2342 hrs ago1729198403
0x86D70750...2CfaFC961
0.04929826 ETH
209877942024-10-17 20:52:3542 hrs ago1729198355
0x86D70750...2CfaFC961
0.05071844 ETH
209877922024-10-17 20:52:1142 hrs ago1729198331
0x86D70750...2CfaFC961
0.0522009 ETH
209877902024-10-17 20:51:4742 hrs ago1729198307
0x86D70750...2CfaFC961
0.05374937 ETH
209877882024-10-17 20:51:2342 hrs ago1729198283
0x86D70750...2CfaFC961
0.05536781 ETH
209877832024-10-17 20:50:2342 hrs ago1729198223
0x86D70750...2CfaFC961
0.0570605 ETH
209877812024-10-17 20:49:5942 hrs ago1729198199
0x86D70750...2CfaFC961
0.05883206 ETH
209877782024-10-17 20:49:2342 hrs ago1729198163
0x86D70750...2CfaFC961
0.06068747 ETH
209877762024-10-17 20:48:5942 hrs ago1729198139
0x86D70750...2CfaFC961
0.06263211 ETH
209877732024-10-17 20:48:2342 hrs ago1729198103
0x86D70750...2CfaFC961
0.06467178 ETH
209877722024-10-17 20:48:1142 hrs ago1729198091
0x86D70750...2CfaFC961
0.0668128 ETH
209877692024-10-17 20:47:3542 hrs ago1729198055
0x86D70750...2CfaFC961
0.06906198 ETH
209877672024-10-17 20:47:1142 hrs ago1729198031
0x86D70750...2CfaFC961
0.07142674 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

[{"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.