ETH Price: $3,499.10 (+2.40%)
Gas: 11 Gwei

Contract

0x1688a157EC0cB48f04b6D3C55cE8F4e4f07a3E60
 

Overview

ETH Balance

0.01 ETH

Eth Value

$34.99 (@ $3,499.10/ETH)

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim161030392022-12-03 8:16:59591 days ago1670055419IN
0x1688a157...4f07a3E60
0 ETH0.0014630811.93695152
Claim154202452022-08-27 7:23:14689 days ago1661584994IN
0x1688a157...4f07a3E60
0 ETH0.000364654.99686335
Claim153969542022-08-23 13:54:25693 days ago1661262865IN
0x1688a157...4f07a3E60
0 ETH0.0014272611.64469418
Claim151921352022-07-22 11:38:26725 days ago1658489906IN
0x1688a157...4f07a3E60
0 ETH0.0004385112.06841089
Claim151921342022-07-22 11:38:08725 days ago1658489888IN
0x1688a157...4f07a3E60
0 ETH0.0014128510.89481927
Claim150616482022-07-02 7:07:47745 days ago1656745667IN
0x1688a157...4f07a3E60
0 ETH0.0017381614.18125899
Claim150616342022-07-02 7:02:57745 days ago1656745377IN
0x1688a157...4f07a3E60
0 ETH0.001310910.69533661
Finalize150560062022-07-01 10:13:01746 days ago1656670381IN
0x1688a157...4f07a3E60
0 ETH0.0129743213.95185209
Bid149835072022-06-18 6:15:01759 days ago1655532901IN
0x1688a157...4f07a3E60
0 ETH0.0034898815.3570483
Contribute149828282022-06-18 3:28:17760 days ago1655522897IN
0x1688a157...4f07a3E60
0.01 ETH0.0017909714.11581814
Contribute149671702022-06-15 11:09:41762 days ago1655291381IN
0x1688a157...4f07a3E60
0.01 ETH0.0053846242.43971425
Contribute149657292022-06-15 4:57:18763 days ago1655269038IN
0x1688a157...4f07a3E60
0.01 ETH0.0036729228.94871273
Contribute149651672022-06-15 2:38:24763 days ago1655260704IN
0x1688a157...4f07a3E60
0.01 ETH0.0039914131.45889679
Contribute149649402022-06-15 1:38:44763 days ago1655257124IN
0x1688a157...4f07a3E60
0.01 ETH0.0044704835.2347731
Contribute149643582022-06-14 23:10:22763 days ago1655248222IN
0x1688a157...4f07a3E60
0.01 ETH0.0045504535.86506457
Contribute149574372022-06-13 18:22:37764 days ago1655144557IN
0x1688a157...4f07a3E60
0.01 ETH0.0073980258.30866818
Contribute149520522022-06-12 20:11:04765 days ago1655064664IN
0x1688a157...4f07a3E60
0.01 ETH0.0030184923.79075113
Contribute149505112022-06-12 13:55:25765 days ago1655042125IN
0x1688a157...4f07a3E60
0.01 ETH0.0029280323.07771679
Contribute149500852022-06-12 12:20:26765 days ago1655036426IN
0x1688a157...4f07a3E60
0.01 ETH0.0022507417.7395952
Contribute149498502022-06-12 11:14:38765 days ago1655032478IN
0x1688a157...4f07a3E60
0.01 ETH0.0025103519.78570577
Contribute149497282022-06-12 10:48:38765 days ago1655030918IN
0x1688a157...4f07a3E60
0.01 ETH0.0026422920.82560369
Contribute149496862022-06-12 10:36:33765 days ago1655030193IN
0x1688a157...4f07a3E60
0.01 ETH0.002789222.47964238

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
154202452022-08-27 7:23:14689 days ago1661584994
0x1688a157...4f07a3E60
0.01 ETH
151921342022-07-22 11:38:08725 days ago1658489888
0x1688a157...4f07a3E60
0.008525 ETH
150560062022-07-01 10:13:01746 days ago1656670381
0x1688a157...4f07a3E60
0.002475 ETH
149835072022-06-18 6:15:01759 days ago1655532901
0x1688a157...4f07a3E60
0.099 ETH
149496712022-06-12 10:32:52765 days ago1655029972  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.