Transaction Hash:
Block:
22097021 at Mar-21-2025 06:24:35 PM +UTC
Transaction Fee:
0.000037739682098016 ETH
$0.10
Gas Used:
40,422 Gas / 0.933642128 Gwei
Emitted Events:
669 |
GoonzSchoolPhotos.Transfer( from=0x00000000...000000000, to=[Sender] 0x7e524b47f79ce997ad083fd76b0033ce5bcf9165, tokenId=1904 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 51.695439290138151305 Eth | 51.695459501138151305 Eth | 0.000020211 | |
0x7E524B47...E5Bcf9165 |
0.273878433908840044 Eth
Nonce: 1699
|
0.273840694226742028 Eth
Nonce: 1700
| 0.000037739682098016 |
Execution Trace
GoonzSchoolPhotos.claim( tokenIds=[1904] )

-
CryptoonGoonz.ownerOf( tokenId=1904 ) => ( 0xeF87529Ca9c67a849bD7013837fC42d4DE92ca82 )
-
GoonzPortal.ownerOf( tokenId=1904 ) => ( 0x7E524B47f79Ce997aD083fd76b0033CE5Bcf9165 )
-
CryptoonGoonz.ownerOf( tokenId=1904 ) => ( 0xeF87529Ca9c67a849bD7013837fC42d4DE92ca82 )
-
GoonzPortal.ownerOf( tokenId=1904 ) => ( 0x7E524B47f79Ce997aD083fd76b0033CE5Bcf9165 )
File 1 of 3: GoonzSchoolPhotos
File 2 of 3: CryptoonGoonz
File 3 of 3: GoonzPortal
12345678910111213141516// SPDX-License-Identifier: MITpragma 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
File 2 of 3: CryptoonGoonz
12345678910111213141516// SPDX-License-Identifier: MIT// Amended by HashLips/**!Disclaimer!These contracts have been used to create tutorials,and was created for the purpose to teach peoplehow to create smart contracts on the blockchain.please review this code on your own before using any ofthe following code for production.HashLips will not be liable in any way if for the useof the code. That being said, the code has been testedto the best of the developers' knowledge to work as intended.*/// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
File 3 of 3: GoonzPortal
12345678910111213141516// SPDX-License-Identifier: MITpragma 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;