ETH Price: $1,846.87 (-0.86%)
 

Overview

ETH Balance

0.000055461298746095 ETH

Eth Value

$0.10 (@ $1,846.87/ETH)

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer219529472025-03-01 15:35:23359 days ago1740843323IN
0x5622bCfC...7d7fC5a1A
0.08012297 ETH0.000023271.00181783
Transfer219459462025-02-28 16:09:59360 days ago1740758999IN
0x5622bCfC...7d7fC5a1A
0.25391749 ETH0.000075253.23888729

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer225316262025-05-21 13:40:47278 days ago1747834847
0x5622bCfC...7d7fC5a1A
0.00024901 ETH
Transfer225316262025-05-21 13:40:47278 days ago1747834847
0x5622bCfC...7d7fC5a1A
0.34994504 ETH
Transfer225315742025-05-21 13:30:23278 days ago1747834223
0x5622bCfC...7d7fC5a1A
0.00069098 ETH
Transfer225315742025-05-21 13:30:23278 days ago1747834223
0x5622bCfC...7d7fC5a1A
0.00163697 ETH
Transfer225315742025-05-21 13:30:23278 days ago1747834223
0x5622bCfC...7d7fC5a1A
0.32904068 ETH
Transfer225315712025-05-21 13:29:47278 days ago1747834187
0x5622bCfC...7d7fC5a1A
0.00052999 ETH
Transfer219567092025-03-02 4:10:35358 days ago1740888635
0x5622bCfC...7d7fC5a1A
0.00012068 ETH
Transfer219529582025-03-01 15:37:35359 days ago1740843455
0x5622bCfC...7d7fC5a1A
0.00032778 ETH
Transfer219529542025-03-01 15:36:47359 days ago1740843407
0x5622bCfC...7d7fC5a1A
0.00035746 ETH
Transfer219529542025-03-01 15:36:47359 days ago1740843407
0x5622bCfC...7d7fC5a1A
0.00042 ETH
Transfer*219529542025-03-01 15:36:47359 days ago1740843407
0x5622bCfC...7d7fC5a1A
0.08358 ETH
Transfer219459632025-02-28 16:13:23360 days ago1740759203
0x5622bCfC...7d7fC5a1A
0.0007482 ETH
Transfer219459572025-02-28 16:12:11360 days ago1740759131
0x5622bCfC...7d7fC5a1A
0.00055358 ETH
Transfer219459572025-02-28 16:12:11360 days ago1740759131
0x5622bCfC...7d7fC5a1A
0.00117 ETH
Transfer*219459572025-02-28 16:12:11360 days ago1740759131
0x5622bCfC...7d7fC5a1A
0.23283 ETH
Transfer219459162025-02-28 16:03:59360 days ago1740758639
0x5622bCfC...7d7fC5a1A
0.00023033 ETH
-143725152022-03-12 14:39:311444 days ago1647095971
0x5622bCfC...7d7fC5a1A
0.00903322 ETH
-143725152022-03-12 14:39:311444 days ago1647095971
0x5622bCfC...7d7fC5a1A
0.00009698 ETH
-143725152022-03-12 14:39:311444 days ago1647095971
0x5622bCfC...7d7fC5a1A
0.01949459 ETH
-119068722021-02-22 12:37:251827 days ago1613997445
0x5622bCfC...7d7fC5a1A
0.2 ETH
-119068512021-02-22 12:33:401827 days ago1613997220
0x5622bCfC...7d7fC5a1A
0.2 ETH
-117251022021-01-25 13:19:501855 days ago1611580790
0x5622bCfC...7d7fC5a1A
0.0076 ETH
-117251022021-01-25 13:19:501855 days ago1611580790
0x5622bCfC...7d7fC5a1A
0.04365 ETH
-117250962021-01-25 13:18:561855 days ago1611580736
0x5622bCfC...7d7fC5a1A
0.00875 ETH
-117250892021-01-25 13:17:391855 days ago1611580659
0x5622bCfC...7d7fC5a1A
0.06 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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

Contract Source Code (Solidity)

/**
 *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 - <julien@argent.xyz>
 */
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

API
[{"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"}]

0x608060405234801561001057600080fd5b50604051602080610127833981016040525160008054600160a060020a03909216600160a060020a031990921691909117905560d6806100516000396000f30060806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029000000000000000000000000b1dd690cc9af7bb1a906a9b5a94f94191cc553ce

Deployed Bytecode

0x60806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029

Swarm Source

bzzr://09ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.