ETH Price: $3,949.44 (+1.01%)

Contract

0x726938e1F7C1dAd9007333602A2318b961a6fcFf
 

Overview

ETH Balance

0.00215305 ETH

Eth Value

$8.50 (@ $3,949.44/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Contribute151905742022-07-22 5:33:07878 days ago1658467987IN
0x726938e1...961a6fcFf
0.00001 ETH0.001092848.6134015
Contribute151898102022-07-22 2:45:35878 days ago1658457935IN
0x726938e1...961a6fcFf
0.00001 ETH0.001250899.85913054
Contribute151896572022-07-22 2:15:04878 days ago1658456104IN
0x726938e1...961a6fcFf
0.00001 ETH0.0016077612.67186312
Contribute151842482022-07-21 6:14:00879 days ago1658384040IN
0x726938e1...961a6fcFf
0.00001105 ETH0.000917217.22913612
Contribute151785002022-07-20 8:47:09880 days ago1658306829IN
0x726938e1...961a6fcFf
0.00001 ETH0.0017275613.61609754
Contribute151726272022-07-19 10:48:41881 days ago1658227721IN
0x726938e1...961a6fcFf
0.00001 ETH0.0016070712.66642973
Contribute151719242022-07-19 8:19:27881 days ago1658218767IN
0x726938e1...961a6fcFf
0.001 ETH0.0015859612.5
Contribute151711842022-07-19 5:29:48881 days ago1658208588IN
0x726938e1...961a6fcFf
0.00001 ETH0.0014658311.55318622
Contribute151662372022-07-18 11:05:13882 days ago1658142313IN
0x726938e1...961a6fcFf
0.00001 ETH0.0017095513.47409554
Contribute151637942022-07-18 1:59:29882 days ago1658109569IN
0x726938e1...961a6fcFf
0.00001 ETH0.0013478410.62324134
Contribute151580022022-07-17 4:16:42883 days ago1658031402IN
0x726938e1...961a6fcFf
0.0001 ETH0.0013981411.01970182
Contribute151579952022-07-17 4:14:42883 days ago1658031282IN
0x726938e1...961a6fcFf
0.000084 ETH0.001144689.02197547
Contribute151579872022-07-17 4:12:54883 days ago1658031174IN
0x726938e1...961a6fcFf
0.000078 ETH0.001184159.33307596
Contribute151579752022-07-17 4:10:28883 days ago1658031028IN
0x726938e1...961a6fcFf
0.0001 ETH0.001200799.4642457
Contribute151579622022-07-17 4:07:26883 days ago1658030846IN
0x726938e1...961a6fcFf
0.0001 ETH0.000996777.8561981
Contribute151578312022-07-17 3:41:34883 days ago1658029294IN
0x726938e1...961a6fcFf
0.0001 ETH0.001263379.95748583
Contribute151577442022-07-17 3:22:17883 days ago1658028137IN
0x726938e1...961a6fcFf
0.0001 ETH0.001131888.92114289
Contribute151576592022-07-17 3:02:56883 days ago1658026976IN
0x726938e1...961a6fcFf
0.0002 ETH0.000931027.33797881
Contribute151576282022-07-17 2:57:24883 days ago1658026644IN
0x726938e1...961a6fcFf
0.0001 ETH0.000955367.52984665
Contribute151576162022-07-17 2:55:47883 days ago1658026547IN
0x726938e1...961a6fcFf
0.0001 ETH0.001150879.27547215

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
151573022022-07-17 1:48:50883 days ago1658022530  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.