ETH Price: $2,803.08 (+1.33%)

Contract

0x0Cb526d3d0404594730F6Ea875280401932A1401
 

Overview

ETH Balance

0.00015068562 ETH

Eth Value

$0.42 (@ $2,803.08/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer118540492021-02-14 9:38:401470 days ago1613295520IN
0x0Cb526d3...1932A1401
0.045 ETH0.00274161118
Transfer100708532020-05-15 12:51:591745 days ago1589547119IN
0x0Cb526d3...1932A1401
6.443 ETH0.0006970230

Latest 17 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
143616742022-03-10 21:57:461080 days ago1646949466
0x0Cb526d3...1932A1401
0.00401383 ETH
143616742022-03-10 21:57:461080 days ago1646949466
0x0Cb526d3...1932A1401
6.25601242 ETH
118541152021-02-14 9:54:181470 days ago1613296458
0x0Cb526d3...1932A1401
0.04204952 ETH
118541152021-02-14 9:54:181470 days ago1613296458
0x0Cb526d3...1932A1401
6.25 ETH
118539812021-02-14 9:22:571470 days ago1613294577
0x0Cb526d3...1932A1401
0.0356062 ETH
118539762021-02-14 9:22:081470 days ago1613294528
0x0Cb526d3...1932A1401
0.01602754 ETH
118539272021-02-14 9:11:151470 days ago1613293875
0x0Cb526d3...1932A1401
0.05025199 ETH
118538742021-02-14 8:59:571470 days ago1613293197
0x0Cb526d3...1932A1401
0.02087895 ETH
118538742021-02-14 8:59:571470 days ago1613293197
0x0Cb526d3...1932A1401
0.02357871 ETH
100838502020-05-17 13:26:481743 days ago1589722008
0x0Cb526d3...1932A1401
0.0205298 ETH
100838502020-05-17 13:26:481743 days ago1589722008
0x0Cb526d3...1932A1401
6.25 ETH
100838362020-05-17 13:22:541743 days ago1589721774
0x0Cb526d3...1932A1401
0.00258861 ETH
100838082020-05-17 13:17:091743 days ago1589721429
0x0Cb526d3...1932A1401
0.01631169 ETH
97395982020-03-25 9:09:231796 days ago1585127363
0x0Cb526d3...1932A1401
0.00014355 ETH
97395982020-03-25 9:09:231796 days ago1585127363
0x0Cb526d3...1932A1401
0.09556226 ETH
97395852020-03-25 9:06:381796 days ago1585127198
0x0Cb526d3...1932A1401
0.09570582 ETH
97394812020-03-25 8:42:491796 days ago1585125769  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.