ETH Price: $2,739.75 (+1.09%)

Contract

0xd83393B81c3A9515ed2A126a8a06b6B3319992dc
 

Overview

ETH Balance

0.015 ETH

Eth Value

$41.10 (@ $2,739.75/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Contribute133393792021-10-02 10:40:541237 days ago1633171254IN
0xd83393B8...3319992dc
0.01 ETH0.0011923337.99421568
Claim132121222021-09-12 16:50:441257 days ago1631465444IN
0xd83393B8...3319992dc
0 ETH0.0064857153.09678002
Claim131725802021-09-06 14:01:291263 days ago1630936889IN
0xd83393B8...3319992dc
0 ETH0.00426216117.44092869
Claim131725802021-09-06 14:01:291263 days ago1630936889IN
0xd83393B8...3319992dc
0 ETH0.00852362117.44092869
Claim131721952021-09-06 12:35:331263 days ago1630931733IN
0xd83393B8...3319992dc
0 ETH0.00785733108.26055602
Finalize131709682021-09-06 7:56:201263 days ago1630914980IN
0xd83393B8...3319992dc
0 ETH0.0522990177
Contribute131655122021-09-05 11:48:391264 days ago1630842519IN
0xd83393B8...3319992dc
0.05 ETH0.0099443179.68261357
Contribute131626802021-09-05 1:12:551264 days ago1630804375IN
0xd83393B8...3319992dc
0.25 ETH0.0118812495.20306067
Bid131595832021-09-04 13:53:171265 days ago1630763597IN
0xd83393B8...3319992dc
0 ETH0.0155381499.43264473
Contribute131595452021-09-04 13:45:591265 days ago1630763159IN
0xd83393B8...3319992dc
0.02 ETH0.0087480570.0971778
Contribute131594632021-09-04 13:30:191265 days ago1630762219IN
0xd83393B8...3319992dc
0.1 ETH0.0094847276
Contribute131594312021-09-04 13:23:221265 days ago1630761802IN
0xd83393B8...3319992dc
0.05 ETH0.0090052172.15775836
Contribute131594272021-09-04 13:22:541265 days ago1630761774IN
0xd83393B8...3319992dc
0.02 ETH0.0094365575.61406525
Contribute131593802021-09-04 13:15:081265 days ago1630761308IN
0xd83393B8...3319992dc
0.05 ETH0.0110599488.62205378
Contribute131586162021-09-04 10:22:271265 days ago1630750947IN
0xd83393B8...3319992dc
0.05 ETH0.01344238107.71229993
Contribute131585542021-09-04 10:06:201265 days ago1630749980IN
0xd83393B8...3319992dc
0.05 ETH0.0098804779.1710688
Contribute131577652021-09-04 7:06:441265 days ago1630739204IN
0xd83393B8...3319992dc
0.05 ETH0.0090750672.71746118
Contribute131553192021-09-03 21:58:091265 days ago1630706289IN
0xd83393B8...3319992dc
0.15 ETH0.02479813203.26503694

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
131725802021-09-06 14:01:291263 days ago1630936889
0xd83393B8...3319992dc
0.25 ETH
131721952021-09-06 12:35:331263 days ago1630931733
0xd83393B8...3319992dc
0.05 ETH
131709682021-09-06 7:56:201263 days ago1630914980
0xd83393B8...3319992dc
0.025 ETH
131595832021-09-04 13:53:171265 days ago1630763597
0xd83393B8...3319992dc
0.5 ETH
131552532021-09-03 21:42:441265 days ago1630705364  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xDc2cF528...46dc04561
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",
        "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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f000000000000000000000000e002fd6b5dd259c9563149e2161230f3ce63bef09036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f000000000000000000000000e002fd6b5dd259c9563149e2161230f3ce63bef081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea2646970667358221220a3350e7abb318cfd6c2f0227ef2ec856c01e215d98d5d2e5e2202e41a3c4deaf64736f6c63430008050033

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.