ETH Price: $3,329.81 (-3.50%)

Contract

0x41F17A54376D7d50Cd572DA1ff2fCaBb975e5f83
 

Overview

ETH Balance

0.022 ETH

Eth Value

$73.26 (@ $3,329.81/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim139546342022-01-06 22:45:111054 days ago1641509111IN
0x41F17A54...b975e5f83
0 ETH0.00808024127.62989137
Claim136677422021-11-23 0:41:531099 days ago1637628113IN
0x41F17A54...b975e5f83
0 ETH0.01159034183.07288356
Claim133354812021-10-01 19:58:511152 days ago1633118331IN
0x41F17A54...b975e5f83
0 ETH0.006173897.51699734
Claim133194002021-09-29 7:42:411154 days ago1632901361IN
0x41F17A54...b975e5f83
0 ETH0.0032456851.26651874
Claim133110572021-09-28 0:12:191155 days ago1632787939IN
0x41F17A54...b975e5f83
0 ETH0.0031196849.27637016
Finalize133102982021-09-27 21:35:091156 days ago1632778509IN
0x41F17A54...b975e5f83
0 ETH0.0070237966.61605385
Contribute132916812021-09-25 0:24:401158 days ago1632529480IN
0x41F17A54...b975e5f83
0.01 ETH0.005110840.95231073
Contribute132738782021-09-22 6:05:461161 days ago1632290746IN
0x41F17A54...b975e5f83
0.022 ETH0.0072501558.09467563
Contribute132738602021-09-22 6:01:131161 days ago1632290473IN
0x41F17A54...b975e5f83
0.17 ETH0.0047412737.99126428
Contribute132469382021-09-18 2:04:371165 days ago1631930677IN
0x41F17A54...b975e5f83
0.05 ETH0.0041675546
Contribute132457682021-09-17 21:54:201166 days ago1631915660IN
0x41F17A54...b975e5f83
0.1 ETH0.0059223747.45529797
Contribute132439442021-09-17 15:08:151166 days ago1631891295IN
0x41F17A54...b975e5f83
0.05 ETH0.0062261249.88920209
Contribute132438242021-09-17 14:49:211166 days ago1631890161IN
0x41F17A54...b975e5f83
0.05 ETH0.0059779549

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
139546342022-01-06 22:45:111054 days ago1641509111
0x41F17A54...b975e5f83
0.17 ETH
136677422021-11-23 0:41:531099 days ago1637628113
0x41F17A54...b975e5f83
0.1 ETH
133354812021-10-01 19:58:511152 days ago1633118331
0x41F17A54...b975e5f83
0.05 ETH
133194002021-09-29 7:42:411154 days ago1632901361
0x41F17A54...b975e5f83
0.01 ETH
133110572021-09-28 0:12:191155 days ago1632787939
0x41F17A54...b975e5f83
0.1 ETH
132437922021-09-17 14:41:411166 days ago1631889701  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.