ETH Price: $3,360.02 (-0.22%)

Contract

0xe793E8AefC1E8f104A9be9cf73e4Ab1DFF892372
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction212450342024-11-22 18:23:4714 hrs ago1732299827IN
Voyager 8
0 ETH0.0009661213.48134369
Exec Transaction212450092024-11-22 18:18:4715 hrs ago1732299527IN
Voyager 8
0 ETH0.0010455813.68059228
Exec Transaction212449802024-11-22 18:12:5915 hrs ago1732299179IN
Voyager 8
0 ETH0.0010460612.70577074
Exec Transaction212449302024-11-22 18:02:5915 hrs ago1732298579IN
Voyager 8
0 ETH0.0012575513.17859556
Exec Transaction201925122024-06-28 20:15:47147 days ago1719605747IN
Voyager 8
0 ETH0.000278433.6807223
Exec Transaction201914072024-06-28 16:34:11147 days ago1719592451IN
Voyager 8
0 ETH0.000631739.59346727
Exec Transaction201913062024-06-28 16:13:23147 days ago1719591203IN
Voyager 8
0 ETH0.0008231810
Exec Transaction201912902024-06-28 16:10:11147 days ago1719591011IN
Voyager 8
0 ETH0.0010594110.65870123
Exec Transaction194342402024-03-14 15:50:47253 days ago1710431447IN
Voyager 8
0 ETH0.0041080754.31515429
Exec Transaction194341402024-03-14 15:30:47253 days ago1710430247IN
Voyager 8
0 ETH0.0079805468
Exec Transaction194341062024-03-14 15:23:59253 days ago1710429839IN
Voyager 8
0 ETH0.0059379262
Exec Transaction194289332024-03-13 21:53:47254 days ago1710366827IN
Voyager 8
0 ETH0.0043038256.30324634
Exec Transaction194289102024-03-13 21:48:59254 days ago1710366539IN
Voyager 8
0 ETH0.0034070555.0581192
Exec Transaction194288462024-03-13 21:36:11254 days ago1710365771IN
Voyager 8
0 ETH0.0063389365
Exec Transaction193642882024-03-04 20:47:59263 days ago1709585279IN
Voyager 8
0 ETH0.0075044788.61006381
Exec Transaction193642472024-03-04 20:39:47263 days ago1709584787IN
Voyager 8
0 ETH0.0081909104.52913847
Exec Transaction193641932024-03-04 20:28:59263 days ago1709584139IN
Voyager 8
0 ETH0.0085510189.61076391
Exec Transaction193641102024-03-04 20:12:23263 days ago1709583143IN
Voyager 8
0 ETH0.004779695.83165664
Exec Transaction193641102024-03-04 20:12:23263 days ago1709583143IN
Voyager 8
0 ETH0.008110895.83165664
Exec Transaction193524672024-03-03 5:10:35265 days ago1709442635IN
Voyager 8
0 ETH0.0039998642.01756291
Exec Transaction193524642024-03-03 5:09:59265 days ago1709442599IN
Voyager 8
0 ETH0.0039904341.9132022
Exec Transaction193524602024-03-03 5:09:11265 days ago1709442551IN
Voyager 8
0 ETH0.0038645840.59135485
Exec Transaction193524562024-03-03 5:08:23265 days ago1709442503IN
Voyager 8
0 ETH0.0035733337.5417796
Exec Transaction184928662023-11-03 16:56:11385 days ago1699030571IN
Voyager 8
0 ETH0.0024260833.75662142
Exec Transaction184928522023-11-03 16:53:11385 days ago1699030391IN
Voyager 8
0 ETH0.002276331.59698396
View all transactions

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
184866122023-11-02 19:55:59386 days ago1698954959
Voyager 8
0.01 ETH
158841142022-11-02 18:26:11751 days ago1667413571
Voyager 8
0.02 ETH
129038562021-07-26 20:12:371215 days ago1627330357
Voyager 8
Voyager 8
0.01 ETH
128843692021-07-23 18:58:131218 days ago1627066693
Voyager 8
Voyager 8
0.001 ETH
128842612021-07-23 18:35:341218 days ago1627065334
Voyager 8
Voyager 8
0.001 ETH
128841992021-07-23 18:23:501218 days ago1627064630  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.