ETH Price: $2,978.78 (+3.97%)
Gas: 2 Gwei

Contract

0x4b4d75b8B0Fc7528EA2614b2Ca83555824C07867
 

Overview

ETH Balance

1 ETH

Eth Value

$2,978.78 (@ $2,978.78/ETH)

Token Holdings

Transaction Hash
Method
Block
From
To
Value
Exec Transaction200307992024-06-06 5:48:2329 days ago1717652903IN
0x4b4d75b8...824C07867
0 ETH0.001721913
Exec Transaction198873902024-05-17 4:43:5949 days ago1715921039IN
0x4b4d75b8...824C07867
0 ETH0.00529144.97306095
Exec Transaction193423552024-03-01 19:16:11126 days ago1709320571IN
0x4b4d75b8...824C07867
0 ETH0.0072709956.22827754
Exec Transaction191208142024-01-30 17:28:23157 days ago1706635703IN
0x4b4d75b8...824C07867
0 ETH0.00531135.98556755
Exec Transaction191208072024-01-30 17:26:59157 days ago1706635619IN
0x4b4d75b8...824C07867
0 ETH0.0043092535.2595932
Exec Transaction184252062023-10-25 5:34:11254 days ago1698212051IN
0x4b4d75b8...824C07867
0 ETH0.0011502511.67573875
Exec Transaction184248022023-10-25 4:12:23254 days ago1698207143IN
0x4b4d75b8...824C07867
0 ETH0.0016576412.81893907
Exec Transaction178929192023-08-11 16:44:35329 days ago1691772275IN
0x4b4d75b8...824C07867
0 ETH0.0046501826.40712472
Exec Transaction178925932023-08-11 15:39:11329 days ago1691768351IN
0x4b4d75b8...824C07867
0 ETH0.0036016328.80961799
Exec Transaction167585112023-03-05 0:03:11489 days ago1677974591IN
0x4b4d75b8...824C07867
0 ETH0.0254600623.35279725
Exec Transaction166889282023-02-23 5:09:47498 days ago1677128987IN
0x4b4d75b8...824C07867
0 ETH0.0226084327.49752132
Exec Transaction166431942023-02-16 18:50:59505 days ago1676573459IN
0x4b4d75b8...824C07867
0 ETH0.0120286536.45388471
Exec Transaction166431912023-02-16 18:50:23505 days ago1676573423IN
0x4b4d75b8...824C07867
0 ETH0.0063091137.46102801
Exec Transaction164780172023-01-24 16:59:11528 days ago1674579551IN
0x4b4d75b8...824C07867
0 ETH0.0077719126.42779495
Exec Transaction164287322023-01-17 19:52:23535 days ago1673985143IN
0x4b4d75b8...824C07867
0 ETH0.0013097924.04741298
Exec Transaction164287242023-01-17 19:50:47535 days ago1673985047IN
0x4b4d75b8...824C07867
0 ETH0.0022108620.342151
Exec Transaction164287162023-01-17 19:49:11535 days ago1673984951IN
0x4b4d75b8...824C07867
0 ETH0.0025742420.79624523
Exec Transaction164287132023-01-17 19:48:35535 days ago1673984915IN
0x4b4d75b8...824C07867
0 ETH0.0025924421.20714091
Exec Transaction164287072023-01-17 19:47:23535 days ago1673984843IN
0x4b4d75b8...824C07867
0 ETH0.0075679621.65401373
Exec Transaction164287022023-01-17 19:46:23535 days ago1673984783IN
0x4b4d75b8...824C07867
0 ETH0.0020850321.62248066
Exec Transaction164171562023-01-16 5:06:23536 days ago1673845583IN
0x4b4d75b8...824C07867
0 ETH0.0196342815
Exec Transaction164171512023-01-16 5:05:23536 days ago1673845523IN
0x4b4d75b8...824C07867
0 ETH0.001483814.80105372
Exec Transaction162383802022-12-22 6:14:11561 days ago1671689651IN
0x4b4d75b8...824C07867
0 ETH0.0005463910
Exec Transaction162382742022-12-22 5:52:59561 days ago1671688379IN
0x4b4d75b8...824C07867
0 ETH0.0014157511.32764625
Exec Transaction162305632022-12-21 4:03:59562 days ago1671595439IN
0x4b4d75b8...824C07867
0 ETH0.0021582513.80228943
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
141607712022-02-07 19:13:50879 days ago1644261230  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.