ETH Price: $2,525.56 (+0.27%)
Gas: 0.7 Gwei

Contract

0x09ef1DCEC36ffd21B6F16e8481a54D36a44d3684
 

Overview

ETH Balance

0.00022701854233536 ETH

Eth Value

$0.57 (@ $2,525.56/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer168269262023-03-14 14:56:59535 days ago1678805819IN
ENS Namej00ts.eth
0.62224937 ETH0.0011996351.63258713
Transfer167758872023-03-07 10:39:35542 days ago1678185575IN
ENS Namej00ts.eth
0.1 ETH0.0004636819.95710691
Transfer167626122023-03-05 13:52:23544 days ago1678024343IN
ENS Namej00ts.eth
0.13 ETH0.0005718724.61363325
Transfer166704042023-02-20 14:39:35557 days ago1676903975IN
ENS Namej00ts.eth
0.0865122 ETH0.0012136152.23463932
Transfer166132812023-02-12 14:28:59565 days ago1676212139IN
ENS Namej00ts.eth
0.0019627 ETH0.0003638415.66017174
Transfer160167862022-11-21 7:05:35648 days ago1669014335IN
ENS Namej00ts.eth
0.03271642 ETH0.0002472210.64056566
Transfer137962902021-12-13 10:34:32991 days ago1639391672IN
ENS Namej00ts.eth
0.0186 ETH0.0019516584

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
183764932023-10-18 9:57:23317 days ago1697623043
ENS Namej00ts.eth
0.00096319 ETH
183764932023-10-18 9:57:23317 days ago1697623043
ENS Namej00ts.eth
0.03697186 ETH
183693762023-10-17 10:03:59318 days ago1697537039
ENS Namej00ts.eth
0.00108727 ETH
183689212023-10-17 8:32:47318 days ago1697531567
ENS Namej00ts.eth
0.00106299 ETH
178840952023-08-10 11:09:59386 days ago1691665799
ENS Namej00ts.eth
0.00266344 ETH
178840322023-08-10 10:57:23386 days ago1691665043
ENS Namej00ts.eth
0.00245034 ETH
178840232023-08-10 10:55:35386 days ago1691664935
ENS Namej00ts.eth
0.00193644 ETH
178840062023-08-10 10:52:11386 days ago1691664731
ENS Namej00ts.eth
0.00338232 ETH
178839942023-08-10 10:49:35386 days ago1691664575
ENS Namej00ts.eth
0.00196152 ETH
178839852023-08-10 10:47:47386 days ago1691664467
ENS Namej00ts.eth
0.00220403 ETH
178839682023-08-10 10:44:23386 days ago1691664263
ENS Namej00ts.eth
0.00236598 ETH
178839162023-08-10 10:33:47386 days ago1691663627
ENS Namej00ts.eth
0.00253994 ETH
178838262023-08-10 10:15:35386 days ago1691662535
ENS Namej00ts.eth
0.00282456 ETH
178620562023-08-07 9:06:47389 days ago1691399207
ENS Namej00ts.eth
0.00281686 ETH
178620562023-08-07 9:06:47389 days ago1691399207
ENS Namej00ts.eth
0.6 ETH
178605982023-08-07 4:12:47390 days ago1691381567
ENS Namej00ts.eth
0.00170763 ETH
178605982023-08-07 4:12:47390 days ago1691381567
ENS Namej00ts.eth
2 ETH
178572472023-08-06 16:56:47390 days ago1691341007
ENS Namej00ts.eth
0.00281763 ETH
178572472023-08-06 16:56:47390 days ago1691341007
ENS Namej00ts.eth
2 ETH
178571292023-08-06 16:32:47390 days ago1691339567
ENS Namej00ts.eth
0.00346418 ETH
178571292023-08-06 16:32:47390 days ago1691339567
ENS Namej00ts.eth
0.3 ETH
178497722023-08-05 15:50:23391 days ago1691250623
ENS Namej00ts.eth
4.9395 ETH
178286102023-08-02 16:49:35394 days ago1690994975
ENS Namej00ts.eth
0.015725 ETH
177837202023-07-27 10:10:11400 days ago1690452611
ENS Namej00ts.eth
0.00394904 ETH
177836892023-07-27 10:03:59400 days ago1690452239
ENS Namej00ts.eth
0.00467996 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.