ETH Price: $3,497.60 (+4.18%)
Gas: 3 Gwei

Contract

0x67fd843a35827B49fcc36adA578A8Fb7E9C818A2
 

Overview

ETH Balance

1.186054670384361185 ETH

Eth Value

$4,148.34 (@ $3,497.60/ETH)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Transfer140604912022-01-23 7:20:24889 days ago1642922424IN
0x67fd843a...7E9C818A2
1.9961195 ETH0.0022462896.68103395
Transfer124995542021-05-24 21:46:291133 days ago1621892789IN
0x67fd843a...7E9C818A2
1 ETH0.001370859
Transfer121331082021-03-29 8:37:271189 days ago1617007047IN
0x67fd843a...7E9C818A2
0.05767799 ETH0.0026022112
Transfer108252452020-09-09 4:02:101390 days ago1599624130IN
0x67fd843a...7E9C818A2
0.5 ETH0.0020213587
Transfer108241682020-09-09 0:01:041391 days ago1599609664IN
0x67fd843a...7E9C818A2
0.5 ETH0.00271837117

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To Value
166460562023-02-17 4:27:11499 days ago1676608031
0x67fd843a...7E9C818A2
0.00388108 ETH
159049582022-11-05 16:18:23603 days ago1667665103
0x67fd843a...7E9C818A2
0.00206578 ETH
159049452022-11-05 16:15:47603 days ago1667664947
0x67fd843a...7E9C818A2
0.00170786 ETH
159049142022-11-05 16:09:35603 days ago1667664575
0x67fd843a...7E9C818A2
0.00248816 ETH
158991542022-11-04 20:50:59604 days ago1667595059
0x67fd843a...7E9C818A2
0.00407761 ETH
157727012022-10-18 4:47:59621 days ago1666068479
0x67fd843a...7E9C818A2
0.00390848 ETH
156758412022-10-04 16:04:35635 days ago1664899475
0x67fd843a...7E9C818A2
0.00309478 ETH
156756752022-10-04 15:30:59635 days ago1664897459
0x67fd843a...7E9C818A2
0.00202916 ETH
156756292022-10-04 15:21:47635 days ago1664896907
0x67fd843a...7E9C818A2
0.0019765 ETH
156756162022-10-04 15:19:11635 days ago1664896751
0x67fd843a...7E9C818A2
0.00200966 ETH
156755912022-10-04 15:14:11635 days ago1664896451
0x67fd843a...7E9C818A2
0.00220011 ETH
156755412022-10-04 15:04:11635 days ago1664895851
0x67fd843a...7E9C818A2
0.00237942 ETH
156755002022-10-04 14:55:59635 days ago1664895359
0x67fd843a...7E9C818A2
0.0025556 ETH
156698482022-10-03 19:56:11636 days ago1664826971
0x67fd843a...7E9C818A2
0.0084022 ETH
156698422022-10-03 19:54:59636 days ago1664826899
0x67fd843a...7E9C818A2
0.00187695 ETH
156698382022-10-03 19:54:11636 days ago1664826851
0x67fd843a...7E9C818A2
0.00163838 ETH
156698362022-10-03 19:53:47636 days ago1664826827
0x67fd843a...7E9C818A2
0.00172954 ETH
156698332022-10-03 19:53:11636 days ago1664826791
0x67fd843a...7E9C818A2
0.00180228 ETH
156698252022-10-03 19:51:35636 days ago1664826695
0x67fd843a...7E9C818A2
0.00260376 ETH
156698202022-10-03 19:50:35636 days ago1664826635
0x67fd843a...7E9C818A2
0.00193496 ETH
156698142022-10-03 19:49:23636 days ago1664826563
0x67fd843a...7E9C818A2
0.00173823 ETH
156698122022-10-03 19:48:59636 days ago1664826539
0x67fd843a...7E9C818A2
0.00239309 ETH
156698062022-10-03 19:47:47636 days ago1664826467
0x67fd843a...7E9C818A2
0.00263631 ETH
155367662022-09-15 4:11:16654 days ago1663215076
0x67fd843a...7E9C818A2
0.00378155 ETH
154775102022-09-05 11:07:49664 days ago1662376069
0x67fd843a...7E9C818A2
0.00068572 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.