ETH Price: $3,456.52 (+0.20%)
Gas: 4 Gwei

Contract

0x68ECc35874691541CAd7Deb4Fa7386a62474401b
 
Transaction Hash
Method
Block
From
To
Transfer139206642022-01-01 16:39:32933 days ago1641055172IN
0x68ECc358...62474401b
0.05675057 ETH0.0019964385.92748969
Transfer103173332020-06-22 19:01:021491 days ago1592852462IN
0x68ECc358...62474401b
6.09680948 ETH0.0008828938
Transfer96592262020-03-12 21:46:211593 days ago1584049581IN
0x68ECc358...62474401b
1.0097 ETH0.0018122578
Transfer88233162019-10-27 19:06:481730 days ago1572203208IN
0x68ECc358...62474401b
1.1 ETH0.0003717416
Transfer87333592019-10-13 13:18:001745 days ago1570972680IN
0x68ECc358...62474401b
1.9 ETH0.0003485115
Transfer87324822019-10-13 9:59:371745 days ago1570960777IN
0x68ECc358...62474401b
3 ETH0.000278812
Transfer84439712019-08-29 8:26:041790 days ago1567067164IN
0x68ECc358...62474401b
1 ETH0.0003252714

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
142430082022-02-20 12:50:02884 days ago1645361402
0x68ECc358...62474401b
0.00601482 ETH
139318202022-01-03 10:01:47932 days ago1641204107
0x68ECc358...62474401b
0.01560662 ETH
139206872022-01-01 16:45:08933 days ago1641055508
0x68ECc358...62474401b
0.01446988 ETH
139206762022-01-01 16:42:26933 days ago1641055346
0x68ECc358...62474401b
0.01433923 ETH
128522832021-07-18 18:46:181100 days ago1626633978
0x68ECc358...62474401b
0.00323549 ETH
128522832021-07-18 18:46:181100 days ago1626633978
0x68ECc358...62474401b
8.26760924 ETH
128522652021-07-18 18:41:541100 days ago1626633714
0x68ECc358...62474401b
0.00830486 ETH
128522652021-07-18 18:41:541100 days ago1626633714
0x68ECc358...62474401b
0.01444956 ETH
128522652021-07-18 18:41:541100 days ago1626633714
0x68ECc358...62474401b
2.9043958 ETH
128522572021-07-18 18:40:151100 days ago1626633615
0x68ECc358...62474401b
0.00815085 ETH
128522572021-07-18 18:40:151100 days ago1626633615
0x68ECc358...62474401b
0.00106329 ETH
128522572021-07-18 18:40:151100 days ago1626633615
0x68ECc358...62474401b
0.21372711 ETH
126203752021-06-12 15:12:591137 days ago1623510779
0x68ECc358...62474401b
0.00820622 ETH
126203752021-06-12 15:12:591137 days ago1623510779
0x68ECc358...62474401b
2 ETH
118960652021-02-20 20:46:211248 days ago1613853981
0x68ECc358...62474401b
0.02425651 ETH
118960652021-02-20 20:46:211248 days ago1613853981
0x68ECc358...62474401b
3 ETH
118960412021-02-20 20:40:591248 days ago1613853659
0x68ECc358...62474401b
0.01648893 ETH
118960412021-02-20 20:40:591248 days ago1613853659
0x68ECc358...62474401b
0.01 ETH
113289552020-11-25 17:48:151335 days ago1606326495
0x68ECc358...62474401b
0.02333911 ETH
113289552020-11-25 17:48:151335 days ago1606326495
0x68ECc358...62474401b
0.1112116 ETH
113074352020-11-22 10:24:071339 days ago1606040647
0x68ECc358...62474401b
0.0080435 ETH
113074122020-11-22 10:18:161339 days ago1606040296
0x68ECc358...62474401b
0.01370232 ETH
113068192020-11-22 8:03:571339 days ago1606032237
0x68ECc358...62474401b
0.01573633 ETH
113068132020-11-22 8:02:121339 days ago1606032132
0x68ECc358...62474401b
0.01603576 ETH
112846282020-11-18 22:31:341342 days ago1605738694
0x68ECc358...62474401b
0.01951065 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.