ETH Price: $3,102.29 (+5.25%)
Gas: 2 Gwei

Contract

0xDFDb7f72c1F195C5951a234e8DB9806EB0635346
 
Transaction Hash
Method
Block
From
To
Value
Approve198907532024-05-17 16:02:1113 hrs ago1715961731IN
Feisty Doge: NFD Token
0 ETH0.0005685511.51953602
Approve198906582024-05-17 15:42:5913 hrs ago1715960579IN
Feisty Doge: NFD Token
0 ETH0.0002930410.80088606
Approve198906442024-05-17 15:40:1113 hrs ago1715960411IN
Feisty Doge: NFD Token
0 ETH0.0006028612.25927962
Approve198894172024-05-17 11:33:1117 hrs ago1715945591IN
Feisty Doge: NFD Token
0 ETH0.000321046.52999658
Transfer198894042024-05-17 11:30:3517 hrs ago1715945435IN
Feisty Doge: NFD Token
0 ETH0.000541369.62484747
Approve198865822024-05-17 2:01:3527 hrs ago1715911295IN
Feisty Doge: NFD Token
0 ETH0.000105373.88368658
Approve198863512024-05-17 1:15:1127 hrs ago1715908511IN
Feisty Doge: NFD Token
0 ETH0.00015293.094161
Approve198863002024-05-17 1:04:5928 hrs ago1715907899IN
Feisty Doge: NFD Token
0 ETH0.000188433.81321382
Approve198862782024-05-17 1:00:3528 hrs ago1715907635IN
Feisty Doge: NFD Token
0 ETH0.000156593.16881229
Approve198858652024-05-16 23:37:4729 hrs ago1715902667IN
Feisty Doge: NFD Token
0 ETH0.00015523.15684528
Approve198856492024-05-16 22:54:3530 hrs ago1715900075IN
Feisty Doge: NFD Token
0 ETH0.000178373.63074638
Approve198850422024-05-16 20:52:3532 hrs ago1715892755IN
Feisty Doge: NFD Token
0 ETH0.000196013.97149412
Approve198845402024-05-16 19:11:3533 hrs ago1715886695IN
Feisty Doge: NFD Token
0 ETH0.000293355.96690518
Approve198842512024-05-16 18:13:2334 hrs ago1715883203IN
Feisty Doge: NFD Token
0 ETH0.000255015.18571496
Approve198837462024-05-16 16:31:1136 hrs ago1715877071IN
Feisty Doge: NFD Token
0 ETH0.000334846.82400657
Transfer198823702024-05-16 11:54:3541 hrs ago1715860475IN
Feisty Doge: NFD Token
0 ETH0.000193654.94832055
Approve198815542024-05-16 9:10:4743 hrs ago1715850647IN
Feisty Doge: NFD Token
0 ETH0.000120374.43677495
Approve198808502024-05-16 6:48:4746 hrs ago1715842127IN
Feisty Doge: NFD Token
0 ETH0.000202324.11634529
Approve198808282024-05-16 6:44:2346 hrs ago1715841863IN
Feisty Doge: NFD Token
0 ETH0.000184123.74612133
Approve198800332024-05-16 4:04:112 days ago1715832251IN
Feisty Doge: NFD Token
0 ETH0.00022664.6159178
Approve198799982024-05-16 3:56:592 days ago1715831819IN
Feisty Doge: NFD Token
0 ETH0.000233254.75365757
Approve198799262024-05-16 3:42:112 days ago1715830931IN
Feisty Doge: NFD Token
0 ETH0.000238294.84806168
Approve198787222024-05-15 23:39:472 days ago1715816387IN
Feisty Doge: NFD Token
0 ETH0.000171123.46722158
Approve198786772024-05-15 23:30:472 days ago1715815847IN
Feisty Doge: NFD Token
0 ETH0.00023934.84863174
Approve198786642024-05-15 23:27:592 days ago1715815679IN
Feisty Doge: NFD Token
0 ETH0.000174373.5330786
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
130564572021-08-19 15:17:321002 days ago1629386252  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

OVERVIEW

This is a fractionalized NFT, one of the eight Doge pictures sold by Atsuko Sato on Zora in June 2021.

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.