ETH Price: $2,305.50 (-0.51%)

Contract

0x2D163ab86C046a24D039ea3f93624de96aB73427
 

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Exec Transaction205324342024-08-15 7:07:3534 days ago1723705655IN
0x2D163ab8...96aB73427
0 ETH0.000217022.48065867
Exec Transaction203422512024-07-19 18:04:3560 days ago1721412275IN
0x2D163ab8...96aB73427
0 ETH0.00073217
Exec Transaction202894272024-07-12 9:08:3568 days ago1720775315IN
0x2D163ab8...96aB73427
0 ETH0.000726666.94716097
Exec Transaction200966002024-06-15 10:29:1195 days ago1718447351IN
0x2D163ab8...96aB73427
0 ETH0.000349944
Exec Transaction200627722024-06-10 16:58:2399 days ago1718038703IN
0x2D163ab8...96aB73427
0 ETH0.0017499820
Exec Transaction198310142024-05-09 7:32:35132 days ago1715239955IN
0x2D163ab8...96aB73427
0 ETH0.000371943.55627422
Exec Transaction195104512024-03-25 8:55:59177 days ago1711356959IN
0x2D163ab8...96aB73427
0 ETH0.0027195726
Exec Transaction191257792024-01-31 10:10:35231 days ago1706695835IN
0x2D163ab8...96aB73427
0 ETH0.0027044325.85826474
Exec Transaction178633862023-08-07 13:34:47407 days ago1691415287IN
0x2D163ab8...96aB73427
0 ETH0.0054587158.63974995
Exec Transaction178626022023-08-07 10:56:35408 days ago1691405795IN
0x2D163ab8...96aB73427
0 ETH0.0015972417.12221025
Exec Transaction177016662023-07-15 22:16:23430 days ago1689459383IN
0x2D163ab8...96aB73427
0 ETH0.0010845211.65042549
Exec Transaction177016622023-07-15 22:15:35430 days ago1689459335IN
0x2D163ab8...96aB73427
0 ETH0.0010608811.95293178
Exec Transaction173637352023-05-29 9:24:11478 days ago1685352251IN
0x2D163ab8...96aB73427
0 ETH0.0028702125.12376645
Exec Transaction167342632023-03-01 14:08:11566 days ago1677679691IN
0x2D163ab8...96aB73427
0 ETH0.0025041726.89396833
Exec Transaction167340062023-03-01 13:15:59566 days ago1677676559IN
0x2D163ab8...96aB73427
0 ETH0.0024599525.32306655
Exec Transaction167339982023-03-01 13:14:23566 days ago1677676463IN
0x2D163ab8...96aB73427
0 ETH0.0016436726.72253348
Exec Transaction166841872023-02-22 13:09:35573 days ago1677071375IN
0x2D163ab8...96aB73427
0 ETH0.0026517627.29814147
Exec Transaction164849272023-01-25 16:08:11601 days ago1674662891IN
0x2D163ab8...96aB73427
0 ETH0.0036011337.06668454
Exec Transaction163853282023-01-11 18:23:35615 days ago1673461415IN
0x2D163ab8...96aB73427
0 ETH0.0028864629.71046008
Exec Transaction163404372023-01-05 11:57:23621 days ago1672919843IN
0x2D163ab8...96aB73427
0 ETH0.0035577536.62017562
Exec Transaction161344612022-12-07 17:57:23650 days ago1670435843IN
0x2D163ab8...96aB73427
0 ETH0.0017713718.23731136
Exec Transaction160264792022-11-22 15:35:59665 days ago1669131359IN
0x2D163ab8...96aB73427
0 ETH0.0014133914.54993843
Exec Transaction159336662022-11-09 16:29:59678 days ago1668011399IN
0x2D163ab8...96aB73427
0 ETH0.0095581698.38263452
Exec Transaction159336542022-11-09 16:27:35678 days ago1668011255IN
0x2D163ab8...96aB73427
0 ETH0.0057336393.1980014
Exec Transaction157971162022-10-21 14:36:23697 days ago1666362983IN
0x2D163ab8...96aB73427
0 ETH0.0030327131.21582996
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
123313842021-04-28 21:33:311238 days ago1619645611
0x2D163ab8...96aB73427
0.1 ETH
123300082021-04-28 16:30:121238 days ago1619627412  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.