ETH Price: $3,330.05 (-3.97%)

Contract

0x587E7454dBf696c2298c2dD60E02F4DA9980f750
 

Overview

ETH Balance

0.035762195121951221 ETH

Eth Value

$119.09 (@ $3,330.05/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Cash168598512023-03-19 6:01:23648 days ago1679205683IN
0x587E7454...A9980f750
0 ETH0.0005846213.65309001
Cash154449402022-08-31 6:04:45848 days ago1661925885IN
0x587E7454...A9980f750
0 ETH0.0005058911.81438939
Cash154449202022-08-31 6:01:05848 days ago1661925665IN
0x587E7454...A9980f750
0 ETH0.0006267214.63623
Cash154389402022-08-30 6:56:55849 days ago1661842615IN
0x587E7454...A9980f750
0 ETH0.000256926
Cash154383462022-08-30 4:46:21849 days ago1661834781IN
0x587E7454...A9980f750
0 ETH0.000414059.66977566
Cash154341942022-08-29 12:53:48850 days ago1661777628IN
0x587E7454...A9980f750
0 ETH0.0006287414.68355178
Cash154324682022-08-29 6:10:19850 days ago1661753419IN
0x587E7454...A9980f750
0 ETH0.00024915.81738044
Cash154322242022-08-29 5:10:02850 days ago1661749802IN
0x587E7454...A9980f750
0 ETH0.00021675.06094891
Cash154320502022-08-29 4:33:45850 days ago1661747625IN
0x587E7454...A9980f750
0 ETH0.000328127.66295521
End154319282022-08-29 4:06:01850 days ago1661745961IN
0x587E7454...A9980f750
0 ETH0.000791776
Start154130062022-08-26 3:26:49853 days ago1661484409IN
0x587E7454...A9980f750
1.05 ETH0.000940928.84373745
Update User Pric...154129552022-08-26 3:17:45853 days ago1661483865IN
0x587E7454...A9980f750
0 ETH0.000591118.22721806
Update User Pric...154129332022-08-26 3:12:39853 days ago1661483559IN
0x587E7454...A9980f750
0 ETH0.000546787.61015906
Update User Pric...154122002022-08-26 0:18:47853 days ago1661473127IN
0x587E7454...A9980f750
0 ETH0.0007184910
Update User Pric...154082412022-08-25 9:08:55854 days ago1661418535IN
0x587E7454...A9980f750
0 ETH0.000432316.01704251
Update User Pric...154077132022-08-25 7:07:54854 days ago1661411274IN
0x587E7454...A9980f750
0 ETH0.000479466.67328849
Update User Pric...154074352022-08-25 5:57:06854 days ago1661407026IN
0x587E7454...A9980f750
0 ETH0.00039715.52699295

Latest 10 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
168598512023-03-19 6:01:23648 days ago1679205683
0x587E7454...A9980f750
0.00951219 ETH
154449402022-08-31 6:04:45848 days ago1661925885
0x587E7454...A9980f750
0.09512195 ETH
154449202022-08-31 6:01:05848 days ago1661925665
0x587E7454...A9980f750
0.15219512 ETH
154389402022-08-30 6:56:55849 days ago1661842615
0x587E7454...A9980f750
0.07990243 ETH
154383462022-08-30 4:46:21849 days ago1661834781
0x587E7454...A9980f750
0.14268292 ETH
154341942022-08-29 12:53:48850 days ago1661777628
0x587E7454...A9980f750
0.07609756 ETH
154324682022-08-29 6:10:19850 days ago1661753419
0x587E7454...A9980f750
0.1902439 ETH
154322242022-08-29 5:10:02850 days ago1661749802
0x587E7454...A9980f750
0.09512195 ETH
154320502022-08-29 4:33:45850 days ago1661747625
0x587E7454...A9980f750
0.17335975 ETH
154074082022-08-25 5:52:01854 days ago1661406721  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xB9b100DC...753e9F734
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
InitializedProxy

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 1 : InitializedProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @title InitializedProxy
 * @author Anna Carroll
 */
contract InitializedProxy {
    // address of logic contract
    address public immutable logic;

    // ======== Constructor =========

    constructor(
        address _logic,
        bytes memory _initializationCalldata
    ) {
        logic = _logic;
        // Delegatecall into the logic contract, supplying initialization calldata
        (bool _ok, bytes memory returnData) =
            _logic.delegatecall(_initializationCalldata);
        // Revert if delegatecall to implementation reverts
        require(_ok, string(returnData));
    }

    // ======== Fallback =========

    fallback() external payable {
        address _impl = logic;
        assembly {
            let ptr := mload(0x40)
            calldatacopy(ptr, 0, calldatasize())
            let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0)
            let size := returndatasize()
            returndatacopy(ptr, 0, size)

            switch result
                case 0 {
                    revert(ptr, size)
                }
                default {
                    return(ptr, size)
                }
        }
    }

    // ======== Receive =========

    receive() external payable {} // solhint-disable-line no-empty-blocks
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_initializationCalldata","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"logic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.