ETH Price: $2,408.46 (+2.96%)
Gas: 6.67 Gwei

Contract

0x28055671A9FC4fad057A80C86e3824cC32C63327
 

Overview

ETH Balance

0.000795684689820864 ETH

Eth Value

$1.92 (@ $2,408.46/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer140323622022-01-18 22:55:15968 days ago1642546515IN
0x28055671...C32C63327
2.5 ETH0.00320002137.73024081
Transfer139593492022-01-07 16:21:17979 days ago1641572477IN
0x28055671...C32C63327
0.1 ETH0.00423375182.2221754
Transfer123295722021-04-28 14:50:441234 days ago1619621444IN
0x28055671...C32C63327
0.1 ETH0.0025325109
Transfer122921762021-04-22 20:30:331239 days ago1619123433IN
0x28055671...C32C63327
0.60641797 ETH0.00332246143
Transfer118441112021-02-12 20:49:491308 days ago1613162989IN
0x28055671...C32C63327
0.3 ETH0.00504177217
Transfer118231452021-02-09 15:41:081312 days ago1612885268IN
0x28055671...C32C63327
0.5 ETH0.00462356199
Transfer118047092021-02-06 19:41:421314 days ago1612640502IN
0x28055671...C32C63327
15 ETH0.00334569144
Transfer115906942021-01-04 22:19:411347 days ago1609798781IN
0x28055671...C32C63327
0.5 ETH0.0021142991
Transfer113723282020-12-02 9:51:241381 days ago1606902684IN
0x28055671...C32C63327
2.82168746 ETH0.0006040826
Transfer93931872020-02-01 0:07:561686 days ago1580515676IN
0x28055671...C32C63327
0.24035777 ETH0.000046462

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
195145752024-03-25 22:53:47171 days ago1711407227
0x28055671...C32C63327
0.00326292 ETH
195145752024-03-25 22:53:47171 days ago1711407227
0x28055671...C32C63327
0.16803844 ETH
195145722024-03-25 22:53:11171 days ago1711407191
0x28055671...C32C63327
0.00427739 ETH
195145602024-03-25 22:50:47171 days ago1711407047
0x28055671...C32C63327
0.01483175 ETH
195145602024-03-25 22:50:47171 days ago1711407047
0x28055671...C32C63327
0.00056859 ETH
195145602024-03-25 22:50:47171 days ago1711407047
0x28055671...C32C63327
0.1142912 ETH
167457962023-03-03 5:06:35560 days ago1677819995
0x28055671...C32C63327
0.00240684 ETH
167457962023-03-03 5:06:35560 days ago1677819995
0x28055671...C32C63327
2.25 ETH
167442472023-03-02 23:51:47560 days ago1677801107
0x28055671...C32C63327
2.19919394 ETH
145837702022-04-14 13:20:24883 days ago1649942424
0x28055671...C32C63327
0.00834818 ETH
145837702022-04-14 13:20:24883 days ago1649942424
0x28055671...C32C63327
0.4 ETH
140323772022-01-18 22:58:12968 days ago1642546692
0x28055671...C32C63327
0.02598169 ETH
140323772022-01-18 22:58:12968 days ago1642546692
0x28055671...C32C63327
2 ETH
139593942022-01-07 16:32:25979 days ago1641573145
0x28055671...C32C63327
0.03636037 ETH
131445712021-09-02 6:04:121107 days ago1630562652
0x28055671...C32C63327
0.01091765 ETH
131445712021-09-02 6:04:121107 days ago1630562652
0x28055671...C32C63327
9.18805167 ETH
131424292021-09-01 22:21:321107 days ago1630534892
0x28055671...C32C63327
0.02966112 ETH
131424292021-09-01 22:21:321107 days ago1630534892
0x28055671...C32C63327
9.17534557 ETH
129033982021-07-26 18:23:561144 days ago1627323836
0x28055671...C32C63327
0.0038937 ETH
129033712021-07-26 18:18:501144 days ago1627323530
0x28055671...C32C63327
0.01607348 ETH
127232382021-06-28 15:13:141173 days ago1624893194
0x28055671...C32C63327
0.00486516 ETH
127232382021-06-28 15:13:141173 days ago1624893194
0x28055671...C32C63327
1 ETH
123286292021-04-28 11:13:371234 days ago1619608417
0x28055671...C32C63327
0.00472923 ETH
123285912021-04-28 11:05:551234 days ago1619607955
0x28055671...C32C63327
0.00664458 ETH
122969342021-04-23 14:18:071239 days ago1619187487
0x28055671...C32C63327
0.03909995 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.