ETH Price: $2,507.04 (-3.43%)

Contract

0x550F589100E379C8530c0564566D6e270ff13457
 

Overview

ETH Balance

9,325.927328395263525492 ETH

Eth Value

$23,380,437.82 (@ $2,507.04/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer208474972024-09-28 7:00:113 days ago1727506811IN
0x550F5891...70ff13457
0.04194999 ETH0.0003390313.0811235
Transfer208463062024-09-28 3:00:113 days ago1727492411IN
0x550F5891...70ff13457
0.0425574 ETH0.0004086315.76636833
Transfer208457062024-09-28 1:00:113 days ago1727485211IN
0x550F5891...70ff13457
0.04273756 ETH0.0004300116.59124839
Transfer208394282024-09-27 4:00:114 days ago1727409611IN
0x550F5891...70ff13457
0.08744406 ETH0.0005784122.31701753
Transfer208364452024-09-26 18:00:114 days ago1727373611IN
0x550F5891...70ff13457
0.2111307 ETH0.0012981150.08535014
Transfer208358462024-09-26 16:00:114 days ago1727366411IN
0x550F5891...70ff13457
0.25695254 ETH0.0014286755.12292984
Transfer208349482024-09-26 13:00:115 days ago1727355611IN
0x550F5891...70ff13457
0.1868303 ETH0.0009398336.26180141
Transfer208328542024-09-26 6:00:115 days ago1727330411IN
0x550F5891...70ff13457
0.2107956 ETH0.0005023419.38192157
Transfer208322552024-09-26 4:00:115 days ago1727323211IN
0x550F5891...70ff13457
0.1383406 ETH0.0006442624.85795441
Transfer208316582024-09-26 2:00:115 days ago1727316011IN
0x550F5891...70ff13457
0.13180235 ETH0.0005794422.35680878
Transfer208307622024-09-25 23:00:115 days ago1727305211IN
0x550F5891...70ff13457
0.13351034 ETH0.0007036227.14807289
Transfer208304622024-09-25 22:00:115 days ago1727301611IN
0x550F5891...70ff13457
0.08621919 ETH0.0006473524.97696738
Transfer208286722024-09-25 16:00:115 days ago1727280011IN
0x550F5891...70ff13457
0.26020464 ETH0.0017514867.57791135
Transfer207979152024-09-21 9:00:1110 days ago1726909211IN
0x550F5891...70ff13457
0.16486953 ETH0.0006809326.27262416
Transfer207833052024-09-19 8:00:1112 days ago1726732811IN
0x550F5891...70ff13457
0.12061982 ETH0.0005518421.29208998
Transfer207830062024-09-19 7:00:1112 days ago1726729211IN
0x550F5891...70ff13457
0.11696121 ETH0.000483518.65508564
Transfer207824092024-09-19 5:00:1112 days ago1726722011IN
0x550F5891...70ff13457
0.07859012 ETH0.0004508117.39407525
Transfer207812172024-09-19 1:00:2312 days ago1726707623IN
0x550F5891...70ff13457
0.11224134 ETH0.0005986423.09773554
Transfer207806192024-09-18 23:00:1112 days ago1726700411IN
0x550F5891...70ff13457
0.08244088 ETH0.000244219.42253426
Transfer207797262024-09-18 20:00:1112 days ago1726689611IN
0x550F5891...70ff13457
0.13181969 ETH0.0006166723.79319348
Transfer207779342024-09-18 14:00:1113 days ago1726668011IN
0x550F5891...70ff13457
0.27357734 ETH0.0004617117.81426321
Transfer207770422024-09-18 11:00:1113 days ago1726657211IN
0x550F5891...70ff13457
0.38054059 ETH0.000236569.12751001
Transfer207764442024-09-18 9:00:1113 days ago1726650011IN
0x550F5891...70ff13457
0.19031901 ETH0.0003149612.15252861
Transfer207758492024-09-18 7:00:1113 days ago1726642811IN
0x550F5891...70ff13457
0.07647386 ETH0.00023148.92821721
Transfer207755512024-09-18 6:00:1113 days ago1726639211IN
0x550F5891...70ff13457
0.0763852 ETH0.000198577.66179086
View all transactions

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
205269922024-08-14 12:52:4748 days ago1723639967
0x550F5891...70ff13457
100.00023791 ETH
205269492024-08-14 12:44:1148 days ago1723639451
0x550F5891...70ff13457
1,568 ETH
205269162024-08-14 12:37:3548 days ago1723639055
0x550F5891...70ff13457
1,565 ETH
174267682023-06-07 6:37:23482 days ago1686119843
0x550F5891...70ff13457
4.99995767 ETH
115230552020-12-25 13:27:111376 days ago1608902831  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.