ETH Price: $2,435.39 (-2.21%)

Contract

0x7D82C56998de26d45Ba80408774afCf4758AC6A6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve209189912024-10-08 6:13:3542 mins ago1728368015IN
0x7D82C569...4758AC6A6
0 ETH0.0005790211.78601007
Approve200229822024-06-05 3:37:23125 days ago1717558643IN
0x7D82C569...4758AC6A6
0 ETH0.000180696.67474139
Approve199046282024-05-19 14:38:23141 days ago1716129503IN
0x7D82C569...4758AC6A6
0 ETH0.000204744.14837235
Approve198116582024-05-06 14:32:23154 days ago1715005943IN
0x7D82C569...4758AC6A6
0 ETH0.0006158212.47729472
Approve197220692024-04-24 1:49:23167 days ago1713923363IN
0x7D82C569...4758AC6A6
0 ETH0.0002922710.79614075
Approve194801062024-03-21 2:34:23201 days ago1710988463IN
0x7D82C569...4758AC6A6
0 ETH0.0016185332.75330012
Approve193935072024-03-08 22:54:35213 days ago1709938475IN
0x7D82C569...4758AC6A6
0 ETH0.0027363155.44040882
Approve189456262024-01-06 3:51:59276 days ago1704513119IN
0x7D82C569...4758AC6A6
0 ETH0.0003860414.25988157
Approve189414312024-01-05 13:40:47276 days ago1704462047IN
0x7D82C569...4758AC6A6
0 ETH0.0006708320.9373882
Approve189033032023-12-31 5:12:35282 days ago1703999555IN
0x7D82C569...4758AC6A6
0 ETH0.0002775410.2519289
Approve188597932023-12-25 2:30:35288 days ago1703471435IN
0x7D82C569...4758AC6A6
0 ETH0.000738814.96885375
Approve186539512023-11-26 6:06:23317 days ago1700978783IN
0x7D82C569...4758AC6A6
0 ETH0.0005004718.48693686
Approve183322712023-10-12 5:33:47362 days ago1697088827IN
0x7D82C569...4758AC6A6
0 ETH0.000300516.08868937
Approve183283562023-10-11 16:21:11362 days ago1697041271IN
0x7D82C569...4758AC6A6
0 ETH0.0010633921.54531767
Transfer182764242023-10-04 10:00:59369 days ago1696413659IN
0x7D82C569...4758AC6A6
0 ETH0.000528528.6627648
Transfer182019942023-09-24 0:08:47380 days ago1695514127IN
0x7D82C569...4758AC6A6
0 ETH0.000410116.72325706
Transfer182019912023-09-24 0:08:11380 days ago1695514091IN
0x7D82C569...4758AC6A6
0 ETH0.000410026.72182976
Transfer182019872023-09-24 0:07:23380 days ago1695514043IN
0x7D82C569...4758AC6A6
0 ETH0.00042376.94467117
Approve182016212023-09-23 22:53:47380 days ago1695509627IN
0x7D82C569...4758AC6A6
0 ETH0.000346717.01628954
Transfer181954552023-09-23 2:10:59381 days ago1695435059IN
0x7D82C569...4758AC6A6
0 ETH0.000421677.50168618
Transfer181954342023-09-23 2:06:47381 days ago1695434807IN
0x7D82C569...4758AC6A6
0 ETH0.000458747.52060812
Transfer181954152023-09-23 2:02:47381 days ago1695434567IN
0x7D82C569...4758AC6A6
0 ETH0.000494288.09990932
Approve181904852023-09-22 9:26:11381 days ago1695374771IN
0x7D82C569...4758AC6A6
0 ETH0.000487919.87367941
Approve181790172023-09-20 18:52:47383 days ago1695235967IN
0x7D82C569...4758AC6A6
0 ETH0.0012768625.99063655
Transfer181789912023-09-20 18:47:35383 days ago1695235655IN
0x7D82C569...4758AC6A6
0 ETH0.0013649922.37287079
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
178239252023-08-02 1:06:59433 days ago1690938419  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x85b37C6b...4dC2ADecA
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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.