ETH Price: $2,672.73 (+10.26%)
Gas: 1 Gwei

Contract

0x39791E62f1c4Dc98B3CCdEd9A0E8F05a44af29E0
 

Overview

ETH Balance

0.000379006801724319 ETH

Eth Value

$1.01 (@ $2,672.73/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer136875472021-11-26 4:05:37987 days ago1637899537IN
0x39791E62...a44af29E0
0.25004806 ETH0.0017526675.43553193
Transfer126445962021-06-16 9:09:531149 days ago1623834593IN
0x39791E62...a44af29E0
0.26 ETH0.0003252714
Transfer86014322019-09-22 21:35:071782 days ago1569188107IN
0x39791E62...a44af29E0
0.04576659 ETH0.0004646820
Transfer86014282019-09-22 21:33:551782 days ago1569188035IN
0x39791E62...a44af29E0
0.04576659 ETH0.0002110

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
180243252023-08-30 2:04:59345 days ago1693361099
0x39791E62...a44af29E0
0.0027266 ETH
180243252023-08-30 2:04:59345 days ago1693361099
0x39791E62...a44af29E0
0.06315542 ETH
166057732023-02-11 13:19:47544 days ago1676121587
0x39791E62...a44af29E0
0.00261947 ETH
166057732023-02-11 13:19:47544 days ago1676121587
0x39791E62...a44af29E0
0.05 ETH
155165882022-09-11 19:34:37697 days ago1662924877
0x39791E62...a44af29E0
0.00394572 ETH
155165882022-09-11 19:34:37697 days ago1662924877
0x39791E62...a44af29E0
0.1 ETH
142890182022-02-27 15:29:04893 days ago1645975744
0x39791E62...a44af29E0
0.0128084 ETH
142890182022-02-27 15:29:04893 days ago1645975744
0x39791E62...a44af29E0
0.00000219 ETH
142890182022-02-27 15:29:04893 days ago1645975744
0x39791E62...a44af29E0
0.00044115 ETH
142890062022-02-27 15:27:11893 days ago1645975631
0x39791E62...a44af29E0
0.0121766 ETH
142890032022-02-27 15:26:05893 days ago1645975565
0x39791E62...a44af29E0
0.01253916 ETH
142890032022-02-27 15:26:05893 days ago1645975565
0x39791E62...a44af29E0
0.0012342 ETH
142890032022-02-27 15:26:05893 days ago1645975565
0x39791E62...a44af29E0
0.24808127 ETH
142885592022-02-27 13:47:35893 days ago1645969655
0x39791E62...a44af29E0
0.0059878 ETH
139152832021-12-31 20:37:51951 days ago1640983071
0x39791E62...a44af29E0
0.01410184 ETH
138691742021-12-24 17:09:41958 days ago1640365781
0x39791E62...a44af29E0
0.01152391 ETH
137857772021-12-11 19:34:40971 days ago1639251280
0x39791E62...a44af29E0
0.00845765 ETH
137857772021-12-11 19:34:40971 days ago1639251280
0x39791E62...a44af29E0
0.1 ETH
137724752021-12-09 17:52:49973 days ago1639072369
0x39791E62...a44af29E0
0.00988162 ETH
137724752021-12-09 17:52:49973 days ago1639072369
0x39791E62...a44af29E0
0.1 ETH
136874612021-11-26 3:44:47987 days ago1637898287
0x39791E62...a44af29E0
0.01607365 ETH
136873842021-11-26 3:25:41987 days ago1637897141
0x39791E62...a44af29E0
0.01609308 ETH
133824062021-10-09 4:19:011035 days ago1633753141
0x39791E62...a44af29E0
0.01661583 ETH
132430332021-09-17 11:51:501056 days ago1631879510
0x39791E62...a44af29E0
0.00623856 ETH
132307682021-09-15 14:09:141058 days ago1631714954
0x39791E62...a44af29E0
0.01025923 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.