ETH Price: $3,860.59 (+5.66%)

Contract

0xb18aA65aC5550A8D121e2F06d6B7788d2719c249
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve208513932024-09-28 20:02:2374 days ago1727553743IN
0xb18aA65a...d2719c249
0 ETH0.000286810.59414632
Transfer198538532024-05-12 12:10:47213 days ago1715515847IN
0xb18aA65a...d2719c249
0 ETH0.00020073.5698545
Approve189662192024-01-09 1:42:23338 days ago1704764543IN
0xb18aA65a...d2719c249
0 ETH0.0012347825.01803081
Approve184419612023-10-27 13:52:35411 days ago1698414755IN
0xb18aA65a...d2719c249
0 ETH0.0006323723.35897691
Approve183018932023-10-07 23:28:47431 days ago1696721327IN
0xb18aA65a...d2719c249
0 ETH0.000147625.45287151
Approve180876982023-09-07 23:01:59461 days ago1694127719IN
0xb18aA65a...d2719c249
0 ETH0.0006035922.24646573
Approve176366982023-07-06 18:52:23524 days ago1688669543IN
0xb18aA65a...d2719c249
0 ETH0.0041659484.88075106
Transfer174620292023-06-12 5:53:47548 days ago1686549227IN
0xb18aA65a...d2719c249
0 ETH0.0006401416.45320099
Approve173804852023-05-31 17:59:47560 days ago1685555987IN
0xb18aA65a...d2719c249
0 ETH0.0014622654.01396078
Approve173804822023-05-31 17:59:11560 days ago1685555951IN
0xb18aA65a...d2719c249
0 ETH0.0014927255.01730328
Approve172010452023-05-06 10:46:23585 days ago1683369983IN
0xb18aA65a...d2719c249
0 ETH0.0048795199.41958458
Approve172006112023-05-06 9:17:47585 days ago1683364667IN
0xb18aA65a...d2719c249
0 ETH0.00537671109.41628631
Approve171966932023-05-05 20:04:59586 days ago1683317099IN
0xb18aA65a...d2719c249
0 ETH0.00787486160.25371998
Approve171584652023-04-30 11:08:11591 days ago1682852891IN
0xb18aA65a...d2719c249
0 ETH0.0015546131.67503968
Approve171097512023-04-23 14:57:47598 days ago1682261867IN
0xb18aA65a...d2719c249
0 ETH0.0014926555.13650194
Approve170984692023-04-22 0:59:47600 days ago1682125187IN
0xb18aA65a...d2719c249
0 ETH0.0008045629.71961497
Approve170658842023-04-17 10:23:59604 days ago1681727039IN
0xb18aA65a...d2719c249
0 ETH0.0015973132.36321607
Approve170658722023-04-17 10:21:23604 days ago1681726883IN
0xb18aA65a...d2719c249
0 ETH0.0014896630.18211454
Approve170309992023-04-12 9:20:23609 days ago1681291223IN
0xb18aA65a...d2719c249
0 ETH0.0010213620.8101582
Approve170216952023-04-11 1:44:23611 days ago1681177463IN
0xb18aA65a...d2719c249
0 ETH0.0006028322.2679654
Approve169837222023-04-05 16:20:59616 days ago1680711659IN
0xb18aA65a...d2719c249
0 ETH0.0022892246.32548381
Approve169734712023-04-04 5:26:35617 days ago1680585995IN
0xb18aA65a...d2719c249
0 ETH0.0009914820.20145489
Approve169604012023-04-02 9:04:47619 days ago1680426287IN
0xb18aA65a...d2719c249
0 ETH0.0004647417.12917045
Approve169234842023-03-28 4:31:35624 days ago1679977895IN
0xb18aA65a...d2719c249
0 ETH0.0006496923.9986687
Approve169118182023-03-26 13:11:59626 days ago1679836319IN
0xb18aA65a...d2719c249
0 ETH0.0004846717.90303943
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
167435492023-03-02 21:30:47650 days ago1677792647  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.