ETH Price: $2,570.02 (+1.49%)

Transaction Decoder

Block:
21804884 at Feb-08-2025 10:50:11 PM +UTC
Transaction Fee:
0.000049294633036032 ETH $0.13
Gas Used:
33,536 Gas / 1.469901987 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
7.104320866674111508 Eth7.104337634674111508 Eth0.000016768
0x64C0FD75...460F22ADf
0.011168926867671351 Eth
Nonce: 109
0.011119632234635319 Eth
Nonce: 110
0.000049294633036032

Execution Trace

GoonzSchoolPhotos.claim( tokenIds=[2076] )
  • CryptoonGoonz.ownerOf( tokenId=2076 ) => ( 0x64C0FD753C5EC49b607Fb214301fdf0460F22ADf )
  • CryptoonGoonz.ownerOf( tokenId=2076 ) => ( 0x64C0FD753C5EC49b607Fb214301fdf0460F22ADf )
    File 1 of 2: GoonzSchoolPhotos
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
    import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
    import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
    import "@openzeppelin/contracts/utils/Strings.sol";
    import "./MultisigOwnable.sol";
    contract GoonzSchoolPhotos is ERC165, IERC721, IERC721Metadata, MultisigOwnable {
    using Strings for uint256;
    string private _name;
    string private _symbol;
    IERC721 immutable public ogGoonzNFT;
    IERC721 immutable public portalGoonzNFT;
    address public portalGoonz;
    string public baseURI;
    // EIP2309 Events
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: CryptoonGoonz
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    // Amended by HashLips
    /**
    !Disclaimer!
    These contracts have been used to create tutorials,
    and was created for the purpose to teach people
    how to create smart contracts on the blockchain.
    please review this code on your own before using any of
    the following code for production.
    HashLips will not be liable in any way if for the use
    of the code. That being said, the code has been tested
    to the best of the developers' knowledge to work as intended.
    */
    // File: @openzeppelin/contracts/utils/introspection/IERC165.sol
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX