ETH Price: $2,625.95 (-3.26%)

Contract

0x8F2c6b6C09F4d4FF072e357B89785fAB89E0512C
 
Transaction Hash
Method
Block
From
To
Transfer174794942023-06-14 16:54:35604 days ago1686761675IN
0x8F2c6b6C...B89E0512C
0.01 ETH0.0007400531.85219177
Transfer174082202023-06-04 15:47:35614 days ago1685893655IN
0x8F2c6b6C...B89E0512C
0.013 ETH0.0006641428.58525786
Transfer106785292020-08-17 16:10:571635 days ago1597680657IN
0x8F2c6b6C...B89E0512C
0.23558843 ETH0.00785309337.99999999
Transfer99424292020-04-25 15:21:441749 days ago1587828104IN
0x8F2c6b6C...B89E0512C
0.07 ETH0.000181227.8
Transfer94315952020-02-06 21:38:391828 days ago1581025119IN
0x8F2c6b6C...B89E0512C
0.05 ETH0.00006973
Transfer91963242020-01-01 14:50:341864 days ago1577890234IN
0x8F2c6b6C...B89E0512C
0.02276867 ETH0.000046462

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
174937502023-06-16 17:01:59602 days ago1686934919
0x8F2c6b6C...B89E0512C
0.0091 ETH
174224112023-06-06 15:52:11612 days ago1686066731
0x8F2c6b6C...B89E0512C
0.01 ETH
158279932022-10-25 22:13:23836 days ago1666736003
0x8F2c6b6C...B89E0512C
0.03871391 ETH
158279692022-10-25 22:08:35836 days ago1666735715
0x8F2c6b6C...B89E0512C
0.0023305 ETH
114222672020-12-10 1:37:561521 days ago1607564276
0x8F2c6b6C...B89E0512C
0.01365 ETH
114213762020-12-09 22:22:311521 days ago1607552551
0x8F2c6b6C...B89E0512C
0.00894604 ETH
106785492020-08-17 16:14:571635 days ago1597680897
0x8F2c6b6C...B89E0512C
0.22 ETH
101934512020-06-03 14:52:061710 days ago1591195926
0x8F2c6b6C...B89E0512C
0.0007122 ETH
101934512020-06-03 14:52:061710 days ago1591195926
0x8F2c6b6C...B89E0512C
0.01 ETH
100728232020-05-15 20:24:411729 days ago1589574281
0x8F2c6b6C...B89E0512C
0.00845572 ETH
99426382020-04-25 16:15:031749 days ago1587831303
0x8F2c6b6C...B89E0512C
0.01049646 ETH
99425972020-04-25 16:03:101749 days ago1587830590
0x8F2c6b6C...B89E0512C
0.00738855 ETH
99423942020-04-25 15:13:371749 days ago1587827617
0x8F2c6b6C...B89E0512C
0.01081003 ETH
99423872020-04-25 15:12:211749 days ago1587827541
0x8F2c6b6C...B89E0512C
0.01076853 ETH
96651862020-03-13 20:15:011792 days ago1584130501
0x8F2c6b6C...B89E0512C
0.00913018 ETH
96651422020-03-13 20:05:041792 days ago1584129904
0x8F2c6b6C...B89E0512C
0.00084032 ETH
96393572020-03-09 20:18:081796 days ago1583785088
0x8F2c6b6C...B89E0512C
0.00050182 ETH
96393422020-03-09 20:15:111796 days ago1583784911
0x8F2c6b6C...B89E0512C
0.00050182 ETH
96393322020-03-09 20:13:011796 days ago1583784781
0x8F2c6b6C...B89E0512C
0.00057337 ETH
96374632020-03-09 13:22:291796 days ago1583760149
0x8F2c6b6C...B89E0512C
0.005 ETH
94315812020-02-06 21:36:371828 days ago1581024997
0x8F2c6b6C...B89E0512C
0.00001415 ETH
94315812020-02-06 21:36:371828 days ago1581024997
0x8F2c6b6C...B89E0512C
0.00159611 ETH
94315812020-02-06 21:36:371828 days ago1581024997
0x8F2c6b6C...B89E0512C
0.01101567 ETH
92296062020-01-06 22:15:471859 days ago1578348947
0x8F2c6b6C...B89E0512C
0.00467244 ETH
92296012020-01-06 22:14:421859 days ago1578348882
0x8F2c6b6C...B89E0512C
0.00100608 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.