ETH Price: $2,310.24 (+3.32%)

Contract

0x306753b4e1101CF96d99D17E0D7E900D8D2EF13d
 

More Info

Private Name Tags

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer100726972020-05-15 19:56:312131 days ago1589572591IN
0x306753b4...D8D2EF13d
1 ETH0.0003833616.5
Transfer89291522019-11-13 23:21:442315 days ago1573687304IN
0x306753b4...D8D2EF13d
10 ETH0.0002323410

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer181860342023-09-21 18:28:11907 days ago1695320891
0x306753b4...D8D2EF13d
0.00434551 ETH
Transfer181860342023-09-21 18:28:11907 days ago1695320891
0x306753b4...D8D2EF13d
0.00015011 ETH
Transfer181860342023-09-21 18:28:11907 days ago1695320891
0x306753b4...D8D2EF13d
0.03017421 ETH
Transfer169988792023-04-07 20:10:591074 days ago1680898259
0x306753b4...D8D2EF13d
0.06067914 ETH
-143795822022-03-13 17:23:071464 days ago1647192187
0x306753b4...D8D2EF13d
0.0030516 ETH
-143795822022-03-13 17:23:071464 days ago1647192187
0x306753b4...D8D2EF13d
0.07534437 ETH
-143795462022-03-13 17:17:111464 days ago1647191831
0x306753b4...D8D2EF13d
0.00545411 ETH
-143663972022-03-11 15:42:421466 days ago1647013362
0x306753b4...D8D2EF13d
0.00814247 ETH
-123048752021-04-24 19:39:291787 days ago1619293169
0x306753b4...D8D2EF13d
0.00665263 ETH
-123048752021-04-24 19:39:291787 days ago1619293169
0x306753b4...D8D2EF13d
1 ETH
-108864712020-09-18 13:46:202005 days ago1600436780
0x306753b4...D8D2EF13d
0.04570701 ETH
-108864132020-09-18 13:32:402005 days ago1600435960
0x306753b4...D8D2EF13d
1.14730062 ETH
-102804632020-06-17 2:02:512099 days ago1592359371
0x306753b4...D8D2EF13d
1.14673608 ETH
-101702502020-05-31 0:06:472116 days ago1590883607
0x306753b4...D8D2EF13d
0.105 ETH
-101282972020-05-24 11:36:122122 days ago1590320172
0x306753b4...D8D2EF13d
0.24 ETH
-100736072020-05-15 23:21:092131 days ago1589584869
0x306753b4...D8D2EF13d
0.00034716 ETH
-100736072020-05-15 23:21:092131 days ago1589584869
0x306753b4...D8D2EF13d
0.23144382 ETH
-100728802020-05-15 20:39:432131 days ago1589575183
0x306753b4...D8D2EF13d
0.77944491 ETH
-100728752020-05-15 20:38:202131 days ago1589575100
0x306753b4...D8D2EF13d
1 ETH
-100728332020-05-15 20:26:442131 days ago1589574404
0x306753b4...D8D2EF13d
1 ETH
-100728312020-05-15 20:25:582131 days ago1589574358
0x306753b4...D8D2EF13d
1 ETH
-100727692020-05-15 20:13:042131 days ago1589573584
0x306753b4...D8D2EF13d
0.99999999 ETH
-100727672020-05-15 20:12:122131 days ago1589573532
0x306753b4...D8D2EF13d
0 ETH
-100727672020-05-15 20:12:122131 days ago1589573532
0x306753b4...D8D2EF13d
1 ETH
-96324062020-03-08 18:31:072199 days ago1583692267
0x306753b4...D8D2EF13d
0.003 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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

Contract Source Code (Solidity)

/**
 *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

API
[{"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"}]

0x608060405234801561001057600080fd5b50604051602080610127833981016040525160008054600160a060020a03909216600160a060020a031990921691909117905560d6806100516000396000f30060806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029000000000000000000000000b1dd690cc9af7bb1a906a9b5a94f94191cc553ce

Deployed Bytecode

0x60806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029

Swarm Source

bzzr://09ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.