ETH Price: $3,306.54 (-0.26%)
Gas: 4.4 Gwei
 

Overview

ETH Balance

53.120005278906419135 ETH

Eth Value

$175,643.65 (@ $3,306.54/ETH)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer171494482023-04-29 4:42:23638 days ago1682743343IN
0x311DAB81...7538dDe4E
10 ETH0.0007756633.38498898
Transfer152480202022-07-31 4:09:30910 days ago1659240570IN
0x311DAB81...7538dDe4E
10 ETH0.000131495.65974165
Transfer138271462021-12-18 5:18:531135 days ago1639804733IN
0x311DAB81...7538dDe4E
20 ETH0.0013289857.2
Transfer138271422021-12-18 5:18:131135 days ago1639804693IN
0x311DAB81...7538dDe4E
0.00514922 ETH0.001737974.8
Transfer104869502020-07-19 1:23:401652 days ago1595121820IN
0x311DAB81...7538dDe4E
5.25443433 ETH0.0008921838.4
Transfer102612222020-06-14 2:40:461687 days ago1592102446IN
0x311DAB81...7538dDe4E
6.62924044 ETH0.0004182118
Transfer101751172020-05-31 18:11:521700 days ago1590948712IN
0x311DAB81...7538dDe4E
1 ETH0.0003717416

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
215041072024-12-28 23:00:4728 days ago1735426847
0x311DAB81...7538dDe4E
0.00448333 ETH
200561502024-06-09 18:47:11230 days ago1717958831
0x311DAB81...7538dDe4E
0.00073913 ETH
185633632023-11-13 13:45:47440 days ago1699883147
0x311DAB81...7538dDe4E
42.9402255 ETH
152483162022-07-31 5:14:16910 days ago1659244456
0x311DAB81...7538dDe4E
0.00114912 ETH
152483162022-07-31 5:14:16910 days ago1659244456
0x311DAB81...7538dDe4E
10 ETH
138272522021-12-18 5:38:311135 days ago1639805911
0x311DAB81...7538dDe4E
0.00877383 ETH
138272522021-12-18 5:38:311135 days ago1639805911
0x311DAB81...7538dDe4E
20 ETH
138270152021-12-18 4:45:211135 days ago1639802721
0x311DAB81...7538dDe4E
0.00920732 ETH
128034822021-07-11 2:55:121295 days ago1625972112
0x311DAB81...7538dDe4E
0.00082619 ETH
113926162020-12-05 12:22:341513 days ago1607170954
0x311DAB81...7538dDe4E
0.00133 ETH
113926102020-12-05 12:21:311513 days ago1607170891
0x311DAB81...7538dDe4E
0.00458454 ETH
112864702020-11-19 5:20:381529 days ago1605763238
0x311DAB81...7538dDe4E
0.00217 ETH
112864702020-11-19 5:20:381529 days ago1605763238
0x311DAB81...7538dDe4E
0.5 ETH
112153742020-11-08 7:14:061540 days ago1604819646
0x311DAB81...7538dDe4E
0.0008 ETH
109878362020-10-04 6:43:421575 days ago1601793822
0x311DAB81...7538dDe4E
0.01175 ETH
109878182020-10-04 6:38:471575 days ago1601793527
0x311DAB81...7538dDe4E
0.01175 ETH
109352182020-09-26 1:12:041583 days ago1601082724
0x311DAB81...7538dDe4E
0.00968819 ETH
108450072020-09-12 4:44:281597 days ago1599885868
0x311DAB81...7538dDe4E
2 ETH
106548832020-08-14 0:33:151626 days ago1597365195
0x311DAB81...7538dDe4E
2 ETH
104931582020-07-20 0:22:141651 days ago1595204534
0x311DAB81...7538dDe4E
1 ETH
104931492020-07-20 0:19:431651 days ago1595204383
0x311DAB81...7538dDe4E
0.00851865 ETH
104931492020-07-20 0:19:431651 days ago1595204383
0x311DAB81...7538dDe4E
1 ETH
104870862020-07-19 1:56:011652 days ago1595123761
0x311DAB81...7538dDe4E
1 ETH
104870602020-07-19 1:49:101652 days ago1595123350
0x311DAB81...7538dDe4E
0.00767491 ETH
104870602020-07-19 1:49:101652 days ago1595123350
0x311DAB81...7538dDe4E
1 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.