ETH Price: $3,590.32 (+3.56%)
 

Overview

ETH Balance

120.44958459080589933 ETH

Eth Value

$432,452.49 (@ $3,590.32/ETH)

Token Holdings

Transaction Hash
Method
Block
From
To
Transfer96754512020-03-15 10:12:541755 days ago1584267174IN
0x2eC07076...Eb19d3172
100 ETH0.00020919
Transfer85216982019-09-10 10:58:431942 days ago1568113123IN
0x2eC07076...Eb19d3172
90 ETH0.0004646820
Transfer83665922019-08-17 7:24:561966 days ago1566026696IN
0x2eC07076...Eb19d3172
10 ETH0.00013946

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
213857462024-12-12 10:11:4722 days ago1733998307
0x2eC07076...Eb19d3172
0.00303149 ETH
213569392024-12-08 9:41:1126 days ago1733650871
0x2eC07076...Eb19d3172
0.00219593 ETH
213569042024-12-08 9:34:1126 days ago1733650451
0x2eC07076...Eb19d3172
0.00099396 ETH
213568952024-12-08 9:32:2326 days ago1733650343
0x2eC07076...Eb19d3172
0.00082287 ETH
213568812024-12-08 9:29:3526 days ago1733650175
0x2eC07076...Eb19d3172
0.00259758 ETH
213568812024-12-08 9:29:3526 days ago1733650175
0x2eC07076...Eb19d3172
0.00517 ETH
213568812024-12-08 9:29:3526 days ago1733650175
0x2eC07076...Eb19d3172
1.02883 ETH
213568472024-12-08 9:22:4726 days ago1733649767
0x2eC07076...Eb19d3172
0.0021303 ETH
213568462024-12-08 9:22:3526 days ago1733649755
0x2eC07076...Eb19d3172
0.0036916 ETH
198092022024-05-06 6:16:47242 days ago1714976207
0x2eC07076...Eb19d3172
0.00597689 ETH
198091472024-05-06 6:05:47242 days ago1714975547
0x2eC07076...Eb19d3172
0.0008326 ETH
198091472024-05-06 6:05:47242 days ago1714975547
0x2eC07076...Eb19d3172
0.00083267 ETH
197875112024-05-03 5:30:35245 days ago1714714235
0x2eC07076...Eb19d3172
0.00205743 ETH
188634012023-12-25 14:42:11375 days ago1703515331
0x2eC07076...Eb19d3172
0.00778601 ETH
188634012023-12-25 14:42:11375 days ago1703515331
0x2eC07076...Eb19d3172
1.00119698 ETH
188626132023-12-25 12:01:11375 days ago1703505671
0x2eC07076...Eb19d3172
0.14834217 ETH
169125592023-03-26 15:41:35649 days ago1679845295
0x2eC07076...Eb19d3172
0.00911453 ETH
169125592023-03-26 15:41:35649 days ago1679845295
0x2eC07076...Eb19d3172
0.00371312 ETH
169125592023-03-26 15:41:35649 days ago1679845295
0x2eC07076...Eb19d3172
0.74635695 ETH
165910162023-02-09 11:52:23694 days ago1675943543
0x2eC07076...Eb19d3172
0.0021975 ETH
153705892022-08-19 9:52:07868 days ago1660902727
0x2eC07076...Eb19d3172
0.00229335 ETH
153705892022-08-19 9:52:07868 days ago1660902727
0x2eC07076...Eb19d3172
2 ETH
146552322022-04-25 17:58:36984 days ago1650909516
0x2eC07076...Eb19d3172
0.06467988 ETH
146552322022-04-25 17:58:36984 days ago1650909516
0x2eC07076...Eb19d3172
0.02347787 ETH
146552322022-04-25 17:58:36984 days ago1650909516
0x2eC07076...Eb19d3172
4.71916988 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.