ETH Price: $1,914.08 (+0.99%)
 

Overview

ETH Balance

0.000122663555346607 ETH

Eth Value

$0.23 (@ $1,914.08/ETH)
Transaction Hash
Method
Block
From
To
Transfer81587382019-07-16 0:21:342071 days ago1563236494IN
0x2D23347b...D1B8a6E54
0.001 ETH0.0002323410
Transfer81400312019-07-13 2:35:412074 days ago1562985341IN
0x2D23347b...D1B8a6E54
12 ETH0.000092934
Transfer81078062019-07-08 2:01:472079 days ago1562551307IN
0x2D23347b...D1B8a6E54
8 ETH0.000116175
Transfer81077912019-07-08 1:58:062079 days ago1562551086IN
0x2D23347b...D1B8a6E54
2 ETH0.000116175
Transfer80859902019-07-04 16:46:122082 days ago1562258772IN
0x2D23347b...D1B8a6E54
0.003 ETH0.000092934

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer207553432024-09-15 10:13:23183 days ago1726395203
0x2D23347b...D1B8a6E54
0.00035015 ETH
Deposit207553432024-09-15 10:13:23183 days ago1726395203
0x2D23347b...D1B8a6E54
0.99838425 ETH
Transfer171413672023-04-28 1:28:59689 days ago1682645339
0x2D23347b...D1B8a6E54
0.00499825 ETH
Transfer171413672023-04-28 1:28:59689 days ago1682645339
0x2D23347b...D1B8a6E54
0.98 ETH
Transfer166634412023-02-19 15:11:11757 days ago1676819471
0x2D23347b...D1B8a6E54
0.00504508 ETH
Transfer163840382023-01-11 14:02:35796 days ago1673445755
0x2D23347b...D1B8a6E54
0.00329654 ETH
Transfer162798792022-12-28 1:11:11810 days ago1672189871
0x2D23347b...D1B8a6E54
0.00180484 ETH
Transfer162727622022-12-27 1:19:59811 days ago1672103999
0x2D23347b...D1B8a6E54
0.00335986 ETH
Transfer162677342022-12-26 8:28:11812 days ago1672043291
0x2D23347b...D1B8a6E54
0.00179974 ETH
Transfer162675812022-12-26 7:57:35812 days ago1672041455
0x2D23347b...D1B8a6E54
0.00111273 ETH
Transfer162675592022-12-26 7:53:11812 days ago1672041191
0x2D23347b...D1B8a6E54
0.00103135 ETH
Transfer162675562022-12-26 7:52:35812 days ago1672041155
0x2D23347b...D1B8a6E54
0.00111344 ETH
Transfer156461482022-09-30 12:27:23899 days ago1664540843
0x2D23347b...D1B8a6E54
0.00286919 ETH
Deposit ETH156461482022-09-30 12:27:23899 days ago1664540843
0x2D23347b...D1B8a6E54
0.8909 ETH
Transfer152990482022-08-08 2:50:37952 days ago1659927037
0x2D23347b...D1B8a6E54
0.00118653 ETH
Transfer152953782022-08-07 13:19:29953 days ago1659878369
0x2D23347b...D1B8a6E54
0.00228189 ETH
Transfer152953782022-08-07 13:19:29953 days ago1659878369
0x2D23347b...D1B8a6E54
1 ETH
-146644982022-04-27 4:57:121055 days ago1651035432
0x2D23347b...D1B8a6E54
0.00330607 ETH
-146644982022-04-27 4:57:121055 days ago1651035432
0x2D23347b...D1B8a6E54
6 ETH
-146399552022-04-23 8:18:011059 days ago1650701881
0x2D23347b...D1B8a6E54
0.0675165 ETH
-138162662021-12-16 12:44:541187 days ago1639658694
0x2D23347b...D1B8a6E54
0.00806518 ETH
-138162662021-12-16 12:44:541187 days ago1639658694
0x2D23347b...D1B8a6E54
0.1 ETH
-138162542021-12-16 12:42:241187 days ago1639658544
0x2D23347b...D1B8a6E54
0.00870326 ETH
-129308922021-07-31 3:17:401325 days ago1627701460
0x2D23347b...D1B8a6E54
0.00238705 ETH
-129308412021-07-31 3:06:141325 days ago1627700774
0x2D23347b...D1B8a6E54
0.00307384 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

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