ETH Price: $2,613.38 (+7.35%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction166690192023-02-20 9:58:47625 days ago1676887127IN
0x3a4d11d0...86B6e39eE
0 ETH0.0016338721.61352229
Exec Transaction166689382023-02-20 9:42:23625 days ago1676886143IN
0x3a4d11d0...86B6e39eE
0 ETH0.0020244223.71915036
Exec Transaction166688962023-02-20 9:33:59625 days ago1676885639IN
0x3a4d11d0...86B6e39eE
0 ETH0.0015036821.77924124
Exec Transaction166470802023-02-17 7:53:35628 days ago1676620415IN
0x3a4d11d0...86B6e39eE
0 ETH0.0016020821.18962013
Exec Transaction166470132023-02-17 7:40:11628 days ago1676619611IN
0x3a4d11d0...86B6e39eE
0 ETH0.0015956221.41918957
Exec Transaction166469762023-02-17 7:32:47628 days ago1676619167IN
0x3a4d11d0...86B6e39eE
0 ETH0.0020214821.83172392
Exec Transaction166469402023-02-17 7:25:35628 days ago1676618735IN
0x3a4d11d0...86B6e39eE
0 ETH0.0018977122.23449465
Exec Transaction166469262023-02-17 7:22:47628 days ago1676618567IN
0x3a4d11d0...86B6e39eE
0 ETH0.0014088920.99782066
Exec Transaction162893332022-12-29 8:50:35678 days ago1672303835IN
0x3a4d11d0...86B6e39eE
0 ETH0.0010116113.41045769
Exec Transaction162893252022-12-29 8:48:59678 days ago1672303739IN
0x3a4d11d0...86B6e39eE
0 ETH0.0007631114.44400187
Exec Transaction162889842022-12-29 7:40:23678 days ago1672299623IN
0x3a4d11d0...86B6e39eE
0 ETH0.0008449513.03775481
Exec Transaction162889432022-12-29 7:31:59678 days ago1672299119IN
0x3a4d11d0...86B6e39eE
0 ETH0.000923213.81878908
Exec Transaction162889372022-12-29 7:30:47678 days ago1672299047IN
0x3a4d11d0...86B6e39eE
0 ETH0.0009059813.56101012
Exec Transaction162886182022-12-29 6:26:47678 days ago1672295207IN
0x3a4d11d0...86B6e39eE
0 ETH0.0010811413.47271585
Exec Transaction162800662022-12-28 1:48:35679 days ago1672192115IN
0x3a4d11d0...86B6e39eE
0 ETH0.0012170713.80951038
Exec Transaction162447822022-12-23 3:39:35684 days ago1671766775IN
0x3a4d11d0...86B6e39eE
0 ETH0.0011522911.83697226
Exec Transaction162447542022-12-23 3:33:59684 days ago1671766439IN
0x3a4d11d0...86B6e39eE
0 ETH0.001261812.96187962
Exec Transaction162398062022-12-22 11:00:23684 days ago1671706823IN
0x3a4d11d0...86B6e39eE
0 ETH0.0011957912.28540488
Exec Transaction162322792022-12-21 9:47:35686 days ago1671616055IN
0x3a4d11d0...86B6e39eE
0 ETH0.0009937312.39084696
Exec Transaction162320202022-12-21 8:55:47686 days ago1671612947IN
0x3a4d11d0...86B6e39eE
0 ETH0.0012453412.79288625
Exec Transaction162244782022-12-20 7:41:11687 days ago1671522071IN
0x3a4d11d0...86B6e39eE
0 ETH0.0012149412.48208961
Exec Transaction162243852022-12-20 7:22:35687 days ago1671520955IN
0x3a4d11d0...86B6e39eE
0 ETH0.0014451514.84721132
Exec Transaction162241122022-12-20 6:27:59687 days ago1671517679IN
0x3a4d11d0...86B6e39eE
0 ETH0.001255912.90130874
Exec Transaction162176922022-12-19 8:57:35688 days ago1671440255IN
0x3a4d11d0...86B6e39eE
0 ETH0.0012668313.01365126
Exec Transaction162176732022-12-19 8:53:47688 days ago1671440027IN
0x3a4d11d0...86B6e39eE
0 ETH0.0012068212.39713922
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
119264182021-02-25 12:43:061349 days ago1614256986  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x655A9e6b...77e966e18
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Proxy

Compiler Version
v0.5.14+commit.1f1aaa4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-01-13
*/

pragma solidity ^0.5.3;

/// @title Proxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <[email protected]>
/// @author Richard Meissner - <[email protected]>
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.
    // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
    address internal masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)
        public
    {
        require(_masterCopy != address(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)
            // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) {
                mstore(0, masterCopy)
                return(0, 0x20)
            }
            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())
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_masterCopy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a72315820d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff64736f6c634300050e0032

Deployed Bytecode Sourcemap

245:1554:0:-;;;1155:42;1151:1;1145:8;1141:57;1335:66;1331:1;1318:15;1315:87;1312:2;;;1432:10;1429:1;1422:21;1471:4;1468:1;1461:15;1312:2;1524:14;1521:1;1518;1505:34;1620:1;1617;1601:14;1598:1;1586:10;1581:3;1568:54;1657:16;1654:1;1651;1636:38;1703:1;1694:7;1691:14;1688:2;;;1718:16;1715:1;1708:27;1688:2;1761:16;1758:1;1751:27

Swarm Source

bzzr://d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff

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.