ETH Price: $2,463.47 (+0.48%)

Contract

0x67130d64Af37c4Dd14C508A293828b86f0D6d067
 

Overview

ETH Balance

0.027144521162123386 ETH

Eth Value

$66.87 (@ $2,463.47/ETH)

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Cash154018332022-08-24 8:21:11781 days ago1661329271IN
0x67130d64...6f0D6d067
0 ETH0.000385719.00778122
Cash154017582022-08-24 8:04:48781 days ago1661328288IN
0x67130d64...6f0D6d067
0 ETH0.0005223112.19792359
Cash154017572022-08-24 8:04:46781 days ago1661328286IN
0x67130d64...6f0D6d067
0 ETH0.0004714111.00931909
Cash154017302022-08-24 7:58:38781 days ago1661327918IN
0x67130d64...6f0D6d067
0 ETH0.000360528.41962143
Cash154017122022-08-24 7:55:29781 days ago1661327729IN
0x67130d64...6f0D6d067
0 ETH0.000421829.85109806
Cash154016822022-08-24 7:49:33781 days ago1661327373IN
0x67130d64...6f0D6d067
0 ETH0.0005143712.01257825
End154016632022-08-24 7:45:02781 days ago1661327102IN
0x67130d64...6f0D6d067
0 ETH0.000902868.6473397
Start153827102022-08-21 7:43:07784 days ago1661067787IN
0x67130d64...6f0D6d067
0.07524999 ETH0.00041363.8874605
Update User Pric...153825972022-08-21 7:18:31784 days ago1661066311IN
0x67130d64...6f0D6d067
0 ETH0.000340154.73503249
Update User Pric...153825932022-08-21 7:17:40784 days ago1661066260IN
0x67130d64...6f0D6d067
0 ETH0.000330984.60739945
Update User Pric...153825912022-08-21 7:16:57784 days ago1661066217IN
0x67130d64...6f0D6d067
0 ETH0.000297554.14212904
Update User Pric...153825862022-08-21 7:15:43784 days ago1661066143IN
0x67130d64...6f0D6d067
0 ETH0.000261673.64255923
Update User Pric...153825792022-08-21 7:14:10784 days ago1661066050IN
0x67130d64...6f0D6d067
0 ETH0.000287343.99999886
Update User Pric...153825632022-08-21 7:10:47784 days ago1661065847IN
0x67130d64...6f0D6d067
0 ETH0.000326554.54576245
Update User Pric...153825362022-08-21 7:02:44784 days ago1661065364IN
0x67130d64...6f0D6d067
0 ETH0.000261153.63532199

Latest 7 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
154018332022-08-24 8:21:11781 days ago1661329271
0x67130d64...6f0D6d067
0.00842109 ETH
154017582022-08-24 8:04:48781 days ago1661328288
0x67130d64...6f0D6d067
0.00600002 ETH
154017572022-08-24 8:04:46781 days ago1661328286
0x67130d64...6f0D6d067
0.00842109 ETH
154017302022-08-24 7:58:38781 days ago1661327918
0x67130d64...6f0D6d067
0.00842109 ETH
154017122022-08-24 7:55:29781 days ago1661327729
0x67130d64...6f0D6d067
0.00842109 ETH
154016822022-08-24 7:49:33781 days ago1661327373
0x67130d64...6f0D6d067
0.00842109 ETH
152936052022-08-07 6:42:01798 days ago1659854521  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xB9b100DC...753e9F734
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 1000 runs

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

/**
 * @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": 1000
  },
  "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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.