ETH Price: $3,662.26 (+0.59%)
 

Overview

ETH Balance

0.005460330425439508 ETH

Eth Value

$20.00 (@ $3,662.26/ETH)

Token Holdings

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer201106482024-06-17 9:35:35202 days ago1718616935IN
0x6A903Df2...9d2F3E6AB
1.005 ETH0.000075253.23921516
Transfer108771512020-09-17 3:13:421571 days ago1600312422IN
0x6A903Df2...9d2F3E6AB
0.3 ETH0.0139404600
Transfer104478302020-07-12 23:58:211638 days ago1594598301IN
0x6A903Df2...9d2F3E6AB
2.23004056 ETH0.0004414419
Transfer104022382020-07-05 22:57:521645 days ago1593989872IN
0x6A903Df2...9d2F3E6AB
1.100659 ETH0.0004879121
Transfer103500542020-06-27 20:54:071653 days ago1593291247IN
0x6A903Df2...9d2F3E6AB
0.058 ETH0.0008131935
Transfer98330552020-04-08 18:14:151733 days ago1586369655IN
0x6A903Df2...9d2F3E6AB
0.00963876 ETH0.000116175
Transfer98323832020-04-08 15:37:571733 days ago1586360277IN
0x6A903Df2...9d2F3E6AB
0.00254471 ETH0.000185878

Latest 21 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
201106672024-06-17 9:39:23202 days ago1718617163
0x6A903Df2...9d2F3E6AB
0.00043226 ETH
201106672024-06-17 9:39:23202 days ago1718617163
0x6A903Df2...9d2F3E6AB
1 ETH
137908212021-12-12 14:22:111120 days ago1639318931
0x6A903Df2...9d2F3E6AB
0.0063574 ETH
129707192021-08-06 9:53:511248 days ago1628243631
0x6A903Df2...9d2F3E6AB
0.005 ETH
109817972020-10-03 8:07:521555 days ago1601712472
0x6A903Df2...9d2F3E6AB
0.22128725 ETH
108774702020-09-17 4:23:491571 days ago1600316629
0x6A903Df2...9d2F3E6AB
0.07646275 ETH
104798302020-07-17 23:09:521633 days ago1595027392
0x6A903Df2...9d2F3E6AB
0.03004056 ETH
104478362020-07-13 0:00:011638 days ago1594598401
0x6A903Df2...9d2F3E6AB
2.2 ETH
104081362020-07-06 20:55:401644 days ago1594068940
0x6A903Df2...9d2F3E6AB
0.03843605 ETH
104024562020-07-05 23:46:361645 days ago1593992796
0x6A903Df2...9d2F3E6AB
0.1 ETH
104022512020-07-05 22:59:371645 days ago1593989977
0x6A903Df2...9d2F3E6AB
1.1 ETH
103907842020-07-04 4:25:581646 days ago1593836758
0x6A903Df2...9d2F3E6AB
0.00748519 ETH
103907842020-07-04 4:25:581646 days ago1593836758
0x6A903Df2...9d2F3E6AB
0.00097831 ETH
103907842020-07-04 4:25:581646 days ago1593836758
0x6A903Df2...9d2F3E6AB
0.19664058 ETH
103697832020-06-30 22:12:571650 days ago1593555177
0x6A903Df2...9d2F3E6AB
1 ETH
103629062020-06-29 20:42:411651 days ago1593463361
0x6A903Df2...9d2F3E6AB
0.009 ETH
103500692020-06-27 20:57:351653 days ago1593291455
0x6A903Df2...9d2F3E6AB
0.00194079 ETH
103500692020-06-27 20:57:351653 days ago1593291455
0x6A903Df2...9d2F3E6AB
1.29386531 ETH
99627782020-04-28 19:15:311713 days ago1588101331
0x6A903Df2...9d2F3E6AB
0.00001827 ETH
99627782020-04-28 19:15:311713 days ago1588101331
0x6A903Df2...9d2F3E6AB
0.01216519 ETH
96511912020-03-11 16:03:511761 days ago1583942631  Contract Creation0 ETH
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.