ETH Price: $2,551.59 (-7.67%)

Transaction Decoder

Block:
22038087 at Mar-13-2025 12:56:47 PM +UTC
Transaction Fee:
0.000048708706127544 ETH $0.12
Gas Used:
40,422 Gas / 1.205004852 Gwei

Account State Difference:

  Address   Before After State Difference Code
6.386626481422471624 Eth6.386646692422471624 Eth0.000020211
0x407b5D55...189482637
0.0830081474178963 Eth
Nonce: 570
0.082959438711768756 Eth
Nonce: 571
0.000048708706127544

Execution Trace

GoonzSchoolPhotos.claim( tokenIds=[4531] )
  • CryptoonGoonz.ownerOf( tokenId=4531 ) => ( 0xeF87529Ca9c67a849bD7013837fC42d4DE92ca82 )
  • GoonzPortal.ownerOf( tokenId=4531 ) => ( 0x407b5D55A95c63462d9fdC233e4924A189482637 )
  • CryptoonGoonz.ownerOf( tokenId=4531 ) => ( 0xeF87529Ca9c67a849bD7013837fC42d4DE92ca82 )
  • GoonzPortal.ownerOf( tokenId=4531 ) => ( 0x407b5D55A95c63462d9fdC233e4924A189482637 )
    File 1 of 3: 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 3: 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

    File 3 of 3: GoonzPortal
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.9;
    import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
    import "@openzeppelin/contracts/interfaces/IERC2981.sol";
    import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    import "@openzeppelin/contracts/access/AccessControl.sol";
    contract GoonzPortal is ERC721, IERC721Receiver, Ownable, ReentrancyGuard, IERC2981, AccessControl {
    using Strings for uint256;
    event GoonTransported(uint256 indexed tokenId, uint256 indexed worldId);
    event GoonReturned(uint256 indexed tokenId);
    CryptoonGoonz immutable cryptoonGoonzContract;
    uint256 private _mintCounter = 1;
    address public royaltiesAddress;
    uint256 public royaltiesBasisPoints;
    uint256 private constant ROYALTY_DENOMINATOR = 10_000;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX