ETH Price: $3,793.84 (+6.52%)

Transaction Decoder

Block:
22125590 at Mar-25-2025 06:05:11 PM +UTC
Transaction Fee:
0.000085333233395608 ETH $0.32
Gas Used:
74,744 Gas / 1.141673357 Gwei

Emitted Events:

211 ERC721DropProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x000000000000000000000000cfe7d6d64272ca3c5d6fd6cdb4e5cc01c8c7d30e, 0x0000000000000000000000000000000000000000000000000000000000000000, 0x0000000000000000000000000000000000000000000000000000000000013c79 )
212 ERC721DropProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000cfe7d6d64272ca3c5d6fd6cdb4e5cc01c8c7d30e, 0x000000000000000000000000192b45c25e80699593f71749a1e7a898fb2675a1, 0x0000000000000000000000000000000000000000000000000000000000013c79 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
26.647227671961904423 Eth26.647265043961904423 Eth0.000037372
0x9D906696...f554c59EF
0xcFE7D6d6...1c8C7d30e
0.00100204677193773 Eth
Nonce: 78
0.000916713538542122 Eth
Nonce: 79
0.000085333233395608

Execution Trace

ERC721DropProxy.b88d4fde( )
  • ERC721Drop.safeTransferFrom( from=0xcFE7D6d64272Ca3c5D6Fd6CdB4e5cc01c8C7d30e, to=0x192B45C25e80699593F71749a1e7A898Fb2675a1, tokenId=81017, _data=0x )
    File 1 of 2: ERC721DropProxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.10;
    // OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol)
    // OpenZeppelin Contracts (last updated v4.5.0) (proxy/Proxy.sol)
    /**
    * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
    * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
    * be specified by overriding the virtual {_implementation} function.
    *
    * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
    * different contract through the {_delegate} function.
    *
    * The success and return data of the delegated call will be returned back to the caller of the proxy.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: ERC721Drop
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    // Creator: Chiru Labs
    pragma solidity ^0.8.4;
    import "./IERC721AUpgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
    /**
    * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
    * the Metadata extension. Built to optimize for lower gas during batch mints.
    *
    * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
    *
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX