ETH Price: $1,918.92 (-3.10%)
Gas: 0.04 Gwei
 

Overview

ETH Balance

0.001830059004556829 ETH

Eth Value

$3.51 (@ $1,918.92/ETH)

More Info

Private Name Tags

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer100591282020-05-13 17:30:232111 days ago1589391023IN
0x0ceA5bc7...07eFf9e0F
0.1 ETH0.0006102926.26720647
Transfer100591112020-05-13 17:27:382111 days ago1589390858IN
0x0ceA5bc7...07eFf9e0F
0.1 ETH0.00046222
Transfer99202612020-04-22 5:02:202133 days ago1587531740IN
0x0ceA5bc7...07eFf9e0F
0.1 ETH0.000192848.3
Transfer92099352020-01-03 21:59:302242 days ago1578088770IN
0x0ceA5bc7...07eFf9e0F
0.1 ETH0.000023231

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer193101562024-02-26 7:09:35728 days ago1708931375
0x0ceA5bc7...07eFf9e0F
0.00449232 ETH
Transfer193101562024-02-26 7:09:35728 days ago1708931375
0x0ceA5bc7...07eFf9e0F
0.069 ETH
-138197852021-12-17 1:49:561529 days ago1639705796
0x0ceA5bc7...07eFf9e0F
0.01032584 ETH
-108833972020-09-18 2:01:451984 days ago1600394505
0x0ceA5bc7...07eFf9e0F
0.03561285 ETH
-100590762020-05-13 17:17:352111 days ago1589390255
0x0ceA5bc7...07eFf9e0F
0.01652696 ETH
-100144422020-05-06 18:57:532118 days ago1588791473
0x0ceA5bc7...07eFf9e0F
0.01022616 ETH
-100144272020-05-06 18:54:002118 days ago1588791240
0x0ceA5bc7...07eFf9e0F
0.00761373 ETH
-99360642020-04-24 15:37:592130 days ago1587742679
0x0ceA5bc7...07eFf9e0F
0.00952576 ETH
-99360612020-04-24 15:37:472130 days ago1587742667
0x0ceA5bc7...07eFf9e0F
0.00746534 ETH
-99360452020-04-24 15:36:182130 days ago1587742578
0x0ceA5bc7...07eFf9e0F
0.00233021 ETH
-99360452020-04-24 15:36:182130 days ago1587742578
0x0ceA5bc7...07eFf9e0F
0.01123 ETH
-99202812020-04-22 5:06:382133 days ago1587531998
0x0ceA5bc7...07eFf9e0F
0.00580381 ETH
-99202762020-04-22 5:05:272133 days ago1587531927
0x0ceA5bc7...07eFf9e0F
0.00661926 ETH
-99202692020-04-22 5:04:172133 days ago1587531857
0x0ceA5bc7...07eFf9e0F
0.00843632 ETH
-98861472020-04-16 22:17:442138 days ago1587075464
0x0ceA5bc7...07eFf9e0F
0.00267142 ETH
-98861342020-04-16 22:15:042138 days ago1587075304
0x0ceA5bc7...07eFf9e0F
0.00367259 ETH
-98861192020-04-16 22:11:032138 days ago1587075063
0x0ceA5bc7...07eFf9e0F
0.0034019 ETH
-98861062020-04-16 22:06:522138 days ago1587074812
0x0ceA5bc7...07eFf9e0F
0.00318393 ETH
-96646742020-03-13 18:15:332172 days ago1584123333
0x0ceA5bc7...07eFf9e0F
0.00923979 ETH
-96646682020-03-13 18:15:002172 days ago1584123300
0x0ceA5bc7...07eFf9e0F
0.00731301 ETH
-95997562020-03-03 18:17:072182 days ago1583259427
0x0ceA5bc7...07eFf9e0F
0.00479012 ETH
-95997532020-03-03 18:16:452182 days ago1583259405
0x0ceA5bc7...07eFf9e0F
0.00103234 ETH
-95996962020-03-03 18:03:542182 days ago1583258634
0x0ceA5bc7...07eFf9e0F
0.02 ETH
-95996832020-03-03 18:01:372182 days ago1583258497
0x0ceA5bc7...07eFf9e0F
0.00057337 ETH
-95996012020-03-03 17:44:312182 days ago1583257471
0x0ceA5bc7...07eFf9e0F
0.00000678 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
0x0ceA5bc7663fcd8909d6dec94ACB2Ab07eFf9e0F
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.