ETH Price: $2,339.02 (-3.12%)

Contract

0xE2B731BebdD1aA666A66b45E111f6F6c4f3E5113
 
Transaction Hash
Method
Block
From
To
Transfer164840522023-01-25 13:12:11764 days ago1674652331IN
0xE2B731Be...c4f3E5113
0.237 ETH0.0003771516.23284689
Transfer156384492022-09-29 10:36:47882 days ago1664447807IN
0xE2B731Be...c4f3E5113
0.037 ETH0.000164577.0835809
Transfer136854832021-11-25 20:04:171189 days ago1637870657IN
0xE2B731Be...c4f3E5113
0.1 ETH0.00295881127.34846179
Transfer93985532020-02-01 19:59:131852 days ago1580587153IN
0xE2B731Be...c4f3E5113
25 ETH0.00006973
Transfer80971562019-07-06 10:20:272063 days ago1562408427IN
0xE2B731Be...c4f3E5113
0.00386004 ETH0.0004646820

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
197753802024-05-01 12:48:47302 days ago1714567727
0xE2B731Be...c4f3E5113
0.00104385 ETH
197753802024-05-01 12:48:47302 days ago1714567727
0xE2B731Be...c4f3E5113
0.06855425 ETH
197243452024-04-24 9:28:23309 days ago1713950903
0xE2B731Be...c4f3E5113
0.00266524 ETH
197243452024-04-24 9:28:23309 days ago1713950903
0xE2B731Be...c4f3E5113
0.00009979 ETH
197243452024-04-24 9:28:23309 days ago1713950903
0xE2B731Be...c4f3E5113
0.02005948 ETH
197243402024-04-24 9:27:23309 days ago1713950843
0xE2B731Be...c4f3E5113
0.00119615 ETH
197243392024-04-24 9:27:11309 days ago1713950831
0xE2B731Be...c4f3E5113
0.00134682 ETH
197243372024-04-24 9:26:35309 days ago1713950795
0xE2B731Be...c4f3E5113
0.00116652 ETH
197243362024-04-24 9:26:23309 days ago1713950783
0xE2B731Be...c4f3E5113
0.00110066 ETH
197243352024-04-24 9:26:11309 days ago1713950771
0xE2B731Be...c4f3E5113
0.00115275 ETH
197243342024-04-24 9:25:59309 days ago1713950759
0xE2B731Be...c4f3E5113
0.00118955 ETH
197243322024-04-24 9:25:35309 days ago1713950735
0xE2B731Be...c4f3E5113
0.00116854 ETH
197243322024-04-24 9:25:35309 days ago1713950735
0xE2B731Be...c4f3E5113
0.00111738 ETH
197243302024-04-24 9:25:11309 days ago1713950711
0xE2B731Be...c4f3E5113
0.00125789 ETH
197243282024-04-24 9:24:47309 days ago1713950687
0xE2B731Be...c4f3E5113
0.00152741 ETH
197243232024-04-24 9:23:47309 days ago1713950627
0xE2B731Be...c4f3E5113
0.00161098 ETH
194272372024-03-13 16:08:23350 days ago1710346103
0xE2B731Be...c4f3E5113
0.03025208 ETH
194272152024-03-13 16:03:47350 days ago1710345827
0xE2B731Be...c4f3E5113
0.01201216 ETH
194272092024-03-13 16:02:35350 days ago1710345755
0xE2B731Be...c4f3E5113
0.01491642 ETH
193040442024-02-25 10:37:11368 days ago1708857431
0xE2B731Be...c4f3E5113
0.00333976 ETH
185726152023-11-14 20:46:11470 days ago1699994771
0xE2B731Be...c4f3E5113
0.00698356 ETH
185726092023-11-14 20:44:59470 days ago1699994699
0xE2B731Be...c4f3E5113
0.04131335 ETH
185725292023-11-14 20:28:47470 days ago1699993727
0xE2B731Be...c4f3E5113
0.00554793 ETH
185725202023-11-14 20:26:59470 days ago1699993619
0xE2B731Be...c4f3E5113
0.00691493 ETH
185204622023-11-07 13:45:47477 days ago1699364747
0xE2B731Be...c4f3E5113
0.05330448 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

API
[{"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.