ETH Price: $2,024.81 (-2.15%)
Gas: 0.75 Gwei

Contract

0xaEDCFf980AEE98E7764cFef722F039820a16918B
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction217882942025-02-06 15:15:1148 days ago1738854911IN
0xaEDCFf98...20a16918B
0 ETH0.000318014.18698957
Exec Transaction215223562024-12-31 12:08:2385 days ago1735646903IN
0xaEDCFf98...20a16918B
0 ETH0.0007780510.24559168
Exec Transaction213877202024-12-12 16:48:23104 days ago1734022103IN
0xaEDCFf98...20a16918B
0 ETH0.0023792931.33127246
Exec Transaction211788342024-11-13 12:41:11133 days ago1731501671IN
0xaEDCFf98...20a16918B
0 ETH0.002573828.34342473
Exec Transaction208138002024-09-23 14:12:23184 days ago1727100743IN
0xaEDCFf98...20a16918B
0 ETH0.0030173839.73386115
Exec Transaction205846082024-08-22 14:01:11216 days ago1724335271IN
0xaEDCFf98...20a16918B
0 ETH0.000210872.77644334
Exec Transaction200467232024-06-08 11:09:59292 days ago1717844999IN
0xaEDCFf98...20a16918B
0 ETH0.000593096.37374995
Exec Transaction182909662023-10-06 10:49:23538 days ago1696589363IN
0xaEDCFf98...20a16918B
0 ETH0.000540647.10328335
Exec Transaction182253812023-09-27 6:41:47547 days ago1695796907IN
0xaEDCFf98...20a16918B
0 ETH0.000703819.24566649
Exec Transaction178329072023-08-03 7:12:47602 days ago1691046767IN
0xaEDCFf98...20a16918B
0 ETH0.0009794212.86612155
Exec Transaction170860112023-04-20 6:40:11707 days ago1681972811IN
0xaEDCFf98...20a16918B
0 ETH0.004802665.54848615
Exec Transaction170091112023-04-09 6:54:23718 days ago1681023263IN
0xaEDCFf98...20a16918B
0 ETH0.0015498620.41233277
Exec Transaction161808542022-12-14 5:28:59834 days ago1670995739IN
0xaEDCFf98...20a16918B
0 ETH0.0009541212.56620068
Exec Transaction150998292022-07-08 4:36:44993 days ago1657255004IN
0xaEDCFf98...20a16918B
0 ETH0.0027551636.29801979
Exec Transaction150961662022-07-07 15:13:45993 days ago1657206825IN
0xaEDCFf98...20a16918B
0 ETH0.0047192462.15421466
Exec Transaction150449582022-06-29 12:11:341001 days ago1656504694IN
0xaEDCFf98...20a16918B
0 ETH0.0029492138.84228316
Exec Transaction127011442021-06-25 4:26:071371 days ago1624595167IN
0xaEDCFf98...20a16918B
0 ETH0.000508716.7
Exec Transaction121983502021-04-08 9:24:131449 days ago1617873853IN
0xaEDCFf98...20a16918B
0 ETH0.0062799396
Exec Transaction121127842021-03-26 5:38:271462 days ago1616737107IN
0xaEDCFf98...20a16918B
0 ETH0.0060836893.00000145
Exec Transaction120114312021-03-10 14:55:261477 days ago1615388126IN
0xaEDCFf98...20a16918B
0 ETH0.00875931134
Exec Transaction118860172021-02-19 7:38:491497 days ago1613720329IN
0xaEDCFf98...20a16918B
0 ETH0.00876092134
Exec Transaction118803722021-02-18 10:48:291498 days ago1613645309IN
0xaEDCFf98...20a16918B
0 ETH0.00863174132
Transfer118803012021-02-18 10:32:241498 days ago1613644344IN
0xaEDCFf98...20a16918B
1 ETH0.00304421134

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer211788342024-11-13 12:41:11133 days ago1731501671
0xaEDCFf98...20a16918B
1 ETH
-118802852021-02-18 10:29:221498 days ago1613644162  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

API
[{"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.