ETH Price: $3,373.60 (-3.23%)

Contract

0x282F1FA0bfB5F87d257c2687a97E6442F9eFDfC1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve212442622024-11-22 15:47:2333 days ago1732290443IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0009011718.32550756
Approve210886342024-10-31 22:32:4755 days ago1730413967IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000240088.86839907
Approve207307392024-09-11 23:45:35105 days ago1726098335IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000058342.15045943
Transfer206941352024-09-06 21:07:23110 days ago1725656843IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0008337314.81650444
Approve206681202024-09-03 6:00:23114 days ago1725343223IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000032141.18477101
Approve200920782024-06-14 19:16:11194 days ago1718392571IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0005092310.31767222
Approve200564152024-06-09 19:40:11199 days ago1717962011IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000426898.68307209
Approve200016712024-06-02 4:12:23207 days ago1717301543IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000290335.8752401
Approve199965332024-06-01 11:00:59207 days ago1717239659IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000218574.44479254
Approve199959372024-06-01 9:00:35208 days ago1717232435IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000239364.84972501
Approve199917662024-05-31 19:01:11208 days ago1717182071IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0005473911.09068723
Approve199502402024-05-25 23:42:11214 days ago1716680531IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000158033.21754559
Approve199054802024-05-19 17:30:23220 days ago1716139823IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000196163.97454559
Approve198808212024-05-16 6:42:47224 days ago1715841767IN
0x282F1FA0...2F9eFDfC1
0 ETH0.00018293.70584309
Approve198737702024-05-15 7:05:11225 days ago1715756711IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000311096.3
Transfer198390592024-05-10 10:32:35229 days ago1715337155IN
0x282F1FA0...2F9eFDfC1
0 ETH0.000287695.11808234
Approve196358632024-04-12 0:10:47258 days ago1712880647IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0002985811.02944896
Approve196332662024-04-11 15:27:23258 days ago1712849243IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0011165122.72665478
Transfer196040422024-04-07 13:13:35262 days ago1712495615IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0009576717.02257819
Approve195970002024-04-06 13:31:35263 days ago1712410295IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0009362918.97017656
Approve195466172024-03-30 11:57:47270 days ago1711799867IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0010513221.27490628
Approve195218422024-03-26 23:27:23274 days ago1711495643IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0014765829.88074063
Approve194798562024-03-21 1:44:11280 days ago1710985451IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0015781931.97579372
Approve194442922024-03-16 1:46:35285 days ago1710553595IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0022515245.77396836
Approve194045832024-03-10 12:06:35290 days ago1710072395IN
0x282F1FA0...2F9eFDfC1
0 ETH0.0036337473.87468113
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
174272482023-06-07 8:15:23568 days ago1686125723  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.