ETH Price: $3,367.63 (+0.01%)

Contract

0x5E89f8d81C74E311458277EA1Be3d3247c7cd7D1
 
Transaction Hash
Method
Block
From
To
Exec Transaction211375002024-11-07 18:16:1115 days ago1731003371IN
1inch Foundation: Multisig
0 ETH0.0059946120.72921389
Exec Transaction211374972024-11-07 18:15:3515 days ago1731003335IN
1inch Foundation: Multisig
0 ETH0.0025908919.16256171
Exec Transaction211374942024-11-07 18:14:5915 days ago1731003299IN
1inch Foundation: Multisig
0 ETH0.0028811621.41623498
Exec Transaction211374912024-11-07 18:14:2315 days ago1731003263IN
1inch Foundation: Multisig
0 ETH0.0052592119.66230443
Exec Transaction211374862024-11-07 18:13:2315 days ago1731003203IN
1inch Foundation: Multisig
0 ETH0.0063481221.83700937
Exec Transaction211374812024-11-07 18:12:2315 days ago1731003143IN
1inch Foundation: Multisig
0 ETH0.0028867521.45329834
Exec Transaction211374732024-11-07 18:10:4715 days ago1731003047IN
1inch Foundation: Multisig
0 ETH0.0030364922.45664493
Exec Transaction211374662024-11-07 18:09:2315 days ago1731002963IN
1inch Foundation: Multisig
0 ETH0.006514222.52873745
Exec Transaction200893492024-06-14 10:08:59161 days ago1718359739IN
1inch Foundation: Multisig
0 ETH0.000875078.98261714
Exec Transaction200830792024-06-13 13:04:11162 days ago1718283851IN
1inch Foundation: Multisig
0 ETH0.0014198617.64332822
Exec Transaction200337532024-06-06 15:42:59169 days ago1717688579IN
1inch Foundation: Multisig
0 ETH0.0064941322.87553156
Exec Transaction200317982024-06-06 9:09:11170 days ago1717664951IN
1inch Foundation: Multisig
0 ETH0.0220424722.81241233
Exec Transaction197810132024-05-02 7:41:59205 days ago1714635719IN
1inch Foundation: Multisig
0 ETH0.000773469
Exec Transaction197760612024-05-01 15:05:35205 days ago1714575935IN
1inch Foundation: Multisig
0 ETH0.0011418313.28456274
Exec Transaction196608212024-04-15 12:10:35221 days ago1713183035IN
1inch Foundation: Multisig
0 ETH0.0009663314
Exec Transaction196607942024-04-15 12:05:11221 days ago1713182711IN
1inch Foundation: Multisig
0 ETH0.000868812.58707022
Exec Transaction196606972024-04-15 11:45:47221 days ago1713181547IN
1inch Foundation: Multisig
0 ETH0.0011041916
Exec Transaction196606942024-04-15 11:45:11221 days ago1713181511IN
1inch Foundation: Multisig
0 ETH0.0014475616.81489564
Exec Transaction194474522024-03-16 12:27:35251 days ago1710592055IN
1inch Foundation: Multisig
0 ETH0.0044253433.68405544
Exec Transaction194474472024-03-16 12:26:35251 days ago1710591995IN
1inch Foundation: Multisig
0 ETH0.1190877732
Exec Transaction194472762024-03-16 11:51:59251 days ago1710589919IN
1inch Foundation: Multisig
0 ETH0.0043570833
Exec Transaction193200952024-02-27 16:30:59269 days ago1709051459IN
1inch Foundation: Multisig
0 ETH0.0233174568.18646804
Exec Transaction193200872024-02-27 16:29:23269 days ago1709051363IN
1inch Foundation: Multisig
0 ETH0.0126906264.14881132
Exec Transaction191180042024-01-30 8:02:47298 days ago1706601767IN
1inch Foundation: Multisig
0 ETH0.0019860428.84517216
Transfer190891322024-01-26 6:56:11302 days ago1706252171IN
1inch Foundation: Multisig
0.0257 ETH0.0005431919.87609554
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
134983092021-10-27 8:22:011123 days ago1635322921
1inch Foundation: Multisig
0.82968311 ETH
115020312020-12-22 7:56:181432 days ago1608623778  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.