ETH Price: $2,349.01 (-5.41%)

Contract

0xEd4f9b16bd5bC0aB905FaB6341BfEda7fD2dDa78
 

Overview

ETH Balance

0.000837099331731931 ETH

Eth Value

$1.97 (@ $2,349.01/ETH)

Token Holdings

Transaction Hash
Method
Block
From
To
Transfer122150182021-04-10 22:55:101418 days ago1618095310IN
0xEd4f9b16...7fD2dDa78
0.1 ETH0.0018587280
Transfer121206032021-03-27 10:40:451432 days ago1616841645IN
0xEd4f9b16...7fD2dDa78
0.22676502 ETH0.0020445988

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
151178612022-07-10 23:35:25962 days ago1657496125
0xEd4f9b16...7fD2dDa78
0.00179329 ETH
122150822021-04-10 23:08:091418 days ago1618096089
0xEd4f9b16...7fD2dDa78
0.00719025 ETH
122150822021-04-10 23:08:091418 days ago1618096089
0xEd4f9b16...7fD2dDa78
0.05 ETH
122150622021-04-10 23:04:141418 days ago1618095854
0xEd4f9b16...7fD2dDa78
0.01286489 ETH
122150482021-04-10 23:00:471418 days ago1618095647
0xEd4f9b16...7fD2dDa78
0.02023314 ETH
122150282021-04-10 22:57:071418 days ago1618095427
0xEd4f9b16...7fD2dDa78
0.01160222 ETH
122149892021-04-10 22:48:371418 days ago1618094917
0xEd4f9b16...7fD2dDa78
0.01304962 ETH
121753322021-04-04 20:27:271424 days ago1617568047
0xEd4f9b16...7fD2dDa78
0.015666 ETH
121738362021-04-04 15:05:391424 days ago1617548739
0xEd4f9b16...7fD2dDa78
0.01806666 ETH
121663612021-04-03 11:34:451425 days ago1617449685
0xEd4f9b16...7fD2dDa78
0.01723298 ETH
121405122021-03-30 12:07:381429 days ago1617106058
0xEd4f9b16...7fD2dDa78
0.07899693 ETH
121405122021-03-30 12:07:381429 days ago1617106058
0xEd4f9b16...7fD2dDa78
0.05 ETH
121340812021-03-29 12:14:401430 days ago1617020080
0xEd4f9b16...7fD2dDa78
0.0253048 ETH
121340812021-03-29 12:14:401430 days ago1617020080
0xEd4f9b16...7fD2dDa78
0.15 ETH
121273182021-03-28 11:24:201431 days ago1616930660
0xEd4f9b16...7fD2dDa78
0.00898357 ETH
121273182021-03-28 11:24:201431 days ago1616930660
0xEd4f9b16...7fD2dDa78
0.25 ETH
121229342021-03-27 19:13:561432 days ago1616872436
0xEd4f9b16...7fD2dDa78
0.0699896 ETH
121209272021-03-27 11:53:481432 days ago1616846028
0xEd4f9b16...7fD2dDa78
0.0230343 ETH
121209252021-03-27 11:53:311432 days ago1616846011
0xEd4f9b16...7fD2dDa78
0.01565265 ETH
121209132021-03-27 11:52:041432 days ago1616845924
0xEd4f9b16...7fD2dDa78
0.02702685 ETH
121209132021-03-27 11:52:041432 days ago1616845924
0xEd4f9b16...7fD2dDa78
0.3 ETH
121209012021-03-27 11:48:211432 days ago1616845701
0xEd4f9b16...7fD2dDa78
0.04459527 ETH
121209012021-03-27 11:48:211432 days ago1616845701
0xEd4f9b16...7fD2dDa78
0.201 ETH
121208592021-03-27 11:39:121432 days ago1616845152
0xEd4f9b16...7fD2dDa78
0.03780019 ETH
121208592021-03-27 11:39:121432 days ago1616845152
0xEd4f9b16...7fD2dDa78
1.16860167 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.