ETH Price: $3,057.00 (-7.58%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction210500402024-10-26 13:17:1192 days ago1729948631IN
0x2B3dD79E...e397cbB4b
0 ETH0.000327425.71684878
Exec Transaction210500332024-10-26 13:15:4792 days ago1729948547IN
0x2B3dD79E...e397cbB4b
0 ETH0.000650515.7888417
Exec Transaction210500262024-10-26 13:14:2392 days ago1729948463IN
0x2B3dD79E...e397cbB4b
0 ETH0.000785965.87213792
Exec Transaction179690552023-08-22 8:26:59524 days ago1692692819IN
0x2B3dD79E...e397cbB4b
0 ETH0.0054708221.22827388
Exec Transaction156448832022-09-30 8:13:35850 days ago1664525615IN
0x2B3dD79E...e397cbB4b
0 ETH0.00223619.22410934
Exec Transaction89151412019-11-11 15:19:311903 days ago1573485571IN
0x2B3dD79E...e397cbB4b
0 ETH0.000050011.1
Exec Transaction89150732019-11-11 15:05:101903 days ago1573484710IN
0x2B3dD79E...e397cbB4b
0 ETH0.000181393
Transfer89150692019-11-11 15:04:241903 days ago1573484664IN
0x2B3dD79E...e397cbB4b
0.001 ETH0.000044072

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
210500402024-10-26 13:17:1192 days ago1729948631
0x2B3dD79E...e397cbB4b
0.15159546 ETH
210500352024-10-26 13:16:1192 days ago1729948571
0x2B3dD79E...e397cbB4b
0.15061546 ETH
89151412019-11-11 15:19:311903 days ago1573485571
0x2B3dD79E...e397cbB4b
0.00001 ETH
89150732019-11-11 15:05:101903 days ago1573484710
0x2B3dD79E...e397cbB4b
0.00001 ETH
89146842019-11-11 13:34:151903 days ago1573479255  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.5.7+commit.6da8b019

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-04-12
*/

pragma solidity ^0.5.0;


/// @title Proxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <[email protected]>
contract Proxy {

    // masterCopy 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 masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)
        public
    {
        require(_masterCopy != address(0), "Invalid master copy address provided");
        masterCopy = _masterCopy;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    function ()
        external
        payable
    {
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas, masterCopy, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) { revert(0, returndatasize()) }
            return(0, returndatasize())
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"name":"_masterCopy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e6000811415603d573d6000fd5b3d6000f3fea165627a7a723058201e7d648b83cfac072cbccefc2ffc62a6999d4a050ee87a721942de1da9670db80029

Swarm Source

bzzr://1e7d648b83cfac072cbccefc2ffc62a6999d4a050ee87a721942de1da9670db8

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.