ETH Price: $3,399.50 (-0.64%)

Contract

0xDFDb7f72c1F195C5951a234e8DB9806EB0635346
 
Transaction Hash
Method
Block
From
To
Approve212764222024-11-27 3:32:1149 mins ago1732678331IN
Feisty Doge: NFD Token
0 ETH0.000239878.84120778
Approve212762972024-11-27 3:07:111 hr ago1732676831IN
Feisty Doge: NFD Token
0 ETH0.0005044610.28354061
Approve212762682024-11-27 3:01:231 hr ago1732676483IN
Feisty Doge: NFD Token
0 ETH0.000395768.0617454
Transfer212761312024-11-27 2:33:591 hr ago1732674839IN
Feisty Doge: NFD Token
0 ETH0.000485218.62833301
Approve212753912024-11-27 0:04:354 hrs ago1732665875IN
Feisty Doge: NFD Token
0 ETH0.0006421513.07097716
Approve212748432024-11-26 22:14:356 hrs ago1732659275IN
Feisty Doge: NFD Token
0 ETH0.0005037110.24315837
Approve212747542024-11-26 21:56:476 hrs ago1732658207IN
Feisty Doge: NFD Token
0 ETH0.000414238.38252675
Transfer212744532024-11-26 20:56:117 hrs ago1732654571IN
Feisty Doge: NFD Token
0 ETH0.0007046112.52719748
Approve212734642024-11-26 17:37:4710 hrs ago1732642667IN
Feisty Doge: NFD Token
0 ETH0.000696514.1738111
Approve212734622024-11-26 17:37:2310 hrs ago1732642643IN
Feisty Doge: NFD Token
0 ETH0.0007011714.26898016
Approve212730452024-11-26 16:13:4712 hrs ago1732637627IN
Feisty Doge: NFD Token
0 ETH0.0008172716.55874969
Approve212730002024-11-26 16:04:4712 hrs ago1732637087IN
Feisty Doge: NFD Token
0 ETH0.0009247218.71311897
Approve212729702024-11-26 15:58:4712 hrs ago1732636727IN
Feisty Doge: NFD Token
0 ETH0.0008310916.83875736
Approve212727882024-11-26 15:22:2312 hrs ago1732634543IN
Feisty Doge: NFD Token
0 ETH0.0008192316.65916876
Approve212727692024-11-26 15:18:3513 hrs ago1732634315IN
Feisty Doge: NFD Token
0 ETH0.0009224618.68999268
Approve212725692024-11-26 14:38:2313 hrs ago1732631903IN
Feisty Doge: NFD Token
0 ETH0.0009386119.10086397
Approve212723012024-11-26 13:44:3514 hrs ago1732628675IN
Feisty Doge: NFD Token
0 ETH0.0009397519.01726151
Approve212718302024-11-26 12:09:4716 hrs ago1732622987IN
Feisty Doge: NFD Token
0 ETH0.0004351816.0394809
Approve212718282024-11-26 12:09:2316 hrs ago1732622963IN
Feisty Doge: NFD Token
0 ETH0.0004724717.45246108
Approve212710512024-11-26 9:32:5918 hrs ago1732613579IN
Feisty Doge: NFD Token
0 ETH0.000372247.57158222
Approve212709892024-11-26 9:20:3519 hrs ago1732612835IN
Feisty Doge: NFD Token
0 ETH0.000430828.72889474
Approve212707682024-11-26 8:36:1119 hrs ago1732610171IN
Feisty Doge: NFD Token
0 ETH0.0009196418.63748163
Approve212689822024-11-26 2:36:4725 hrs ago1732588607IN
Feisty Doge: NFD Token
0 ETH0.000399128.12012018
Approve212687652024-11-26 1:53:2326 hrs ago1732586003IN
Feisty Doge: NFD Token
0 ETH0.000364677.41743545
Approve212686802024-11-26 1:36:2326 hrs ago1732584983IN
Feisty Doge: NFD Token
0 ETH0.000464879.45557076
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
130564572021-08-19 15:17:321195 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.