ETH Price: $2,548.35 (+0.69%)

Transaction Decoder

Block:
22464872 at May-12-2025 04:35:23 AM +UTC
Transaction Fee:
0.000033254305940628 ETH $0.08
Gas Used:
33,588 Gas / 0.990065081 Gwei

Emitted Events:

0 GoonzSchoolPhotos.Transfer( from=0x00000000...000000000, to=0x7b0847DE...2aED7B5d0, tokenId=6571 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
9.686234738033214186 Eth9.686234949159824886 Eth0.0000002111266107
0x4c794ba5...6C274B1EC
0.0201627 Eth
Nonce: 0
0.020129445694059372 Eth
Nonce: 1
0.000033254305940628

Execution Trace

GoonzSchoolPhotos.claim( tokenIds=[6571] )
  • CryptoonGoonz.ownerOf( tokenId=6571 ) => ( 0x7b0847DEe5900584D557b8D47dDffbc2aED7B5d0 )
  • CryptoonGoonz.ownerOf( tokenId=6571 ) => ( 0x7b0847DEe5900584D557b8D47dDffbc2aED7B5d0 )
    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