ETH Price: $3,436.03 (+1.93%)
Gas: 2 Gwei

Contract

0x759a50c5FC0D210c6b514e71504F841Fd2AB9Bf9
 
Transaction Hash
Method
Block
From
To
Value
Transfer118049202021-02-06 20:29:131240 days ago1612643353IN
0x759a50c5...Fd2AB9Bf9
0.96177951 ETH0.00355689153.09
Transfer113285372020-11-25 16:18:041313 days ago1606321084IN
0x759a50c5...Fd2AB9Bf9
0.9923 ETH0.0018401379.2
Transfer101789592020-06-01 8:38:411490 days ago1591000721IN
0x759a50c5...Fd2AB9Bf9
0.67 ETH0.0007388431.8

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To Value
185692602023-11-14 9:30:47229 days ago1699954247
0x759a50c5...Fd2AB9Bf9
0.00172658 ETH
185655982023-11-13 21:15:35230 days ago1699910135
0x759a50c5...Fd2AB9Bf9
0.21931584 ETH
174589142023-06-11 19:23:47385 days ago1686511427
0x759a50c5...Fd2AB9Bf9
0.00425831 ETH
174589032023-06-11 19:21:11385 days ago1686511271
0x759a50c5...Fd2AB9Bf9
0.00599905 ETH
174589002023-06-11 19:20:35385 days ago1686511235
0x759a50c5...Fd2AB9Bf9
0.00454738 ETH
138025992021-12-14 9:56:14929 days ago1639475774
0x759a50c5...Fd2AB9Bf9
0.00778356 ETH
126192982021-06-12 11:08:011114 days ago1623496081
0x759a50c5...Fd2AB9Bf9
0.0013518 ETH
123433172021-04-30 18:04:131157 days ago1619805853
0x759a50c5...Fd2AB9Bf9
0.01346484 ETH
123433172021-04-30 18:04:131157 days ago1619805853
0x759a50c5...Fd2AB9Bf9
0.36 ETH
123426652021-04-30 15:32:211157 days ago1619796741
0x759a50c5...Fd2AB9Bf9
0.03195171 ETH
123426652021-04-30 15:32:211157 days ago1619796741
0x759a50c5...Fd2AB9Bf9
0.51055329 ETH
121587212021-04-02 7:21:071185 days ago1617348067
0x759a50c5...Fd2AB9Bf9
0.05494168 ETH
121465042021-03-31 10:16:321187 days ago1617185792
0x759a50c5...Fd2AB9Bf9
0.09487992 ETH
118050032021-02-06 20:47:311240 days ago1612644451
0x759a50c5...Fd2AB9Bf9
0.0252973 ETH
118050032021-02-06 20:47:311240 days ago1612644451
0x759a50c5...Fd2AB9Bf9
1 ETH
113427032020-11-27 20:39:401311 days ago1606509580
0x759a50c5...Fd2AB9Bf9
0.0138379 ETH
113356062020-11-26 18:15:051312 days ago1606414505
0x759a50c5...Fd2AB9Bf9
0.0144783 ETH
113356062020-11-26 18:15:051312 days ago1606414505
0x759a50c5...Fd2AB9Bf9
0.5 ETH
101820712020-06-01 20:21:421490 days ago1591042902
0x759a50c5...Fd2AB9Bf9
0 ETH
101820712020-06-01 20:21:421490 days ago1591042902
0x759a50c5...Fd2AB9Bf9
0.4392 ETH
101820652020-06-01 20:19:381490 days ago1591042778
0x759a50c5...Fd2AB9Bf9
0.0006599 ETH
101820652020-06-01 20:19:381490 days ago1591042778
0x759a50c5...Fd2AB9Bf9
0.43993948 ETH
101808622020-06-01 15:48:121490 days ago1591026492
0x759a50c5...Fd2AB9Bf9
0.001005 ETH
101808622020-06-01 15:48:121490 days ago1591026492
0x759a50c5...Fd2AB9Bf9
0.668995 ETH
95911602020-03-02 10:40:171581 days ago1583145617  Contract Creation0 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.