ETH Price: $3,182.81 (+3.13%)

Contract

0x478967d3286D380B3f6cf3253719F647c8092854
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction132307742021-09-15 14:11:071160 days ago1631715067IN
0x478967d3...7c8092854
0 ETH0.0060466968.10792937
Exec Transaction132307682021-09-15 14:09:141160 days ago1631714954IN
0x478967d3...7c8092854
0 ETH0.0049793561.37278421
Exec Transaction128651332021-07-20 18:52:181216 days ago1626807138IN
0x478967d3...7c8092854
0 ETH0.0025113728
Exec Transaction128651252021-07-20 18:51:051216 days ago1626807065IN
0x478967d3...7c8092854
0 ETH0.0020112527
Exec Transaction128651222021-07-20 18:49:421216 days ago1626806982IN
0x478967d3...7c8092854
0 ETH0.0027651232
Exec Transaction128651172021-07-20 18:48:471216 days ago1626806927IN
0x478967d3...7c8092854
0 ETH0.0027651232
Exec Transaction128650402021-07-20 18:28:131216 days ago1626805693IN
0x478967d3...7c8092854
0 ETH0.0019839124
Exec Transaction126852542021-06-22 17:04:091244 days ago1624381449IN
0x478967d3...7c8092854
0 ETH0.0081795882
Exec Transaction126531772021-06-17 17:09:581249 days ago1623949798IN
0x478967d3...7c8092854
0 ETH0.001984224
Exec Transaction126531712021-06-17 17:08:461249 days ago1623949726IN
0x478967d3...7c8092854
0 ETH0.0019836224
Exec Transaction126425252021-06-16 1:10:261251 days ago1623805826IN
0x478967d3...7c8092854
0 ETH0.001322616
Exec Transaction123751952021-05-05 16:09:431293 days ago1620230983IN
0x478967d3...7c8092854
0 ETH0.00883637103
Exec Transaction123706382021-05-04 23:12:441293 days ago1620169964IN
0x478967d3...7c8092854
0 ETH0.0050981959
Exec Transaction123706362021-05-04 23:12:241293 days ago1620169944IN
0x478967d3...7c8092854
0 ETH0.0038470359
Exec Transaction123706332021-05-04 23:11:431293 days ago1620169903IN
0x478967d3...7c8092854
0 ETH0.0039826258
Exec Transaction122068772021-04-09 17:03:361318 days ago1617987816IN
0x478967d3...7c8092854
0 ETH0.00942471138
Exec Transaction120500002021-03-16 13:49:571343 days ago1615902597IN
0x478967d3...7c8092854
0 ETH0.01126867165
Exec Transaction117446782021-01-28 13:53:251390 days ago1611842005IN
0x478967d3...7c8092854
0 ETH0.00799191117
Exec Transaction114987172020-12-21 19:47:581427 days ago1608580078IN
0x478967d3...7c8092854
0 ETH0.0062078100
Exec Transaction114987142020-12-21 19:47:181427 days ago1608580038IN
0x478967d3...7c8092854
0 ETH0.0077066100
Exec Transaction114987062020-12-21 19:46:101427 days ago1608579970IN
0x478967d3...7c8092854
0 ETH0.0077066100
Exec Transaction114986992020-12-21 19:44:431427 days ago1608579883IN
0x478967d3...7c8092854
0 ETH0.0077078100
Exec Transaction114986972020-12-21 19:44:251427 days ago1608579865IN
0x478967d3...7c8092854
0 ETH0.0077066100
Exec Transaction114986942020-12-21 19:43:061427 days ago1608579786IN
0x478967d3...7c8092854
0 ETH0.0077078100
Exec Transaction114986922020-12-21 19:42:091427 days ago1608579729IN
0x478967d3...7c8092854
0 ETH0.0077078100
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
111048352020-10-22 8:08:331488 days ago1603354113  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.