ETH Price: $2,782.95 (+1.22%)

Contract

0x2f6ab23C175e7a07b9E2fa985918F3647A062ab5
 

Overview

ETH Balance

0.0335 ETH

Eth Value

$93.23 (@ $2,782.95/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer72741482019-02-27 10:55:272172 days ago1551264927IN
0x2f6ab23C...47A062ab5
0.0008 ETH0.0002323410

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
74582272019-03-28 17:01:112142 days ago1553792471
0x2f6ab23C...47A062ab5
0.008 ETH
74579272019-03-28 15:50:332142 days ago1553788233
0x2f6ab23C...47A062ab5
0.0155 ETH
74561572019-03-28 9:11:392143 days ago1553764299
0x2f6ab23C...47A062ab5
0.01 ETH
74520192019-03-27 17:45:462143 days ago1553708746
0x2f6ab23C...47A062ab5
0.0227 ETH
74519652019-03-27 17:30:402143 days ago1553707840
0x2f6ab23C...47A062ab5
0.001 ETH
74519622019-03-27 17:29:472143 days ago1553707787
0x2f6ab23C...47A062ab5
0.0004 ETH
74518662019-03-27 17:12:252143 days ago1553706745
0x2f6ab23C...47A062ab5
0.008 ETH
74518392019-03-27 17:06:142143 days ago1553706374
0x2f6ab23C...47A062ab5
0.0079 ETH
74517962019-03-27 16:55:172143 days ago1553705717
0x2f6ab23C...47A062ab5
0.008 ETH
74517272019-03-27 16:38:492143 days ago1553704729
0x2f6ab23C...47A062ab5
0.0002 ETH
74516962019-03-27 16:29:442143 days ago1553704184
0x2f6ab23C...47A062ab5
0.00704185 ETH
74504382019-03-27 11:52:332144 days ago1553687553
0x2f6ab23C...47A062ab5
0.003 ETH
74504312019-03-27 11:51:002144 days ago1553687460
0x2f6ab23C...47A062ab5
0.002 ETH
74499602019-03-27 10:10:302144 days ago1553681430
0x2f6ab23C...47A062ab5
0.04 ETH
74496452019-03-27 9:04:462144 days ago1553677486
0x2f6ab23C...47A062ab5
0.003994 ETH
74372932019-03-25 10:23:582146 days ago1553509438
0x2f6ab23C...47A062ab5
0.0048 ETH
74368412019-03-25 8:43:032146 days ago1553503383
0x2f6ab23C...47A062ab5
0.0053 ETH
74328182019-03-24 17:50:022146 days ago1553449802
0x2f6ab23C...47A062ab5
0.05 ETH
74195882019-03-22 16:19:022148 days ago1553271542
0x2f6ab23C...47A062ab5
0.0015 ETH
74191212019-03-22 14:41:342148 days ago1553265694
0x2f6ab23C...47A062ab5
0.006 ETH
74189672019-03-22 14:04:312149 days ago1553263471
0x2f6ab23C...47A062ab5
0.002 ETH
74182302019-03-22 11:20:002149 days ago1553253600
0x2f6ab23C...47A062ab5
0.0005 ETH
74114692019-03-21 9:57:492150 days ago1553162269
0x2f6ab23C...47A062ab5
0.006 ETH
74113992019-03-21 9:40:092150 days ago1553161209
0x2f6ab23C...47A062ab5
0.008999 ETH
74113272019-03-21 9:25:052150 days ago1553160305
0x2f6ab23C...47A062ab5
0.0075 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.