ETH Price: $2,921.29 (+4.56%)
 

Overview

ETH Balance

0.00018254682473108 ETH

Eth Value

$0.53 (@ $2,921.29/ETH)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer107651342020-08-30 23:11:381530 days ago1598829098IN
0x6428b4E1...274B1BE2E
0.9 ETH0.00276484119
Transfer103358972020-06-25 16:06:101596 days ago1593101170IN
0x6428b4E1...274B1BE2E
1 ETH0.0011756450.6
Transfer102513612020-06-12 14:15:281609 days ago1591971328IN
0x6428b4E1...274B1BE2E
0.0775 ETH0.0008364236
Transfer102201352020-06-07 17:56:501614 days ago1591552610IN
0x6428b4E1...274B1BE2E
0.025 ETH0.0006505528
Transfer101514202020-05-28 1:57:271625 days ago1590631047IN
0x6428b4E1...274B1BE2E
0.02 ETH0.0007434832
Transfer100379682020-05-10 10:45:181643 days ago1589107518IN
0x6428b4E1...274B1BE2E
0.2 ETH0.0003485115
Transfer96560422020-03-12 9:53:081702 days ago1584006788IN
0x6428b4E1...274B1BE2E
1.47145389 ETH0.0004182118
Transfer95886722020-03-02 1:26:501712 days ago1583112410IN
0x6428b4E1...274B1BE2E
1.2 ETH0.000023231
Transfer95772282020-02-29 7:19:401714 days ago1582960780IN
0x6428b4E1...274B1BE2E
0.02180406 ETH0.00006973

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
183602512023-10-16 3:28:59389 days ago1697426939
0x6428b4E1...274B1BE2E
0.00082487 ETH
183602512023-10-16 3:28:59389 days ago1697426939
0x6428b4E1...274B1BE2E
0.00428955 ETH
147090002022-05-04 5:06:37919 days ago1651640797
0x6428b4E1...274B1BE2E
0.00473737 ETH
123208962021-04-27 6:59:541291 days ago1619506794
0x6428b4E1...274B1BE2E
0.01030108 ETH
107672082020-08-31 7:07:051530 days ago1598857625
0x6428b4E1...274B1BE2E
0.9 ETH
104079832020-07-06 20:24:081585 days ago1594067048
0x6428b4E1...274B1BE2E
0.05 ETH
103827872020-07-02 22:54:011589 days ago1593730441
0x6428b4E1...274B1BE2E
0.1 ETH
103405302020-06-26 9:14:221596 days ago1593162862
0x6428b4E1...274B1BE2E
0.030614 ETH
103359132020-06-25 16:09:091596 days ago1593101349
0x6428b4E1...274B1BE2E
1.25 ETH
103333322020-06-25 6:38:311597 days ago1593067111
0x6428b4E1...274B1BE2E
0.01017256 ETH
103256152020-06-24 1:50:241598 days ago1592963424
0x6428b4E1...274B1BE2E
0.25 ETH
103239702020-06-23 19:40:111598 days ago1592941211
0x6428b4E1...274B1BE2E
0.00058551 ETH
103239702020-06-23 19:40:111598 days ago1592941211
0x6428b4E1...274B1BE2E
0.39034336 ETH
103126292020-06-22 1:25:261600 days ago1592789126
0x6428b4E1...274B1BE2E
0.000315 ETH
103126292020-06-22 1:25:261600 days ago1592789126
0x6428b4E1...274B1BE2E
0.209685 ETH
103125882020-06-22 1:16:091600 days ago1592788569
0x6428b4E1...274B1BE2E
0.03454376 ETH
103125792020-06-22 1:15:031600 days ago1592788503
0x6428b4E1...274B1BE2E
0.00045887 ETH
103125792020-06-22 1:15:031600 days ago1592788503
0x6428b4E1...274B1BE2E
0.30591448 ETH
103125712020-06-22 1:13:011600 days ago1592788381
0x6428b4E1...274B1BE2E
0.00436924 ETH
103125712020-06-22 1:13:011600 days ago1592788381
0x6428b4E1...274B1BE2E
0.00423457 ETH
103088022020-06-21 11:19:271601 days ago1592738367
0x6428b4E1...274B1BE2E
0.0003 ETH
103088022020-06-21 11:19:271601 days ago1592738367
0x6428b4E1...274B1BE2E
0.1997 ETH
103010852020-06-20 6:38:251602 days ago1592635105
0x6428b4E1...274B1BE2E
0.00047805 ETH
103010852020-06-20 6:38:251602 days ago1592635105
0x6428b4E1...274B1BE2E
0.31822195 ETH
103010752020-06-20 6:36:021602 days ago1592634962
0x6428b4E1...274B1BE2E
0.00096708 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.