ETH Price: $1,792.78 (+10.29%)

Contract

0x41C327d5fc9e29680CcD45e5E52446E0DB3DAdFd

Overview

ETH Balance

30.370645091125302373 ETH

ETH Value

$54,447.99 (@ $1,792.78/ETH)

Multichain Info

No addresses found
Amount:Between 1-10k
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
833695572025-04-18 14:21:334 days ago1744986093
0x41C327d5...0DB3DAdFd
0.00496296 ETH
832487122025-04-09 17:04:0613 days ago1744218246
0x41C327d5...0DB3DAdFd
0.00389245 ETH
831522012025-04-02 17:04:0620 days ago1743613446
0x41C327d5...0DB3DAdFd
0.01356821 ETH
828309642025-03-19 17:04:1034 days ago1742403850
0x41C327d5...0DB3DAdFd
0.0112567 ETH
826936332025-03-12 17:04:0941 days ago1741799049
0x41C327d5...0DB3DAdFd
0.01721731 ETH
825590632025-03-05 18:04:0848 days ago1741197848
0x41C327d5...0DB3DAdFd
0.01341745 ETH
824614412025-02-26 18:04:0855 days ago1740593048
0x41C327d5...0DB3DAdFd
0.0233162 ETH
822682372025-02-12 18:04:0769 days ago1739383447
0x41C327d5...0DB3DAdFd
0.01031344 ETH
821509542025-02-05 18:04:0876 days ago1738778648
0x41C327d5...0DB3DAdFd
0.01113582 ETH
820300282025-01-29 18:04:4683 days ago1738173886
0x41C327d5...0DB3DAdFd
0.03022348 ETH
816368502025-01-15 18:04:0897 days ago1736964248
0x41C327d5...0DB3DAdFd
0.01487266 ETH
814420882025-01-08 18:04:07104 days ago1736359447
0x41C327d5...0DB3DAdFd
0.00199808 ETH
814169242025-01-07 21:41:36105 days ago1736286096
0x41C327d5...0DB3DAdFd
0.11303744 ETH
801221452024-11-28 11:53:29145 days ago1732794809
0x41C327d5...0DB3DAdFd
0.07311184 ETH
791750782024-10-30 15:45:02174 days ago1730303102
0x41C327d5...0DB3DAdFd
0.08157525 ETH
771313472024-09-27 13:17:05207 days ago1727443025
0x41C327d5...0DB3DAdFd
0.05753484 ETH
754140842024-08-28 1:45:31238 days ago1724809531
0x41C327d5...0DB3DAdFd
0.03226659 ETH
748421102024-08-04 0:01:06262 days ago1722729666
0x41C327d5...0DB3DAdFd
0.04796172 ETH
739529292024-07-07 0:01:06290 days ago1720310466
0x41C327d5...0DB3DAdFd
0.04002503 ETH
732058922024-06-16 0:01:05311 days ago1718496065
0x41C327d5...0DB3DAdFd
0.59034338 ETH
724923622024-06-02 0:01:06325 days ago1717286466
0x41C327d5...0DB3DAdFd
1.03817464 ETH
714612412024-05-26 0:01:07332 days ago1716681667
0x41C327d5...0DB3DAdFd
1.32367102 ETH
704586572024-05-19 0:01:06339 days ago1716076866
0x41C327d5...0DB3DAdFd
1.57581104 ETH
695047672024-05-12 0:01:06346 days ago1715472066
0x41C327d5...0DB3DAdFd
1.57513663 ETH
684824642024-05-05 0:01:07353 days ago1714867267
0x41C327d5...0DB3DAdFd
1.56280975 ETH
View All Internal Transactions

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x3cA27a79...41812B2cd
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

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

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