ETH Price: $2,667.69 (+0.94%)

Contract

0x25d4BFeeaE3360E68C466c65A5E8f8D5CEBc5093
 

Overview

ETH Balance

0.325581408890698011 ETH

Eth Value

$868.55 (@ $2,667.69/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve202242212024-07-03 6:33:4751 days ago1719988427IN
0x25d4BFee...5CEBc5093
0 ETH0.000111072.24772452
Approve201498092024-06-22 21:04:5961 days ago1719090299IN
0x25d4BFee...5CEBc5093
0 ETH0.000094891.92034295
Approve201458762024-06-22 7:52:5962 days ago1719042779IN
0x25d4BFee...5CEBc5093
0 ETH0.000111652.2595751
Transfer201452172024-06-22 5:40:1162 days ago1719034811IN
0x25d4BFee...5CEBc5093
0 ETH0.000114243.28936474
Transfer201452112024-06-22 5:38:5962 days ago1719034739IN
0x25d4BFee...5CEBc5093
0 ETH0.000112833.2485366
Transfer201452092024-06-22 5:38:3562 days ago1719034715IN
0x25d4BFee...5CEBc5093
0 ETH0.000111013.19509501
Transfer201452052024-06-22 5:37:3562 days ago1719034655IN
0x25d4BFee...5CEBc5093
0 ETH0.00011083.19033195
Transfer201451952024-06-22 5:35:3562 days ago1719034535IN
0x25d4BFee...5CEBc5093
0 ETH0.00016063.09845508
Approve199813182024-05-30 7:57:3585 days ago1717055855IN
0x25d4BFee...5CEBc5093
0 ETH0.0007804415.79331817
Approve197437522024-04-27 2:39:35118 days ago1714185575IN
0x25d4BFee...5CEBc5093
0 ETH0.000291775.93619284
Transfer197420862024-04-26 21:04:59118 days ago1714165499IN
0x25d4BFee...5CEBc5093
0 ETH0.0005874411.33071124
Approve194937672024-03-23 0:35:35153 days ago1711154135IN
0x25d4BFee...5CEBc5093
0 ETH0.000453316.70737871
Approve191173812024-01-30 5:57:47206 days ago1706594267IN
0x25d4BFee...5CEBc5093
0 ETH0.0005322610.77109875
Approve191048652024-01-28 11:53:47207 days ago1706442827IN
0x25d4BFee...5CEBc5093
0 ETH0.0003889614.33612281
Approve188253632023-12-20 6:33:47247 days ago1703054027IN
0x25d4BFee...5CEBc5093
0 ETH0.0011793343.46643171
Approve188253622023-12-20 6:33:35247 days ago1703054015IN
0x25d4BFee...5CEBc5093
0 ETH0.0012194944.94678291
Approve183110642023-10-09 6:15:11319 days ago1696832111IN
0x25d4BFee...5CEBc5093
0 ETH0.000134384.96403864
Approve183110622023-10-09 6:14:47319 days ago1696832087IN
0x25d4BFee...5CEBc5093
0 ETH0.000137365.06268957
Approve183110592023-10-09 6:14:11319 days ago1696832051IN
0x25d4BFee...5CEBc5093
0 ETH0.000140655.18424069
Approve183102542023-10-09 3:32:47319 days ago1696822367IN
0x25d4BFee...5CEBc5093
0 ETH0.000308966.25386422
Approve182704282023-10-03 13:52:11324 days ago1696341131IN
0x25d4BFee...5CEBc5093
0 ETH0.0004545115.43014662
Approve182704282023-10-03 13:52:11324 days ago1696341131IN
0x25d4BFee...5CEBc5093
0 ETH0.0007615715.43014662
Approve182614682023-10-02 7:51:35326 days ago1696233095IN
0x25d4BFee...5CEBc5093
0 ETH0.0002738810.0945877
Approve182569342023-10-01 16:39:47326 days ago1696178387IN
0x25d4BFee...5CEBc5093
0 ETH0.000226278.33976791
Approve182224602023-09-26 20:54:35331 days ago1695761675IN
0x25d4BFee...5CEBc5093
0 ETH0.000689114.01991665
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
157342912022-10-12 20:03:35680 days ago1665605015
0x25d4BFee...5CEBc5093
0.00003239 ETH
156316562022-09-28 11:51:59694 days ago1664365919
0x25d4BFee...5CEBc5093
9.6743862 ETH
135264912021-10-31 18:50:391026 days ago1635706239  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.