ETH Price: $2,331.71 (+2.59%)

Contract

0xBc343820b8aD981d1800A4E4D248CCCdf1306C8F
 

Overview

ETH Balance

0.143197339246119735 ETH

Eth Value

$333.89 (@ $2,331.71/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Cash155194492022-09-12 6:36:39736 days ago1662964599IN
0xBc343820...df1306C8F
0 ETH0.000265066.17368734
Cash155194452022-09-12 6:35:40736 days ago1662964540IN
0xBc343820...df1306C8F
0 ETH0.000273876.37886662
Cash155194442022-09-12 6:35:38736 days ago1662964538IN
0xBc343820...df1306C8F
0 ETH0.000272696.35155136
Cash155194412022-09-12 6:34:44736 days ago1662964484IN
0xBc343820...df1306C8F
0 ETH0.000243635.67474485
Cash155177012022-09-11 23:48:25737 days ago1662940105IN
0xBc343820...df1306C8F
0 ETH0.000247135.75613382
Cash155176922022-09-11 23:45:47737 days ago1662939947IN
0xBc343820...df1306C8F
0 ETH0.000206084.79994149
Cash155176912022-09-11 23:45:42737 days ago1662939942IN
0xBc343820...df1306C8F
0 ETH0.000194184.52295828
Cash155144092022-09-11 10:49:19737 days ago1662893359IN
0xBc343820...df1306C8F
0 ETH0.000300276.99393849
Cash155144062022-09-11 10:48:30737 days ago1662893310IN
0xBc343820...df1306C8F
0 ETH0.000303867.07744228
Cash155144022022-09-11 10:48:10737 days ago1662893290IN
0xBc343820...df1306C8F
0 ETH0.000351718.19203644
Cash155144012022-09-11 10:47:52737 days ago1662893272IN
0xBc343820...df1306C8F
0 ETH0.000319817.44890648
End155143972022-09-11 10:45:14737 days ago1662893114IN
0xBc343820...df1306C8F
0 ETH0.000644285.90781565
Start153811932022-08-21 1:55:48758 days ago1661046948IN
0xBc343820...df1306C8F
0.28 ETH0.000724316.80786725
Update User Pric...153811692022-08-21 1:48:58758 days ago1661046538IN
0xBc343820...df1306C8F
0 ETH0.000356084.95757771
Update User Pric...153811572022-08-21 1:46:22758 days ago1661046382IN
0xBc343820...df1306C8F
0 ETH0.000365115.08323588
Update User Pric...153811342022-08-21 1:41:01758 days ago1661046061IN
0xBc343820...df1306C8F
0 ETH0.000475146.61517863
Update User Pric...153811272022-08-21 1:39:29758 days ago1661045969IN
0xBc343820...df1306C8F
0 ETH0.000455726.34479353
Update User Pric...153811192022-08-21 1:37:57758 days ago1661045877IN
0xBc343820...df1306C8F
0 ETH0.000392345.46239684

Latest 12 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
155194492022-09-12 6:36:39736 days ago1662964599
0xBc343820...df1306C8F
0.01210643 ETH
155194452022-09-12 6:35:40736 days ago1662964540
0xBc343820...df1306C8F
0.01210643 ETH
155194442022-09-12 6:35:38736 days ago1662964538
0xBc343820...df1306C8F
0.01210643 ETH
155194412022-09-12 6:34:44736 days ago1662964484
0xBc343820...df1306C8F
0.01210643 ETH
155177012022-09-11 23:48:25737 days ago1662940105
0xBc343820...df1306C8F
0.01210643 ETH
155176922022-09-11 23:45:47737 days ago1662939947
0xBc343820...df1306C8F
0.01210643 ETH
155176912022-09-11 23:45:42737 days ago1662939942
0xBc343820...df1306C8F
0.01452771 ETH
155144092022-09-11 10:49:19737 days ago1662893359
0xBc343820...df1306C8F
0.01331707 ETH
155144062022-09-11 10:48:30737 days ago1662893310
0xBc343820...df1306C8F
0.01210643 ETH
155144022022-09-11 10:48:10737 days ago1662893290
0xBc343820...df1306C8F
0.01210643 ETH
155144012022-09-11 10:47:52737 days ago1662893272
0xBc343820...df1306C8F
0.01210643 ETH
153766762022-08-20 8:56:06759 days ago1660985766  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x85b37C6b...4dC2ADecA
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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.