ETH Price: $3,262.98 (+4.78%)
 
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
191165912024-01-30 3:18:59366 days ago1706584739
0x95bD1d9F...469Dbb66C
0.0022826 ETH
191165912024-01-30 3:18:59366 days ago1706584739
0x95bD1d9F...469Dbb66C
0.06 ETH
191164892024-01-30 2:57:59366 days ago1706583479
0x95bD1d9F...469Dbb66C
0.00513448 ETH
191164892024-01-30 2:57:59366 days ago1706583479
0x95bD1d9F...469Dbb66C
0.00042907 ETH
191164892024-01-30 2:57:59366 days ago1706583479
0x95bD1d9F...469Dbb66C
0.08624694 ETH
191163182024-01-30 2:22:47366 days ago1706581367
0x95bD1d9F...469Dbb66C
0.00222777 ETH
183774492023-10-18 13:11:11470 days ago1697634671
0x95bD1d9F...469Dbb66C
0.00206166 ETH
183774422023-10-18 13:09:47470 days ago1697634587
0x95bD1d9F...469Dbb66C
0.00290836 ETH
183774422023-10-18 13:09:47470 days ago1697634587
0x95bD1d9F...469Dbb66C
0.01411183 ETH
170146232023-04-10 1:42:23661 days ago1681090943
0x95bD1d9F...469Dbb66C
0.0065 ETH
149642232022-06-14 22:35:54961 days ago1655246154
0x95bD1d9F...469Dbb66C
0.00323136 ETH
149642122022-06-14 22:33:22961 days ago1655246002
0x95bD1d9F...469Dbb66C
0.00810119 ETH
149553062022-06-13 9:42:19962 days ago1655113339
0x95bD1d9F...469Dbb66C
0.01462289 ETH
149553062022-06-13 9:42:19962 days ago1655113339
0x95bD1d9F...469Dbb66C
0.6 ETH
140516532022-01-21 22:41:301105 days ago1642804890
0x95bD1d9F...469Dbb66C
0.02715377 ETH
140516532022-01-21 22:41:301105 days ago1642804890
0x95bD1d9F...469Dbb66C
9 ETH
140515862022-01-21 22:26:501105 days ago1642804010
0x95bD1d9F...469Dbb66C
0.10476547 ETH
140515862022-01-21 22:26:501105 days ago1642804010
0x95bD1d9F...469Dbb66C
7.36500875 ETH
138771452021-12-25 22:53:271132 days ago1640472807
0x95bD1d9F...469Dbb66C
0.01006486 ETH
133912112021-10-10 13:46:251208 days ago1633873585
0x95bD1d9F...469Dbb66C
0.18005468 ETH
132267822021-09-14 23:19:301233 days ago1631661570
0x95bD1d9F...469Dbb66C
0.00625365 ETH
130745762021-08-22 10:33:201257 days ago1629628400
0x95bD1d9F...469Dbb66C
0.00418538 ETH
129458962021-08-02 12:17:301277 days ago1627906650
0x95bD1d9F...469Dbb66C
0.00298116 ETH
126618822021-06-19 1:32:051321 days ago1624066325
0x95bD1d9F...469Dbb66C
0.00130616 ETH
126429352021-06-16 2:49:391324 days ago1623811779
0x95bD1d9F...469Dbb66C
0.00442019 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  ]

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.