ETH Price: $3,422.83 (+4.25%)

Contract

0x4e14E9c50384f713b15c9Dddc5d8B1222aFE42cF
 

Overview

ETH Balance

25.132960150001845194 ETH

Eth Value

$86,025.96 (@ $3,422.83/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer117525692021-01-29 19:00:561393 days ago1611946856IN
0x4e14E9c5...22aFE42cF
24.2668 ETH0.0020678289
Transfer78081392019-05-22 6:50:582012 days ago1558507858IN
0x4e14E9c5...22aFE42cF
10.56595074 ETH0.0003949717
Transfer78081052019-05-22 6:43:532012 days ago1558507433IN
0x4e14E9c5...22aFE42cF
28.48620741 ETH0.0003949717
Transfer73996132019-03-19 13:50:542076 days ago1553003454IN
0x4e14E9c5...22aFE42cF
5.64845609 ETH0.0009293640
Transfer73995722019-03-19 13:38:292076 days ago1553002709IN
0x4e14E9c5...22aFE42cF
0.46875 ETH0.0009293640

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
185614312023-11-13 7:15:47376 days ago1699859747
0x4e14E9c5...22aFE42cF
14.94996027 ETH
169183352023-03-27 11:11:11607 days ago1679915471
0x4e14E9c5...22aFE42cF
9.49473448 ETH
169183102023-03-27 11:06:11607 days ago1679915171
0x4e14E9c5...22aFE42cF
0.56611838 ETH
157254152022-10-11 14:18:23774 days ago1665497903
0x4e14E9c5...22aFE42cF
0.0029378 ETH
157254152022-10-11 14:18:23774 days ago1665497903
0x4e14E9c5...22aFE42cF
15.5 ETH
157251882022-10-11 13:32:47774 days ago1665495167
0x4e14E9c5...22aFE42cF
0.00337046 ETH
157251882022-10-11 13:32:47774 days ago1665495167
0x4e14E9c5...22aFE42cF
6.1 ETH
142685092022-02-24 11:25:331003 days ago1645701933
0x4e14E9c5...22aFE42cF
0.02024717 ETH
142685092022-02-24 11:25:331003 days ago1645701933
0x4e14E9c5...22aFE42cF
0.2 ETH
141029442022-01-29 20:54:491028 days ago1643489689
0x4e14E9c5...22aFE42cF
0.0189351 ETH
141029442022-01-29 20:54:491028 days ago1643489689
0x4e14E9c5...22aFE42cF
12 ETH
141020452022-01-29 17:38:561029 days ago1643477936
0x4e14E9c5...22aFE42cF
0.02068835 ETH
141020452022-01-29 17:38:561029 days ago1643477936
0x4e14E9c5...22aFE42cF
2 ETH
139729562022-01-09 18:24:341049 days ago1641752674
0x4e14E9c5...22aFE42cF
0.03106259 ETH
137839072021-12-11 12:42:301078 days ago1639226550
0x4e14E9c5...22aFE42cF
0.02216868 ETH
125954122021-06-08 18:08:431264 days ago1623175723
0x4e14E9c5...22aFE42cF
0.04426145 ETH
125954122021-06-08 18:08:431264 days ago1623175723
0x4e14E9c5...22aFE42cF
0.03012748 ETH
125954122021-06-08 18:08:431264 days ago1623175723
0x4e14E9c5...22aFE42cF
6.03899298 ETH
125919062021-06-08 5:09:481264 days ago1623128988
0x4e14E9c5...22aFE42cF
0.03275023 ETH
125919062021-06-08 5:09:481264 days ago1623128988
0x4e14E9c5...22aFE42cF
0.05152732 ETH
125919062021-06-08 5:09:481264 days ago1623128988
0x4e14E9c5...22aFE42cF
10.34175802 ETH
124679012021-05-19 23:57:531283 days ago1621468673
0x4e14E9c5...22aFE42cF
0.16164341 ETH
124678832021-05-19 23:53:471283 days ago1621468427
0x4e14E9c5...22aFE42cF
0.23318148 ETH
124678832021-05-19 23:53:471283 days ago1621468427
0x4e14E9c5...22aFE42cF
0.1001533 ETH
124678832021-05-19 23:53:471283 days ago1621468427
0x4e14E9c5...22aFE42cF
20.11498852 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.