ETH Price: $2,528.60 (-18.31%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer By User78961972019-06-05 1:05:082070 days ago1559696708IN
0xE58F0D89...a173449e3
0 ETH0.000207694.5
Transfer By User78961952019-06-05 1:04:572070 days ago1559696697IN
0xE58F0D89...a173449e3
0 ETH0.000438344.5
Transfer78851522019-06-03 7:33:372071 days ago1559547217IN
0xE58F0D89...a173449e3
0.0307 ETH0.0003801710
Transfer By User78806732019-06-02 14:35:322072 days ago1559486132IN
0xE58F0D89...a173449e3
0 ETH0.000438425
Transfer By User78806542019-06-02 14:31:272072 days ago1559485887IN
0xE58F0D89...a173449e3
0 ETH0.000612365
Change Impl78572672019-05-29 22:38:132076 days ago1559169493IN
0xE58F0D89...a173449e3
0 ETH0.00018872.5
Transfer77349582019-05-10 20:35:452095 days ago1557520545IN
0xE58F0D89...a173449e3
0.53315 ETH0.000114053
Transfer77205572019-05-08 14:25:232097 days ago1557325523IN
0xE58F0D89...a173449e3
0.0391 ETH0.0003801710
Transfer75781752019-04-16 9:45:012119 days ago1555407901IN
0xE58F0D89...a173449e3
5.963241 ETH0.000376369.9
Transfer75519072019-04-12 7:54:362123 days ago1555055676IN
0xE58F0D89...a173449e3
4.306037 ETH0.000477159

Latest 10 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
78961952019-06-05 1:04:572070 days ago1559696697
0xE58F0D89...a173449e3
0.0307 ETH
78961952019-06-05 1:04:572070 days ago1559696697
0xE58F0D89...a173449e3
0.0307 ETH
78851522019-06-03 7:33:372071 days ago1559547217
0xE58F0D89...a173449e3
0.0307 ETH
78806542019-06-02 14:31:272072 days ago1559485887
0xE58F0D89...a173449e3
10.855178 ETH
78806542019-06-02 14:31:272072 days ago1559485887
0xE58F0D89...a173449e3
10.855178 ETH
77349582019-05-10 20:35:452095 days ago1557520545
0xE58F0D89...a173449e3
0.53315 ETH
77205572019-05-08 14:25:232097 days ago1557325523
0xE58F0D89...a173449e3
0.0391 ETH
75781752019-04-16 9:45:012119 days ago1555407901
0xE58F0D89...a173449e3
5.963241 ETH
75519072019-04-12 7:54:362123 days ago1555055676
0xE58F0D89...a173449e3
4.306037 ETH
73109972019-03-05 18:45:432161 days ago1551811543  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xD9b664Bd...dd43999B0
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 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-03-22
*/

pragma solidity ^0.4.13;

contract Proxy {

    // masterCopy always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    address masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)
        public
    {
        require(_masterCopy != 0, "Invalid master copy address provided");
        masterCopy = _masterCopy;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    function ()
        external
        payable
    {
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas, masterCopy, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) { revert(0, returndatasize()) }
            return(0, returndatasize())
        }
    }

    function implementation()
        public
        view
        returns (address)
    {
        return masterCopy;
    }

    function proxyType()
        public
        pure
        returns (uint256)
    {
        return 2;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"proxyType","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_masterCopy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040526004361061004b5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416634555d5c981146100885780635c60da1b146100af575b73ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e801515610083573d6000fd5b3d6000f35b34801561009457600080fd5b5061009d6100ed565b60408051918252519081900360200190f35b3480156100bb57600080fd5b506100c46100f2565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b600290565b60005473ffffffffffffffffffffffffffffffffffffffff16905600a165627a7a7230582000e8963a53396a420e260d6762a2b264be1db09b89fce92475fadd0600ddeffb0029

Deployed Bytecode Sourcemap

28:1387:0:-;;;;;;;;;;;;;;;;;;;;;;;;;814:42;810:1;804:8;800:57;890:14;887:1;884;871:34;986:1;983;967:14;964:1;952:10;947:3;934:54;1023:16;1020:1;1017;1002:38;1057:14;;1054:2;;;1084:16;1081:1;1074:27;1054:2;1127:16;1124:1;1117:27;1302:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1302:110:0;;;;;;;;;;;;;;;;;;;;1170:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1170:124:0;;;;;;;;;;;;;;;;;;;;;;;1302:110;1403:1;1302:110;:::o;1170:124::-;1244:7;1276:10;;;1170:124;:::o

Swarm Source

bzzr://00e8963a53396a420e260d6762a2b264be1db09b89fce92475fadd0600ddeffb

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.