ETH Price: $3,059.45 (+2.59%)
Gas: 2 Gwei

Contract

0x029Aa20Dcc15c022b1b61D420aaCf7f179A9C73f
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Exec Transaction197438982024-04-27 3:08:4770 days ago1714187327IN
PoolTogether: Multisig 2
0 ETH0.000565437.64926667
Exec Transaction197438872024-04-27 3:06:3570 days ago1714187195IN
PoolTogether: Multisig 2
0 ETH0.000538697
Exec Transaction197438362024-04-27 2:56:2370 days ago1714186583IN
PoolTogether: Multisig 2
0 ETH0.000540996
Exec Transaction174871022023-06-15 18:37:23387 days ago1686854243IN
PoolTogether: Multisig 2
0 ETH0.0011644920.16922384
Exec Transaction174870932023-06-15 18:35:35387 days ago1686854135IN
PoolTogether: Multisig 2
0 ETH0.0012313121.33102879
Exec Transaction174870882023-06-15 18:34:35387 days ago1686854075IN
PoolTogether: Multisig 2
0 ETH0.0012333120.72511734
Exec Transaction174869672023-06-15 18:10:11387 days ago1686852611IN
PoolTogether: Multisig 2
0 ETH0.0013965823.39383408
Exec Transaction173726692023-05-30 15:36:23403 days ago1685460983IN
PoolTogether: Multisig 2
0 ETH0.0039808660.99173967
Exec Transaction167157412023-02-26 23:41:47496 days ago1677454907IN
PoolTogether: Multisig 2
0 ETH0.0020625624
Exec Transaction157779652022-10-18 22:25:35627 days ago1666131935IN
PoolTogether: Multisig 2
0 ETH0.0075015529.49642078
Exec Transaction157779522022-10-18 22:22:59627 days ago1666131779IN
PoolTogether: Multisig 2
0 ETH0.0013301423.50407331
Exec Transaction152399182022-07-29 21:50:51708 days ago1659131451IN
PoolTogether: Multisig 2
0 ETH0.00141418.38542006
Exec Transaction145860362022-04-14 21:46:08814 days ago1649972768IN
PoolTogether: Multisig 2
0 ETH0.0035486251.25841609
Exec Transaction145860272022-04-14 21:44:09814 days ago1649972649IN
PoolTogether: Multisig 2
0 ETH0.0032296146.64371822
Exec Transaction145730432022-04-12 20:54:57816 days ago1649796897IN
PoolTogether: Multisig 2
0 ETH0.0054346479
Exec Transaction145711542022-04-12 14:07:31816 days ago1649772451IN
PoolTogether: Multisig 2
0 ETH0.0035482741.68750552
Exec Transaction145711342022-04-12 14:03:46816 days ago1649772226IN
PoolTogether: Multisig 2
0 ETH0.0027720248.98256095
Exec Transaction145655402022-04-11 16:47:31817 days ago1649695651IN
PoolTogether: Multisig 2
0 ETH0.0055399278.91074566
Exec Transaction145330412022-04-06 15:10:11822 days ago1649257811IN
PoolTogether: Multisig 2
0 ETH0.0039491261.09326718
Exec Transaction142591112022-02-23 0:26:07865 days ago1645575967IN
PoolTogether: Multisig 2
0 ETH0.0047506658.53743462
Exec Transaction142589712022-02-22 23:55:55865 days ago1645574155IN
PoolTogether: Multisig 2
0 ETH0.0088385393.085244
Exec Transaction141686992022-02-09 0:39:39878 days ago1644367179IN
PoolTogether: Multisig 2
0 ETH0.0044460550
Exec Transaction141620472022-02-07 23:53:36880 days ago1644278016IN
PoolTogether: Multisig 2
0 ETH0.00908799103.13085158
Exec Transaction140714832022-01-25 0:08:22894 days ago1643069302IN
PoolTogether: Multisig 2
0 ETH0.03402671125.75054105
Exec Transaction140714642022-01-25 0:04:42894 days ago1643069082IN
PoolTogether: Multisig 2
0 ETH0.01177723140.05345892
View all transactions

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block From To Value
117850902021-02-03 19:10:411249 days ago1612379441
PoolTogether: Multisig 2
0.60437971 ETH
117850742021-02-03 19:07:381249 days ago1612379258
PoolTogether: Multisig 2
0.60437971 ETH
117598852021-01-30 22:18:371253 days ago1612045117
PoolTogether: Multisig 2
4 ETH
117598642021-01-30 22:12:111253 days ago1612044731
PoolTogether: Multisig 2
4 ETH
95670672020-02-27 17:42:041591 days ago1582825324  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.