Transaction Hash:
Block:
22246973 at Apr-11-2025 04:43:59 PM +UTC
Transaction Fee:
0.000092815378451968 ETH
$0.23
Gas Used:
33,536 Gas / 2.767634138 Gwei
Emitted Events:
579 |
GoonzSchoolPhotos.Transfer( from=0x00000000...000000000, to=[Sender] 0x7a85a324505d89acb50876aef0aab5abb9838973, tokenId=4655 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.363358784191825514 Eth | 8.363391314111825514 Eth | 0.00003252992 | |
0x7A85A324...bb9838973 |
0.000460216436864457 Eth
Nonce: 134
|
0.000367401058412489 Eth
Nonce: 135
| 0.000092815378451968 |
Execution Trace
File 1 of 2: GoonzSchoolPhotos
File 2 of 2: CryptoonGoonz
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 2: 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