ETH Price: $2,421.95 (-3.84%)
 

Overview

ETH Balance

0.000253215165436509 ETH

Eth Value

$0.61 (@ $2,421.95/ETH)

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer113687542020-12-01 20:12:031662 days ago1606853523IN
0xdf764C82...8217465c6
0.1 ETH0.0006970230

Latest 19 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer227052872025-06-14 20:49:236 days ago1749934163
0xdf764C82...8217465c6
0.00032273 ETH
Transfer227052842025-06-14 20:48:476 days ago1749934127
0xdf764C82...8217465c6
0.00008566 ETH
Transfer227052162025-06-14 20:35:116 days ago1749933311
0xdf764C82...8217465c6
0.00007921 ETH
Transfer227052112025-06-14 20:34:116 days ago1749933251
0xdf764C82...8217465c6
0.000073 ETH
Transfer227039972025-06-14 16:30:116 days ago1749918611
0xdf764C82...8217465c6
0.00033614 ETH
Transfer227039932025-06-14 16:29:236 days ago1749918563
0xdf764C82...8217465c6
0.00011518 ETH
Transfer227039742025-06-14 16:25:356 days ago1749918335
0xdf764C82...8217465c6
0.0003553 ETH
-123545052021-05-02 11:33:331510 days ago1619955213
0xdf764C82...8217465c6
0.00556611 ETH
-120724582021-03-20 0:32:241554 days ago1616200344
0xdf764C82...8217465c6
0.02566314 ETH
-120724492021-03-20 0:29:451554 days ago1616200185
0xdf764C82...8217465c6
0.02826914 ETH
-120724492021-03-20 0:29:451554 days ago1616200185
0xdf764C82...8217465c6
0.01 ETH
-113688172020-12-01 20:24:161662 days ago1606854256
0xdf764C82...8217465c6
0.01740315 ETH
-113688112020-12-01 20:23:061662 days ago1606854186
0xdf764C82...8217465c6
0.00297676 ETH
-113687712020-12-01 20:15:131662 days ago1606853713
0xdf764C82...8217465c6
0.00850122 ETH
-101561042020-05-28 19:24:371849 days ago1590693877
0xdf764C82...8217465c6
0.00004781 ETH
-101561042020-05-28 19:24:371849 days ago1590693877
0xdf764C82...8217465c6
0.03182914 ETH
-101560982020-05-28 19:24:021849 days ago1590693842
0xdf764C82...8217465c6
0.00004788 ETH
-101560982020-05-28 19:24:021849 days ago1590693842
0xdf764C82...8217465c6
0.03192484 ETH
-83926012019-08-21 8:24:382130 days ago1566375878  Contract Creation0 ETH

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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

Contract Source Code (Solidity)

/**
 *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"}]

0x608060405234801561001057600080fd5b50604051602080610127833981016040525160008054600160a060020a03909216600160a060020a031990921691909117905560d6806100516000396000f30060806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029000000000000000000000000b1dd690cc9af7bb1a906a9b5a94f94191cc553ce

Deployed Bytecode

0x60806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029

Swarm Source

bzzr://09ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.