ETH Price: $3,389.26 (+1.63%)

Contract

0x94D4e659c83bB796c2dbeA2149FeeAF4D978f821
 

Overview

ETH Balance

0.09711069615860953 ETH

Eth Value

$329.13 (@ $3,389.26/ETH)
Transaction Hash
Method
Block
From
To
Transfer108822122020-09-17 21:42:531562 days ago1600378973IN
0x94D4e659...4D978f821
0.5 ETH0.0092936400
Transfer101188112020-05-23 0:20:081680 days ago1590193208IN
0x94D4e659...4D978f821
2 ETH0.0005576124

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
214443002024-12-20 14:22:478 days ago1734704567
0x94D4e659...4D978f821
0.00755104 ETH
214443002024-12-20 14:22:478 days ago1734704567
0x94D4e659...4D978f821
0.10441127 ETH
214300342024-12-18 14:32:4710 days ago1734532367
0x94D4e659...4D978f821
0.00413026 ETH
214300342024-12-18 14:32:4710 days ago1734532367
0x94D4e659...4D978f821
0.15 ETH
211796632024-11-13 15:27:4745 days ago1731511667
0x94D4e659...4D978f821
0.02309491 ETH
211796632024-11-13 15:27:4745 days ago1731511667
0x94D4e659...4D978f821
0.31804473 ETH
211796562024-11-13 15:26:2345 days ago1731511583
0x94D4e659...4D978f821
0.01134452 ETH
211023592024-11-02 20:31:4755 days ago1730579507
0x94D4e659...4D978f821
0.00096039 ETH
211023592024-11-02 20:31:4755 days ago1730579507
0x94D4e659...4D978f821
0.05 ETH
200624712024-06-10 15:57:35201 days ago1718035055
0x94D4e659...4D978f821
0.00594773 ETH
200624712024-06-10 15:57:35201 days ago1718035055
0x94D4e659...4D978f821
0.001 ETH
200624712024-06-10 15:57:35201 days ago1718035055
0x94D4e659...4D978f821
0.199 ETH
189291762024-01-03 20:22:59359 days ago1704313379
0x94D4e659...4D978f821
0.00748399 ETH
189291762024-01-03 20:22:59359 days ago1704313379
0x94D4e659...4D978f821
0.17028573 ETH
189291622024-01-03 20:20:11359 days ago1704313211
0x94D4e659...4D978f821
0.00378994 ETH
188528352023-12-24 3:02:59370 days ago1703386979
0x94D4e659...4D978f821
0.00471783 ETH
188528352023-12-24 3:02:59370 days ago1703386979
0x94D4e659...4D978f821
0.1 ETH
188519402023-12-24 0:00:59370 days ago1703376059
0x94D4e659...4D978f821
0.25161552 ETH
181199162023-09-12 11:20:47473 days ago1694517647
0x94D4e659...4D978f821
0.00328231 ETH
181199162023-09-12 11:20:47473 days ago1694517647
0x94D4e659...4D978f821
0.21030695 ETH
181199062023-09-12 11:18:47473 days ago1694517527
0x94D4e659...4D978f821
0.00330766 ETH
181199062023-09-12 11:18:47473 days ago1694517527
0x94D4e659...4D978f821
0.21070073 ETH
181199002023-09-12 11:17:35473 days ago1694517455
0x94D4e659...4D978f821
0.00209897 ETH
159794382022-11-16 1:54:23773 days ago1668563663
0x94D4e659...4D978f821
0.00214061 ETH
159794382022-11-16 1:54:23773 days ago1668563663
0x94D4e659...4D978f821
0.007168 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.