ETH Price: $3,336.76 (-3.70%)
Gas: 2 Gwei

Contract

0x5e14ed9dCeE22ba758E8de482301028b261c4a14
 
Transaction Hash
Method
Block
From
To
Exec Transaction164234222023-01-17 2:06:59554 days ago1673921219IN
0x5e14ed9d...b261c4a14
0 ETH0.0124713119
Exec Transaction164223932023-01-16 22:39:47555 days ago1673908787IN
0x5e14ed9d...b261c4a14
0 ETH0.002365835.31626586
Exec Transaction161799492022-12-14 2:27:47588 days ago1670984867IN
0x5e14ed9d...b261c4a14
0 ETH0.0064866113.81785475
Exec Transaction152842872022-08-05 19:46:29719 days ago1659728789IN
0x5e14ed9d...b261c4a14
0 ETH0.0026852913.0674557
Exec Transaction151625842022-07-17 21:38:30738 days ago1658093910IN
0x5e14ed9d...b261c4a14
0 ETH0.0159237272.77453687
Exec Transaction150635852022-07-02 14:15:54753 days ago1656771354IN
0x5e14ed9d...b261c4a14
0 ETH0.0032417616.07245138
Exec Transaction149227892022-06-07 20:26:51778 days ago1654633611IN
0x5e14ed9d...b261c4a14
0 ETH0.0160493973.3368143
Exec Transaction147144342022-05-05 1:46:05811 days ago1651715165IN
0x5e14ed9d...b261c4a14
0 ETH0.011108232.2865912
Exec Transaction146372192022-04-22 22:02:11824 days ago1650664931IN
0x5e14ed9d...b261c4a14
0 ETH0.0310489777.24510398
Exec Transaction145460532022-04-08 15:52:07838 days ago1649433127IN
0x5e14ed9d...b261c4a14
0 ETH0.0043533143.54622217
Exec Transaction145460402022-04-08 15:49:23838 days ago1649432963IN
0x5e14ed9d...b261c4a14
0 ETH0.0055538447.43553674
Exec Transaction145459982022-04-08 15:40:21838 days ago1649432421IN
0x5e14ed9d...b261c4a14
0 ETH0.0066735959.89153049
Exec Transaction145455522022-04-08 14:00:58838 days ago1649426458IN
0x5e14ed9d...b261c4a14
0 ETH0.0054924344
Exec Transaction145455172022-04-08 13:54:38838 days ago1649426078IN
0x5e14ed9d...b261c4a14
0 ETH0.0083687259.43401631
Exec Transaction144565382022-03-25 16:34:34852 days ago1648226074IN
0x5e14ed9d...b261c4a14
0 ETH0.0080221979.17759038
Exec Transaction144564892022-03-25 16:24:09852 days ago1648225449IN
0x5e14ed9d...b261c4a14
0 ETH0.0678867885
Exec Transaction143634722022-03-11 4:36:22866 days ago1646973382IN
0x5e14ed9d...b261c4a14
0 ETH0.007398331.85204535
Exec Transaction142572772022-02-22 17:42:35883 days ago1645551755IN
0x5e14ed9d...b261c4a14
0 ETH0.0282898265.96487416
Exec Transaction140008672022-01-14 2:15:17922 days ago1642126517IN
0x5e14ed9d...b261c4a14
0 ETH0.07928253193.1892081
Exec Transaction137370712021-12-04 1:44:39963 days ago1638582279IN
0x5e14ed9d...b261c4a14
0 ETH0.07218861134
Exec Transaction135575122021-11-05 15:57:45992 days ago1636127865IN
0x5e14ed9d...b261c4a14
0 ETH0.0656233157.67783926
Exec Transaction135574752021-11-05 15:47:54992 days ago1636127274IN
0x5e14ed9d...b261c4a14
0 ETH0.01576026155.56934435
Exec Transaction132772792021-09-22 19:03:051036 days ago1632337385IN
0x5e14ed9d...b261c4a14
0 ETH0.0308161585.8965251
Exec Transaction132765942021-09-22 16:19:421036 days ago1632327582IN
0x5e14ed9d...b261c4a14
0 ETH0.0039675459.48618217
Exec Transaction132765142021-09-22 16:04:081036 days ago1632326648IN
0x5e14ed9d...b261c4a14
0 ETH0.01840443103.95285318
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
114340972020-12-11 21:28:471321 days ago1607722127  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.