ETH Price: $2,764.98 (+5.39%)

Contract

0x147DD9C4B556891110264d4ceBD8812df6d9C382
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Update User Pric...165622272023-02-05 11:16:11565 days ago1675595771IN
0x147DD9C4...df6d9C382
0 ETH0.0011579116.12083366
Transfer159610982022-11-13 12:27:35649 days ago1668342455IN
0x147DD9C4...df6d9C382
0 ETH0.0007541713.4226289
Update User Pric...158620072022-10-30 16:15:23663 days ago1667146523IN
0x147DD9C4...df6d9C382
0 ETH0.000639258.89985678
Update User Pric...154895152022-09-07 9:24:24716 days ago1662542664IN
0x147DD9C4...df6d9C382
0 ETH0.0007295910.157623
Update User Pric...154767562022-09-05 8:21:01718 days ago1662366061IN
0x147DD9C4...df6d9C382
0 ETH0.0007466910.39404474
Update User Pric...154665302022-09-03 16:53:03720 days ago1662223983IN
0x147DD9C4...df6d9C382
0 ETH0.000865212.04563713
Update User Pric...154636312022-09-03 5:46:45720 days ago1662184005IN
0x147DD9C4...df6d9C382
0 ETH0.000394217.58029827
Update User Pric...154522722022-09-01 10:15:20722 days ago1662027320IN
0x147DD9C4...df6d9C382
0 ETH0.0012605717.55020628
Update User Pric...154262532022-08-28 6:35:00726 days ago1661668500IN
0x147DD9C4...df6d9C382
0 ETH0.000424285.90698704
Update User Pric...154217862022-08-27 13:19:09727 days ago1661606349IN
0x147DD9C4...df6d9C382
0 ETH0.000494656.88673681
Update User Pric...154215492022-08-27 12:22:35727 days ago1661602955IN
0x147DD9C4...df6d9C382
0 ETH0.000618.49265392
Update User Pric...154186232022-08-27 0:57:58727 days ago1661561878IN
0x147DD9C4...df6d9C382
0 ETH0.000491996.84976503
Update User Pric...154134282022-08-26 5:05:32728 days ago1661490332IN
0x147DD9C4...df6d9C382
0 ETH0.000525567.31710011
Update User Pric...154121802022-08-26 0:14:46728 days ago1661472886IN
0x147DD9C4...df6d9C382
0 ETH0.000971313.5228507
Update User Pric...153948942022-08-23 5:57:39731 days ago1661234259IN
0x147DD9C4...df6d9C382
0 ETH0.000421355.86629971
Update User Pric...153948742022-08-23 5:53:31731 days ago1661234011IN
0x147DD9C4...df6d9C382
0 ETH0.000312036
Update User Pric...153947932022-08-23 5:33:36731 days ago1661232816IN
0x147DD9C4...df6d9C382
0 ETH0.000432856.02641168
Update User Pric...153947412022-08-23 5:23:52731 days ago1661232232IN
0x147DD9C4...df6d9C382
0 ETH0.000467286.50567472
Update User Pric...153876442022-08-22 2:24:12732 days ago1661135052IN
0x147DD9C4...df6d9C382
0 ETH0.000517227.2009297
Update User Pric...153876402022-08-22 2:22:29732 days ago1661134949IN
0x147DD9C4...df6d9C382
0 ETH0.000471866.56944159
Update User Pric...153845362022-08-21 14:44:02733 days ago1661093042IN
0x147DD9C4...df6d9C382
0 ETH0.0007225610.05977738
Update User Pric...153842882022-08-21 13:41:51733 days ago1661089311IN
0x147DD9C4...df6d9C382
0 ETH0.000535167.45080949
Update User Pric...153836002022-08-21 10:59:26733 days ago1661079566IN
0x147DD9C4...df6d9C382
0 ETH0.000652859.08933852
Update User Pric...153832432022-08-21 9:41:42733 days ago1661074902IN
0x147DD9C4...df6d9C382
0 ETH0.000259633.61474904
Update User Pric...153824612022-08-21 6:45:19733 days ago1661064319IN
0x147DD9C4...df6d9C382
0 ETH0.000244593.40527338
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
145574702022-04-10 10:36:19866 days ago1649586979  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.