ETH Price: $2,615.07 (-0.94%)

Contract

0x43e42Fdd398DB8F63bEa2d7D94777AAb601b453B
 

Overview

ETH Balance

1.6 ETH

Eth Value

$4,184.12 (@ $2,615.07/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction192483762024-02-17 15:09:47187 days ago1708182587IN
0x43e42Fdd...b601b453B
0 ETH0.0029114829.0912784
Exec Transaction192477832024-02-17 13:09:23187 days ago1708175363IN
0x43e42Fdd...b601b453B
0 ETH0.0020933120.92127159
Exec Transaction187873902023-12-14 22:35:59251 days ago1702593359IN
0x43e42Fdd...b601b453B
0 ETH0.0054002758.27357329
Exec Transaction187873682023-12-14 22:31:35251 days ago1702593095IN
0x43e42Fdd...b601b453B
0 ETH0.0036214743.29263066
Exec Transaction187873492023-12-14 22:27:47251 days ago1702592867IN
0x43e42Fdd...b601b453B
0 ETH0.0039509747.3607877
Exec Transaction187873362023-12-14 22:24:59251 days ago1702592699IN
0x43e42Fdd...b601b453B
0 ETH0.002874542.89797152
Exec Transaction187873052023-12-14 22:18:47251 days ago1702592327IN
0x43e42Fdd...b601b453B
0 ETH0.0036660741.3279173
Exec Transaction187231582023-12-05 22:35:23260 days ago1701815723IN
0x43e42Fdd...b601b453B
0 ETH0.0047263650.83259298
Exec Transaction182138852023-09-25 16:07:35332 days ago1695658055IN
0x43e42Fdd...b601b453B
0 ETH0.0032165927
Exec Transaction175715702023-06-27 15:27:35422 days ago1687879655IN
0x43e42Fdd...b601b453B
0 ETH0.0015017824.41087865
Exec Transaction175715492023-06-27 15:23:23422 days ago1687879403IN
0x43e42Fdd...b601b453B
0 ETH0.0033328924.72581345
Exec Transaction175699192023-06-27 9:48:47422 days ago1687859327IN
0x43e42Fdd...b601b453B
0 ETH0.0013785612.60965276
Exec Transaction175699142023-06-27 9:47:47422 days ago1687859267IN
0x43e42Fdd...b601b453B
0 ETH0.0008742312.12756204
Exec Transaction175698522023-06-27 9:35:23422 days ago1687858523IN
0x43e42Fdd...b601b453B
0 ETH0.0022621314.5219664
Exec Transaction171821182023-05-03 18:58:23476 days ago1683140303IN
0x43e42Fdd...b601b453B
0 ETH0.008101489.35739001
Exec Transaction171810452023-05-03 15:21:59477 days ago1683127319IN
0x43e42Fdd...b601b453B
0 ETH0.0069461586.24795019
Exec Transaction151802902022-07-20 15:27:05764 days ago1658330825IN
0x43e42Fdd...b601b453B
0 ETH0.0072696195.7687313
Exec Transaction151802252022-07-20 15:12:06764 days ago1658329926IN
0x43e42Fdd...b601b453B
0 ETH0.01006804124.76512561
Exec Transaction151741172022-07-19 16:27:34765 days ago1658248054IN
0x43e42Fdd...b601b453B
0 ETH0.0045492963.32002258
Exec Transaction151739962022-07-19 16:00:19765 days ago1658246419IN
0x43e42Fdd...b601b453B
0 ETH0.0037663974.94268637
Exec Transaction151739962022-07-19 16:00:19765 days ago1658246419IN
0x43e42Fdd...b601b453B
0 ETH0.0079174
Exec Transaction151450712022-07-15 4:18:00769 days ago1657858680IN
0x43e42Fdd...b601b453B
0 ETH0.000574211.33266164
Exec Transaction151450712022-07-15 4:18:00769 days ago1657858680IN
0x43e42Fdd...b601b453B
0 ETH0.0008724511
Exec Transaction151350412022-07-13 15:28:53771 days ago1657726133IN
0x43e42Fdd...b601b453B
0 ETH0.0052275650.08831032
Exec Transaction150404822022-06-28 16:02:27786 days ago1656432147IN
0x43e42Fdd...b601b453B
0 ETH0.0043062951.452224
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
129593402021-08-04 15:02:091114 days ago1628089329  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.