ETH Price: $1,969.93 (-2.12%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer85239342019-09-10 19:36:012364 days ago1568144161IN
0x7d85F678...5D63CCCcd
2 ETH0.0004646820

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
-106022482020-08-05 21:46:552034 days ago1596664015
0x7d85F678...5D63CCCcd
0.028875 ETH
-106022482020-08-05 21:46:552034 days ago1596664015
0x7d85F678...5D63CCCcd
0.00118245 ETH
-106022482020-08-05 21:46:552034 days ago1596664015
0x7d85F678...5D63CCCcd
0.78711838 ETH
-101818652020-06-01 19:30:272099 days ago1591039827
0x7d85F678...5D63CCCcd
0.0012276 ETH
-101818652020-06-01 19:30:272099 days ago1591039827
0x7d85F678...5D63CCCcd
0.81840344 ETH
-100718762020-05-15 16:45:382116 days ago1589561138
0x7d85F678...5D63CCCcd
0.0015 ETH
-100718762020-05-15 16:45:382116 days ago1589561138
0x7d85F678...5D63CCCcd
0.99850509 ETH
-94237282020-02-05 16:33:352216 days ago1580920415
0x7d85F678...5D63CCCcd
0.2555 ETH
-92475292020-01-09 16:24:462243 days ago1578587086
0x7d85F678...5D63CCCcd
0.00188608 ETH
-92475292020-01-09 16:24:462243 days ago1578587086
0x7d85F678...5D63CCCcd
1.25739119 ETH
-92411502020-01-08 16:57:512244 days ago1578502671
0x7d85F678...5D63CCCcd
0.00186097 ETH
-92411502020-01-08 16:57:512244 days ago1578502671
0x7d85F678...5D63CCCcd
1.23879151 ETH
-91177442019-12-16 22:51:502267 days ago1576536710
0x7d85F678...5D63CCCcd
1 ETH
-89831952019-11-22 23:41:522291 days ago1574466112
0x7d85F678...5D63CCCcd
0.00181365 ETH
-89831952019-11-22 23:41:522291 days ago1574466112
0x7d85F678...5D63CCCcd
1.20910211 ETH
-88288922019-10-28 16:28:252316 days ago1572280105
0x7d85F678...5D63CCCcd
0.0015 ETH
-88288922019-10-28 16:28:252316 days ago1572280105
0x7d85F678...5D63CCCcd
0.9985 ETH
-86151552019-09-25 1:19:212350 days ago1569374361
0x7d85F678...5D63CCCcd
0.00155235 ETH
-86151552019-09-25 1:19:212350 days ago1569374361
0x7d85F678...5D63CCCcd
1.03490045 ETH
-86150762019-09-25 0:57:582350 days ago1569373078
0x7d85F678...5D63CCCcd
1.00001593 ETH
-85285052019-09-11 12:31:582363 days ago1568205118
0x7d85F678...5D63CCCcd
1 ETH
-85244592019-09-10 21:25:202364 days ago1568150720
0x7d85F678...5D63CCCcd
0.0015 ETH
-85244592019-09-10 21:25:202364 days ago1568150720
0x7d85F678...5D63CCCcd
0.9985 ETH
-85239612019-09-10 19:43:342364 days ago1568144614
0x7d85F678...5D63CCCcd
1.997 ETH
-84523362019-08-30 15:22:302375 days ago1567178550  Contract Creation0 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

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 - <julien@argent.xyz>
 */
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.