ETH Price: $2,142.83 (-9.10%)

Contract

0xDfb922A518939E369Be746Ba4a88d45a063185f4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction162893752022-12-29 8:58:59792 days ago1672304339IN
0xDfb922A5...a063185f4
0 ETH0.0011599715.38202742
Exec Transaction162800702022-12-28 1:49:23793 days ago1672192163IN
0xDfb922A5...a063185f4
0 ETH0.0011727213.3063302
Exec Transaction162323212022-12-21 9:55:59799 days ago1671616559IN
0xDfb922A5...a063185f4
0 ETH0.0011456411.7686325
Exec Transaction162323172022-12-21 9:55:11799 days ago1671616511IN
0xDfb922A5...a063185f4
0 ETH0.0012185212.51886832
Exec Transaction162323082022-12-21 9:53:23799 days ago1671616403IN
0xDfb922A5...a063185f4
0 ETH0.0011668711.9868076
Exec Transaction161728522022-12-13 2:39:11808 days ago1670899151IN
0xDfb922A5...a063185f4
0 ETH0.0015259415.67726524
Exec Transaction161331802022-12-07 13:39:47813 days ago1670420387IN
0xDfb922A5...a063185f4
0 ETH0.0014280914.67192395
Exec Transaction161330742022-12-07 13:18:35813 days ago1670419115IN
0xDfb922A5...a063185f4
0 ETH0.0012634515.74931128
Exec Transaction161213022022-12-05 21:34:47815 days ago1670276087IN
0xDfb922A5...a063185f4
0 ETH0.0013231613.090065
Exec Transaction161212972022-12-05 21:33:47815 days ago1670276027IN
0xDfb922A5...a063185f4
0 ETH0.0011969714.25480264
Exec Transaction161165502022-12-05 5:35:59816 days ago1670218559IN
0xDfb922A5...a063185f4
0 ETH0.0013041413.40019179
Exec Transaction160893282022-12-01 10:21:59819 days ago1669890119IN
0xDfb922A5...a063185f4
0 ETH0.0008772210.93314266
Exec Transaction160893212022-12-01 10:20:35819 days ago1669890035IN
0xDfb922A5...a063185f4
0 ETH0.0009735910
Exec Transaction160893132022-12-01 10:18:59819 days ago1669889939IN
0xDfb922A5...a063185f4
0 ETH0.0011701712.02069523
Exec Transaction160893102022-12-01 10:18:23819 days ago1669889903IN
0xDfb922A5...a063185f4
0 ETH0.0009141611.39188499
Exec Transaction160819982022-11-30 9:46:23820 days ago1669801583IN
0xDfb922A5...a063185f4
0 ETH0.0009174911.43509168
Exec Transaction160674882022-11-28 9:08:11823 days ago1669626491IN
0xDfb922A5...a063185f4
0 ETH0.0011548311.86453226
Exec Transaction160427902022-11-24 22:21:23826 days ago1669328483IN
0xDfb922A5...a063185f4
0 ETH0.0009626712
Exec Transaction160427852022-11-24 22:20:23826 days ago1669328423IN
0xDfb922A5...a063185f4
0 ETH0.0011092411.39338719
Exec Transaction160427802022-11-24 22:19:23826 days ago1669328363IN
0xDfb922A5...a063185f4
0 ETH0.0009294611.58424401
Exec Transaction160427752022-11-24 22:18:23826 days ago1669328303IN
0xDfb922A5...a063185f4
0 ETH0.000902211.25295511
Exec Transaction160251422022-11-22 11:05:59828 days ago1669115159IN
0xDfb922A5...a063185f4
0 ETH0.0010108712.59894693
Exec Transaction159682132022-11-14 12:16:23836 days ago1668428183IN
0xDfb922A5...a063185f4
0 ETH0.0019971720.52112995
Exec Transaction159682072022-11-14 12:15:11836 days ago1668428111IN
0xDfb922A5...a063185f4
0 ETH0.0019036919.55817846
Exec Transaction159313362022-11-09 8:39:11842 days ago1667983151IN
0xDfb922A5...a063185f4
0 ETH0.0019256424
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
125149682021-05-27 7:03:081373 days ago1622098988  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

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