ETH Price: $3,340.11 (+0.34%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer120711682021-03-19 19:45:251383 days ago1616183125IN
0xB939d8df...c2f6d1B3d
50 ETH0.00441446190
Transfer94820312020-02-14 15:45:441782 days ago1581695144IN
0xB939d8df...c2f6d1B3d
10 ETH0.00020919
Transfer94430832020-02-08 16:12:481788 days ago1581178368IN
0xB939d8df...c2f6d1B3d
0.2 ETH0.00013946
Transfer93959062020-02-01 10:08:201795 days ago1580551700IN
0xB939d8df...c2f6d1B3d
0.989 ETH0.000116175
Transfer93958952020-02-01 10:06:151795 days ago1580551575IN
0xB939d8df...c2f6d1B3d
0.01 ETH0.000116175

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
203902212024-07-26 10:47:11158 days ago1721990831
0xB939d8df...c2f6d1B3d
0.00271914 ETH
194690112024-03-19 13:11:59287 days ago1710853919
0xB939d8df...c2f6d1B3d
0.00893348 ETH
194690112024-03-19 13:11:59287 days ago1710853919
0xB939d8df...c2f6d1B3d
9.0302289 ETH
194690032024-03-19 13:10:23287 days ago1710853823
0xB939d8df...c2f6d1B3d
0.01649998 ETH
194690032024-03-19 13:10:23287 days ago1710853823
0xB939d8df...c2f6d1B3d
0.04296746 ETH
194690032024-03-19 13:10:23287 days ago1710853823
0xB939d8df...c2f6d1B3d
8.63268728 ETH
194689922024-03-19 13:08:11287 days ago1710853691
0xB939d8df...c2f6d1B3d
0.01750792 ETH
194505662024-03-16 22:58:35290 days ago1710629915
0xB939d8df...c2f6d1B3d
0.00513473 ETH
194505662024-03-16 22:58:35290 days ago1710629915
0xB939d8df...c2f6d1B3d
32 ETH
194505572024-03-16 22:56:47290 days ago1710629807
0xB939d8df...c2f6d1B3d
0.01779602 ETH
194505572024-03-16 22:56:47290 days ago1710629807
0xB939d8df...c2f6d1B3d
0.0385111 ETH
194505572024-03-16 22:56:47290 days ago1710629807
0xB939d8df...c2f6d1B3d
7.740819 ETH
194505502024-03-16 22:55:23290 days ago1710629723
0xB939d8df...c2f6d1B3d
0.0110513 ETH
191066422024-01-28 17:52:23338 days ago1706464343
0xB939d8df...c2f6d1B3d
0.00658946 ETH
191066422024-01-28 17:52:23338 days ago1706464343
0xB939d8df...c2f6d1B3d
0.12060112 ETH
191066422024-01-28 17:52:23338 days ago1706464343
0xB939d8df...c2f6d1B3d
24.24124083 ETH
191066272024-01-28 17:49:23338 days ago1706464163
0xB939d8df...c2f6d1B3d
0.00547992 ETH
189292652024-01-03 20:40:59363 days ago1704314459
0xB939d8df...c2f6d1B3d
0.00931027 ETH
188770492023-12-27 12:38:47370 days ago1703680727
0xB939d8df...c2f6d1B3d
0.00580564 ETH
188770492023-12-27 12:38:47370 days ago1703680727
0xB939d8df...c2f6d1B3d
52 ETH
188770462023-12-27 12:38:11370 days ago1703680691
0xB939d8df...c2f6d1B3d
0.0135489 ETH
188769952023-12-27 12:27:47370 days ago1703680067
0xB939d8df...c2f6d1B3d
11.92931294 ETH
168009532023-03-10 23:20:59662 days ago1678490459
0xB939d8df...c2f6d1B3d
0.03146202 ETH
168009532023-03-10 23:20:59662 days ago1678490459
0xB939d8df...c2f6d1B3d
0.17280913 ETH
168009532023-03-10 23:20:59662 days ago1678490459
0xB939d8df...c2f6d1B3d
34.21708149 ETH
View All Internal Transactions
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 999 runs

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

pragma solidity ^0.4.24;

/**
 * @title Proxy
 * @dev Basic proxy that delegates all calls to a fixed implementing contract.
 * The implementing contract cannot be upgraded.
 * @author Julien Niset - <[email protected]>
 */
contract Proxy {

    address implementation;

    event Received(uint indexed value, address indexed sender, bytes data);

    constructor(address _implementation) public {
        implementation = _implementation;
    }

    function() external payable {

        if(msg.data.length == 0 && msg.value > 0) { 
            emit Received(msg.value, msg.sender, msg.data); 
        }
        else {
            // solium-disable-next-line security/no-inline-assembly
            assembly {
                let target := sload(0)
                calldatacopy(0, 0, calldatasize())
                let result := delegatecall(gas, target, 0, calldatasize(), 0, 0)
                returndatacopy(0, 0, returndatasize())
                switch result 
                case 0 {revert(0, returndatasize())} 
                default {return (0, returndatasize())}
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"name":"_implementation","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"value","type":"uint256"},{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Received","type":"event"}]

Deployed Bytecode

0x60806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029

Swarm Source

bzzr://09ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f

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.