ETH Price: $2,110.67 (-4.23%)

Contract

0x2C2306A035eDEdb3bbF75DdA4d3F3E509E8FE6b3
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer By User103602392020-06-29 10:35:372089 days ago1593426937IN
0x2C2306A0...09E8FE6b3
0 ETH0.0062470138
Transfer By User103602392020-06-29 10:35:372089 days ago1593426937IN
0x2C2306A0...09E8FE6b3
0 ETH0.0033979238
Transfer By User103602272020-06-29 10:32:322089 days ago1593426752IN
0x2C2306A0...09E8FE6b3
0 ETH0.0037716538
Transfer By User102276422020-06-08 21:54:042109 days ago1591653244IN
0x2C2306A0...09E8FE6b3
0 ETH0.0026801827
Change Impl102276272020-06-08 21:51:062109 days ago1591653066IN
0x2C2306A0...09E8FE6b3
0 ETH0.002082827
Transfer100677572020-05-15 1:20:242134 days ago1589505624IN
0x2C2306A0...09E8FE6b3
3 ETH0.0016625130
Transfer By User100677112020-05-15 1:10:442134 days ago1589505044IN
0x2C2306A0...09E8FE6b3
0 ETH0.00315930
Transfer99695212020-04-29 20:04:482149 days ago1588190688IN
0x2C2306A0...09E8FE6b3
2 ETH0.0007758314
Transfer99586572020-04-28 3:55:542151 days ago1588046154IN
0x2C2306A0...09E8FE6b3
12 ETH0.000443338
Transfer By User97293652020-03-23 18:47:112186 days ago1584989231IN
0x2C2306A0...09E8FE6b3
0 ETH0.000710448
Transfer By User95290952020-02-21 21:41:432217 days ago1582321303IN
0x2C2306A0...09E8FE6b3
0 ETH0.000902168
Transfer94775142020-02-13 23:04:472225 days ago1581635087IN
0x2C2306A0...09E8FE6b3
8 ETH0.000443338
Transfer By User91837762019-12-30 2:28:472271 days ago1577672927IN
0x2C2306A0...09E8FE6b3
0 ETH0.000626636
Transfer91473532019-12-22 20:36:102278 days ago1577046970IN
0x2C2306A0...09E8FE6b3
8 ETH0.000443338
Transfer90733812019-12-08 19:13:102292 days ago1575832390IN
0x2C2306A0...09E8FE6b3
1 ETH0.0005541710
Transfer By User83514042019-08-14 22:39:492408 days ago1565822389IN
0x2C2306A0...09E8FE6b3
0 ETH0.000309173
Transfer By User83402112019-08-13 5:06:302410 days ago1565672790IN
0x2C2306A0...09E8FE6b3
0 ETH0.000613017
Transfer82357082019-07-27 23:44:352426 days ago1564271075IN
0x2C2306A0...09E8FE6b3
1 ETH0.000159053

Latest 13 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
-103602272020-06-29 10:32:322089 days ago1593426752
0x2C2306A0...09E8FE6b3
0.08933 ETH
-103602272020-06-29 10:32:322089 days ago1593426752
0x2C2306A0...09E8FE6b3
0.08933 ETH
-102276422020-06-08 21:54:042109 days ago1591653244
0x2C2306A0...09E8FE6b3
35.100785 ETH
-102276422020-06-08 21:54:042109 days ago1591653244
0x2C2306A0...09E8FE6b3
35.100785 ETH
-100677572020-05-15 1:20:242134 days ago1589505624
0x2C2306A0...09E8FE6b3
3 ETH
-99695212020-04-29 20:04:482149 days ago1588190688
0x2C2306A0...09E8FE6b3
2 ETH
-99586572020-04-28 3:55:542151 days ago1588046154
0x2C2306A0...09E8FE6b3
12 ETH
-99583232020-04-28 2:43:282151 days ago1588041808
0x2C2306A0...09E8FE6b3
0.000432 ETH
-94775142020-02-13 23:04:472225 days ago1581635087
0x2C2306A0...09E8FE6b3
8 ETH
-91473532019-12-22 20:36:102278 days ago1577046970
0x2C2306A0...09E8FE6b3
8 ETH
-90733812019-12-08 19:13:102292 days ago1575832390
0x2C2306A0...09E8FE6b3
1 ETH
-82357082019-07-27 23:44:352426 days ago1564271075
0x2C2306A0...09E8FE6b3
1 ETH
-82356972019-07-27 23:42:392426 days ago1564270959  Contract Creation0 ETH
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 0xD9b664Bd...dd43999B0
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 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-03-22
*/

pragma solidity ^0.4.13;

contract Proxy {

    // masterCopy always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    address masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)
        public
    {
        require(_masterCopy != 0, "Invalid master copy address provided");
        masterCopy = _masterCopy;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    function ()
        external
        payable
    {
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas, masterCopy, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) { revert(0, returndatasize()) }
            return(0, returndatasize())
        }
    }

    function implementation()
        public
        view
        returns (address)
    {
        return masterCopy;
    }

    function proxyType()
        public
        pure
        returns (uint256)
    {
        return 2;
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"proxyType","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_masterCopy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

0x608060405234801561001057600080fd5b506040516020806102288339810160405251600160a060020a03811615156100be57604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f496e76616c6964206d617374657220636f707920616464726573732070726f7660448201527f6964656400000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60008054600160a060020a03909216600160a060020a031990921691909117905561013a806100ee6000396000f30060806040526004361061004b5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416634555d5c981146100885780635c60da1b146100af575b73ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e801515610083573d6000fd5b3d6000f35b34801561009457600080fd5b5061009d6100ed565b60408051918252519081900360200190f35b3480156100bb57600080fd5b506100c46100f2565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b600290565b60005473ffffffffffffffffffffffffffffffffffffffff16905600a165627a7a7230582000e8963a53396a420e260d6762a2b264be1db09b89fce92475fadd0600ddeffb002900000000000000000000000078b37409628e10df0b661c6b205b872a4df8dd6e

Deployed Bytecode

0x60806040526004361061004b5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416634555d5c981146100885780635c60da1b146100af575b73ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e801515610083573d6000fd5b3d6000f35b34801561009457600080fd5b5061009d6100ed565b60408051918252519081900360200190f35b3480156100bb57600080fd5b506100c46100f2565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b600290565b60005473ffffffffffffffffffffffffffffffffffffffff16905600a165627a7a7230582000e8963a53396a420e260d6762a2b264be1db09b89fce92475fadd0600ddeffb0029

Deployed Bytecode Sourcemap

28:1387:0:-;;;;;;;;;;;;;;;;;;;;;;;;;814:42;810:1;804:8;800:57;890:14;887:1;884;871:34;986:1;983;967:14;964:1;952:10;947:3;934:54;1023:16;1020:1;1017;1002:38;1057:14;;1054:2;;;1084:16;1081:1;1074:27;1054:2;1127:16;1124:1;1117:27;1302:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1302:110:0;;;;;;;;;;;;;;;;;;;;1170:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1170:124:0;;;;;;;;;;;;;;;;;;;;;;;1302:110;1403:1;1302:110;:::o;1170:124::-;1244:7;1276:10;;;1170:124;:::o

Swarm Source

bzzr://00e8963a53396a420e260d6762a2b264be1db09b89fce92475fadd0600ddeffb

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.