ETH Price: $3,388.70 (+2.84%)

Contract

0x4e51D02965aC569B784E0d3532EB73fBAaCd8A32
 

Overview

ETH Balance

4.971980340958870929 ETH

Eth Value

$16,848.53 (@ $3,388.70/ETH)

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction184407322023-10-27 9:44:59393 days ago1698399899IN
0x4e51D029...BAaCd8A32
0 ETH0.0024358417
Exec Transaction179827812023-08-24 6:29:23457 days ago1692858563IN
0x4e51D029...BAaCd8A32
0 ETH0.0050581818.70553907
Exec Transaction175584152023-06-25 18:56:35517 days ago1687719395IN
0x4e51D029...BAaCd8A32
0 ETH0.0011965512.86011808
Exec Transaction174417892023-06-09 9:28:23533 days ago1686302903IN
0x4e51D029...BAaCd8A32
0 ETH0.0017219518.50930751
Exec Transaction159839192022-11-16 16:57:11738 days ago1668617831IN
0x4e51D029...BAaCd8A32
0 ETH0.0043071616.87894592
Exec Transaction149969372022-06-20 14:00:51887 days ago1655733651IN
0x4e51D029...BAaCd8A32
0 ETH0.0026463628
Exec Transaction149968052022-06-20 13:29:42887 days ago1655731782IN
0x4e51D029...BAaCd8A32
0 ETH0.0030117732.48698526
Exec Transaction149961092022-06-20 10:39:39887 days ago1655721579IN
0x4e51D029...BAaCd8A32
0 ETH0.0015240618.96427583
Exec Transaction127200622021-06-28 3:19:581244 days ago1624850398IN
0x4e51D029...BAaCd8A32
0 ETH0.00224616
Exec Transaction127200532021-06-28 3:18:121244 days ago1624850292IN
0x4e51D029...BAaCd8A32
0 ETH0.0008388314
Exec Transaction125551982021-06-02 12:51:131270 days ago1622638273IN
0x4e51D029...BAaCd8A32
0 ETH0.001813425
Exec Transaction125549532021-06-02 11:58:241270 days ago1622635104IN
0x4e51D029...BAaCd8A32
0 ETH0.002437825
Transfer124707572021-05-20 10:35:481283 days ago1621506948IN
0x4e51D029...BAaCd8A32
1 ETH0.0023326290
Exec Transaction124707412021-05-20 10:31:011283 days ago1621506661IN
0x4e51D029...BAaCd8A32
0 ETH0.0069699280

Latest 8 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
184407322023-10-27 9:44:59393 days ago1698399899
0x4e51D029...BAaCd8A32
0.00057326 ETH
184407322023-10-27 9:44:59393 days ago1698399899
0x4e51D029...BAaCd8A32
0.02859292 ETH
127200622021-06-28 3:19:581244 days ago1624850398
0x4e51D029...BAaCd8A32
32 ETH
125551982021-06-02 12:51:131270 days ago1622638273
0x4e51D029...BAaCd8A32
32 ETH
125549532021-06-02 11:58:241270 days ago1622635104
0x4e51D029...BAaCd8A32
1 ETH
124707412021-05-20 10:31:011283 days ago1621506661
0x4e51D029...BAaCd8A32
1 ETH
124584352021-05-18 12:40:421285 days ago1621341642
0x4e51D029...BAaCd8A32
70 ETH
124583692021-05-18 12:24:021285 days ago1621340642  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.