ETH Price: $3,336.54 (-0.37%)
 
Transaction Hash
Method
Block
From
To
Transfer133259642021-09-30 8:14:471188 days ago1632989687IN
0x45b76D4c...a844aefaB
0.245 ETH0.0020213587
Transfer125230442021-05-28 13:16:241313 days ago1622207784IN
0x45b76D4c...a844aefaB
1.75 ETH0.0010919947
Transfer109638252020-09-30 12:44:231553 days ago1601469863IN
0x45b76D4c...a844aefaB
1.1 ETH0.0013940460
Transfer96650862020-03-13 19:53:221754 days ago1584129202IN
0x45b76D4c...a844aefaB
10.81 ETH0.000278812
Transfer96579882020-03-12 17:13:311755 days ago1584033211IN
0x45b76D4c...a844aefaB
15 ETH0.00353156152
Transfer84407892019-08-28 20:33:021952 days ago1567024382IN
0x45b76D4c...a844aefaB
177 ETH0.0003252714
Transfer84407822019-08-28 20:31:471952 days ago1567024307IN
0x45b76D4c...a844aefaB
177 ETH0.0003252714
Transfer84407622019-08-28 20:26:251952 days ago1567023985IN
0x45b76D4c...a844aefaB
177 ETH0.00029414
Transfer84407382019-08-28 20:21:201952 days ago1567023680IN
0x45b76D4c...a844aefaB
177 ETH0.0001477
Transfer75855552019-04-17 13:30:402085 days ago1555507840IN
0x45b76D4c...a844aefaB
4.77391912 ETH0.0012058451.9

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
203253662024-07-17 9:31:11167 days ago1721208671
0x45b76D4c...a844aefaB
0.00170183 ETH
203253662024-07-17 9:31:11167 days ago1721208671
0x45b76D4c...a844aefaB
0.05 ETH
184225942023-10-24 20:47:35434 days ago1698180455
0x45b76D4c...a844aefaB
0.00318638 ETH
184225942023-10-24 20:47:35434 days ago1698180455
0x45b76D4c...a844aefaB
8.6 ETH
184224412023-10-24 20:16:47434 days ago1698178607
0x45b76D4c...a844aefaB
0.00356435 ETH
184224412023-10-24 20:16:47434 days ago1698178607
0x45b76D4c...a844aefaB
0.2 ETH
180920962023-09-08 13:48:59480 days ago1694180939
0x45b76D4c...a844aefaB
0.00286121 ETH
180920962023-09-08 13:48:59480 days ago1694180939
0x45b76D4c...a844aefaB
0.03685503 ETH
177705112023-07-25 13:49:11525 days ago1690292951
0x45b76D4c...a844aefaB
0.00722182 ETH
177705112023-07-25 13:49:11525 days ago1690292951
0x45b76D4c...a844aefaB
1 ETH
154729342022-09-04 17:30:38849 days ago1662312638
0x45b76D4c...a844aefaB
0.00324581 ETH
154729342022-09-04 17:30:38849 days ago1662312638
0x45b76D4c...a844aefaB
0.05 ETH
150141292022-06-23 17:46:45922 days ago1656006405
0x45b76D4c...a844aefaB
0.03315336 ETH
150141292022-06-23 17:46:45922 days ago1656006405
0x45b76D4c...a844aefaB
9.5400301 ETH
138049152021-12-14 18:29:161113 days ago1639506556
0x45b76D4c...a844aefaB
0.00773827 ETH
138049152021-12-14 18:29:161113 days ago1639506556
0x45b76D4c...a844aefaB
0.51 ETH
138048952021-12-14 18:25:211113 days ago1639506321
0x45b76D4c...a844aefaB
0.02087476 ETH
138048952021-12-14 18:25:211113 days ago1639506321
0x45b76D4c...a844aefaB
0.99258565 ETH
137958482021-12-13 8:54:051114 days ago1639385645
0x45b76D4c...a844aefaB
0.00786293 ETH
134430152021-10-18 17:00:251170 days ago1634576425
0x45b76D4c...a844aefaB
0.02572328 ETH
134181912021-10-14 19:31:301174 days ago1634239890
0x45b76D4c...a844aefaB
0.02718288 ETH
134181852021-10-14 19:29:361174 days ago1634239776
0x45b76D4c...a844aefaB
0.01688801 ETH
133260752021-09-30 8:45:481188 days ago1632991548
0x45b76D4c...a844aefaB
0.01420461 ETH
133260752021-09-30 8:45:481188 days ago1632991548
0x45b76D4c...a844aefaB
0.2 ETH
133260652021-09-30 8:43:101188 days ago1632991390
0x45b76D4c...a844aefaB
0.01486318 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.