ETH Price: $2,332.09 (+0.99%)

Contract

0x6E476f91A303694064F1271DFCBf71A3bEd8A385
 
Transaction Hash
Method
Block
From
To
Exec Transaction206797002024-09-04 20:46:5913 days ago1725482819IN
0x6E476f91...3bEd8A385
0 ETH0.0013463313.77987453
Exec Transaction206796942024-09-04 20:45:4713 days ago1725482747IN
0x6E476f91...3bEd8A385
0 ETH0.0014052914.38337775
Exec Transaction206724752024-09-03 20:34:4714 days ago1725395687IN
0x6E476f91...3bEd8A385
0 ETH0.000184971.89297615
Exec Transaction206723922024-09-03 20:18:1114 days ago1725394691IN
0x6E476f91...3bEd8A385
0 ETH0.000242622.48325053
Exec Transaction206723862024-09-03 20:16:5914 days ago1725394619IN
0x6E476f91...3bEd8A385
0 ETH0.000308263.15512144
Exec Transaction206723832024-09-03 20:16:2314 days ago1725394583IN
0x6E476f91...3bEd8A385
0 ETH0.000269843.34733731
Exec Transaction206723792024-09-03 20:15:3514 days ago1725394535IN
0x6E476f91...3bEd8A385
0 ETH0.000213252.64540896
Exec Transaction204773502024-08-07 14:39:4741 days ago1723041587IN
0x6E476f91...3bEd8A385
0 ETH0.0022474423
Exec Transaction204434652024-08-02 21:13:2346 days ago1722633203IN
0x6E476f91...3bEd8A385
0 ETH0.000259133.21497949
Exec Transaction204434542024-08-02 21:10:5946 days ago1722633059IN
0x6E476f91...3bEd8A385
0 ETH0.000479244.90631154
Exec Transaction204430152024-08-02 19:41:5946 days ago1722627719IN
0x6E476f91...3bEd8A385
0 ETH0.000785367.72348992
Exec Transaction204428582024-08-02 19:10:2346 days ago1722625823IN
0x6E476f91...3bEd8A385
0 ETH0.000322414
Exec Transaction204428542024-08-02 19:09:3546 days ago1722625775IN
0x6E476f91...3bEd8A385
0 ETH0.000508485
Exec Transaction202786422024-07-10 20:59:1169 days ago1720645151IN
0x6E476f91...3bEd8A385
0 ETH0.000577156.82332364
Exec Transaction202786352024-07-10 20:57:4769 days ago1720645067IN
0x6E476f91...3bEd8A385
0 ETH0.000533075.24303172
Exec Transaction202786302024-07-10 20:56:4769 days ago1720645007IN
0x6E476f91...3bEd8A385
0 ETH0.000581585.72083011
Exec Transaction202786192024-07-10 20:54:3569 days ago1720644875IN
0x6E476f91...3bEd8A385
0 ETH0.000324525.93935557
Exec Transaction202211922024-07-02 20:24:2377 days ago1719951863IN
0x6E476f91...3bEd8A385
0 ETH0.000813488
Exec Transaction202211892024-07-02 20:23:4777 days ago1719951827IN
0x6E476f91...3bEd8A385
0 ETH0.0014235914
Exec Transaction202211812024-07-02 20:22:1177 days ago1719951731IN
0x6E476f91...3bEd8A385
0 ETH0.000915169
Exec Transaction202211762024-07-02 20:21:1177 days ago1719951671IN
0x6E476f91...3bEd8A385
0 ETH0.000813578
Exec Transaction202211712024-07-02 20:20:1177 days ago1719951611IN
0x6E476f91...3bEd8A385
0 ETH0.000547485.38473699
Exec Transaction202211642024-07-02 20:18:4777 days ago1719951527IN
0x6E476f91...3bEd8A385
0 ETH0.000577335.67835471
Exec Transaction202211582024-07-02 20:17:3577 days ago1719951455IN
0x6E476f91...3bEd8A385
0 ETH0.000485465.74021294
Exec Transaction197921182024-05-03 20:57:23137 days ago1714769843IN
0x6E476f91...3bEd8A385
0 ETH0.0010168510
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
146814052022-04-29 20:35:26872 days ago1651264526
0x6E476f91...3bEd8A385
0.5 ETH
143149392022-03-03 15:54:32929 days ago1646322872
0x6E476f91...3bEd8A385
0.5 ETH
129037792021-07-26 19:58:161149 days ago1627329496  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.