ETH Price: $2,336.79 (-0.42%)

Contract

0x44eD2572Ba56790aA53618140D5d1F5e073F1bf6
 

Overview

ETH Balance

0.305815906604 ETH

Eth Value

$714.63 (@ $2,336.79/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer106889322020-08-19 6:21:521485 days ago1597818112IN
0x44eD2572...e073F1bf6
0.35 ETH0.00320629138
Transfer104184432020-07-08 10:51:461527 days ago1594205506IN
0x44eD2572...e073F1bf6
0.04778165 ETH0.0015845568.2
Transfer101280742020-05-24 10:48:091572 days ago1590317289IN
0x44eD2572...e073F1bf6
0.32183009 ETH0.0006040826
Transfer101279412020-05-24 10:21:331572 days ago1590315693IN
0x44eD2572...e073F1bf6
0.45 ETH0.00057525
Transfer99230262020-04-22 15:17:191604 days ago1587568639IN
0x44eD2572...e073F1bf6
0.85561471 ETH0.00032214
Transfer96508112020-03-11 14:42:361646 days ago1583937756IN
0x44eD2572...e073F1bf6
0.2 ETH0.000185878
Transfer96506872020-03-11 14:14:401646 days ago1583936080IN
0x44eD2572...e073F1bf6
0.0005 ETH0.000185878
Transfer96506272020-03-11 14:01:371646 days ago1583935297IN
0x44eD2572...e073F1bf6
0.2 ETH0.0001688
Transfer85225152019-09-10 14:03:371829 days ago1568124217IN
0x44eD2572...e073F1bf6
0.01 ETH0.0004220

Latest 16 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
141195202022-02-01 10:09:34954 days ago1643710174
0x44eD2572...e073F1bf6
0.01206987 ETH
140375672022-01-19 18:25:47966 days ago1642616747
0x44eD2572...e073F1bf6
0.0242 ETH
133464322021-10-03 13:16:361075 days ago1633266996
0x44eD2572...e073F1bf6
0.00388508 ETH
133463742021-10-03 13:02:281075 days ago1633266148
0x44eD2572...e073F1bf6
0.00402913 ETH
104756472020-07-17 7:40:561518 days ago1594971656
0x44eD2572...e073F1bf6
0.05303362 ETH
101281362020-05-24 11:02:031572 days ago1590318123
0x44eD2572...e073F1bf6
0.00525197 ETH
101281362020-05-24 11:02:031572 days ago1590318123
0x44eD2572...e073F1bf6
0.18495976 ETH
101281312020-05-24 11:01:181572 days ago1590318078
0x44eD2572...e073F1bf6
0.0002771 ETH
101281312020-05-24 11:01:181572 days ago1590318078
0x44eD2572...e073F1bf6
0.18473687 ETH
101281282020-05-24 11:00:331572 days ago1590318033
0x44eD2572...e073F1bf6
0.0005 ETH
101281082020-05-24 10:56:011572 days ago1590317761
0x44eD2572...e073F1bf6
0.00048274 ETH
101281082020-05-24 10:56:011572 days ago1590317761
0x44eD2572...e073F1bf6
0.32134734 ETH
101280152020-05-24 10:36:571572 days ago1590316617
0x44eD2572...e073F1bf6
0.0005 ETH
96508252020-03-11 14:45:091646 days ago1583937909
0x44eD2572...e073F1bf6
0.0003 ETH
96508252020-03-11 14:45:091646 days ago1583937909
0x44eD2572...e073F1bf6
0.1997 ETH
85211762019-09-10 9:01:321829 days ago1568106092  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.