ETH Price: $2,579.17 (+0.96%)

Contract

0x382e8146b59508793D70B6cc36f09d9BeD5B6c52
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim154010062022-08-24 5:09:32800 days ago1661317772IN
0x382e8146...BeD5B6c52
0 ETH0.000586934.78908819
Claim154009702022-08-24 5:01:56800 days ago1661317316IN
0x382e8146...BeD5B6c52
0 ETH0.000760196.20226078
Claim154005862022-08-24 3:36:26800 days ago1661312186IN
0x382e8146...BeD5B6c52
0 ETH0.001024298.35695824
Claim153964672022-08-23 12:08:54801 days ago1661256534IN
0x382e8146...BeD5B6c52
0 ETH0.001099718.97225459
Claim153964212022-08-23 12:00:16801 days ago1661256016IN
0x382e8146...BeD5B6c52
0 ETH0.000802696.54900122
Claim153963752022-08-23 11:50:13801 days ago1661255413IN
0x382e8146...BeD5B6c52
0 ETH0.000780936.37145064
Claim153963372022-08-23 11:42:57801 days ago1661254977IN
0x382e8146...BeD5B6c52
0 ETH0.000965627.87826729
Claim153945632022-08-23 4:45:07801 days ago1661229907IN
0x382e8146...BeD5B6c52
0 ETH0.000824946.7304895
Claim153945342022-08-23 4:40:15801 days ago1661229615IN
0x382e8146...BeD5B6c52
0 ETH0.000908037.40841948
Claim153937972022-08-23 1:47:15801 days ago1661219235IN
0x382e8146...BeD5B6c52
0 ETH0.0012301410.03741967
Finalize150540552022-07-01 3:02:11854 days ago1656644531IN
0x382e8146...BeD5B6c52
0 ETH0.0137058219.04057244
Bid149431122022-06-11 7:45:13874 days ago1654933513IN
0x382e8146...BeD5B6c52
0 ETH0.0062659327.57287493
Contribute149201652022-06-07 9:49:54878 days ago1654595394IN
0x382e8146...BeD5B6c52
0.00145 ETH0.0041220732.48871505
Contribute149143462022-06-06 10:02:42879 days ago1654509762IN
0x382e8146...BeD5B6c52
0.012 ETH0.0048666638.35735476
Contribute149142582022-06-06 9:41:41879 days ago1654508501IN
0x382e8146...BeD5B6c52
0.01 ETH0.0029981323.6302773
Contribute149140602022-06-06 8:54:25879 days ago1654505665IN
0x382e8146...BeD5B6c52
0.0111 ETH0.0049971239.38560302
Contribute149138862022-06-06 8:09:36879 days ago1654502976IN
0x382e8146...BeD5B6c52
0.013 ETH0.0045533335.8877616
Contribute149138022022-06-06 7:53:22879 days ago1654502002IN
0x382e8146...BeD5B6c52
0.011 ETH0.0050924540.13694421
Contribute149135112022-06-06 6:40:26879 days ago1654497626IN
0x382e8146...BeD5B6c52
0.005 ETH0.0067792653.4318119
Contribute149134322022-06-06 6:19:27879 days ago1654496367IN
0x382e8146...BeD5B6c52
0.01 ETH0.0035125127.68438959
Contribute149133652022-06-06 6:03:33879 days ago1654495413IN
0x382e8146...BeD5B6c52
0.011 ETH0.0050263539.61597241
Contribute149132832022-06-06 5:42:12879 days ago1654494132IN
0x382e8146...BeD5B6c52
0.01 ETH0.003782129.80923919
Contribute149130372022-06-06 4:40:16879 days ago1654490416IN
0x382e8146...BeD5B6c52
0.01 ETH0.0032894526.51140406

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
150540552022-07-01 3:02:11854 days ago1656644531
0x382e8146...BeD5B6c52
0.00255 ETH
149431122022-06-11 7:45:13874 days ago1654933513
0x382e8146...BeD5B6c52
0.102 ETH
149130322022-06-06 4:39:27879 days ago1654490367  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xA1acc8A7...182031Eb7
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 999999 runs

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

/**
 * @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": 999999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f000000000000000000000000744c2be04d079eddb21c1a9bb13bb5259a3686149036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f000000000000000000000000744c2be04d079eddb21c1a9bb13bb5259a36861481565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea2646970667358221220a3350e7abb318cfd6c2f0227ef2ec856c01e215d98d5d2e5e2202e41a3c4deaf64736f6c63430008050033

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.