ETH Price: $2,430.41 (+5.88%)

Contract

0x21F9d43489057B2d9E24785C9e5f84F6bC4A1Ba5
 
Transaction Hash
Method
Block
From
To
Transfer173793842023-05-31 14:15:11476 days ago1685542511IN
0x21F9d434...6bC4A1Ba5
41.2 ETH0.0010905746.93892676
Transfer160839862022-11-30 16:26:59658 days ago1669825619IN
0x21F9d434...6bC4A1Ba5
0.0001 ETH0.0002752111.84515361
Transfer160838322022-11-30 15:56:11658 days ago1669823771IN
0x21F9d434...6bC4A1Ba5
0.0001 ETH0.0002424911.54750373
Transfer157313082022-10-12 10:02:59707 days ago1665568979IN
0x21F9d434...6bC4A1Ba5
7.9013193 ETH0.0003949717
Transfer144797252022-03-29 7:20:24905 days ago1648538424IN
0x21F9d434...6bC4A1Ba5
1.6 ETH0.0005718624.61333081
Transfer138298682021-12-18 15:17:271005 days ago1639840647IN
0x21F9d434...6bC4A1Ba5
0.0294071 ETH0.0010948547.12313472
Transfer135952102021-11-11 13:34:011042 days ago1636637641IN
0x21F9d434...6bC4A1Ba5
3.8736 ETH0.00275605118.6216844

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
201012012024-06-16 1:55:2395 days ago1718502923
0x21F9d434...6bC4A1Ba5
0.00040762 ETH
201011662024-06-16 1:48:2395 days ago1718502503
0x21F9d434...6bC4A1Ba5
0.00043355 ETH
196653842024-04-16 3:31:47156 days ago1713238307
0x21F9d434...6bC4A1Ba5
0.00139499 ETH
177324222023-07-20 5:53:35427 days ago1689832415
0x21F9d434...6bC4A1Ba5
0.00225691 ETH
177323932023-07-20 5:47:47427 days ago1689832067
0x21F9d434...6bC4A1Ba5
0.00250448 ETH
174540022023-06-11 2:46:23466 days ago1686451583
0x21F9d434...6bC4A1Ba5
0.00264599 ETH
174282622023-06-07 11:41:11469 days ago1686138071
0x21F9d434...6bC4A1Ba5
0.0089948 ETH
174281942023-06-07 11:27:23469 days ago1686137243
0x21F9d434...6bC4A1Ba5
0.0040852 ETH
174262362023-06-07 4:48:35470 days ago1686113315
0x21F9d434...6bC4A1Ba5
0.00697991 ETH
173794222023-05-31 14:22:47476 days ago1685542967
0x21F9d434...6bC4A1Ba5
0.00529375 ETH
173794222023-05-31 14:22:47476 days ago1685542967
0x21F9d434...6bC4A1Ba5
41.26 ETH
168816902023-03-22 7:36:59547 days ago1679470619
0x21F9d434...6bC4A1Ba5
0.08501328 ETH
164905652023-01-26 11:02:59601 days ago1674730979
0x21F9d434...6bC4A1Ba5
0.00200341 ETH
164903202023-01-26 10:13:59601 days ago1674728039
0x21F9d434...6bC4A1Ba5
0.00231564 ETH
164903042023-01-26 10:10:47601 days ago1674727847
0x21F9d434...6bC4A1Ba5
0.00531305 ETH
164902832023-01-26 10:06:35601 days ago1674727595
0x21F9d434...6bC4A1Ba5
0.00225395 ETH
157314132022-10-12 10:23:59707 days ago1665570239
0x21F9d434...6bC4A1Ba5
0.0045354 ETH
157314132022-10-12 10:23:59707 days ago1665570239
0x21F9d434...6bC4A1Ba5
7.91 ETH
155443612022-09-16 6:18:11734 days ago1663309091
0x21F9d434...6bC4A1Ba5
0.00148478 ETH
155443372022-09-16 6:13:23734 days ago1663308803
0x21F9d434...6bC4A1Ba5
0.00244661 ETH
155435662022-09-16 3:37:23734 days ago1663299443
0x21F9d434...6bC4A1Ba5
0.00294485 ETH
154382882022-08-30 4:34:32751 days ago1661834072
0x21F9d434...6bC4A1Ba5
0.00311111 ETH
154382882022-08-30 4:34:32751 days ago1661834072
0x21F9d434...6bC4A1Ba5
41.5 ETH
154382772022-08-30 4:32:17751 days ago1661833937
0x21F9d434...6bC4A1Ba5
0.00292507 ETH
154382772022-08-30 4:32:17751 days ago1661833937
0x21F9d434...6bC4A1Ba5
41.38544329 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.