ETH Price: $2,529.28 (-2.46%)

Transaction Decoder

Block:
21815478 at Feb-10-2025 10:19:47 AM +UTC
Transaction Fee:
0.000020340206413672 ETH $0.05
Gas Used:
22,612 Gas / 0.899531506 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x14fA4911...904cBC6C1
0.035666883718030466 Eth
Nonce: 39
0.035646543511616794 Eth
Nonce: 40
0.000020340206413672
(Titan Builder)
7.4367460065511183 Eth7.43674685501361928 Eth0.00000084846250098

Execution Trace

GoonzSchoolPhotos.transferFrom( from=0x14fA4911a95ffE3F1A5Be93C9e7AC2E904cBC6C1, to=0xC34c47e87C3943280dD8712aBBab59Df2EAb7913, tokenId=4380 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed fromAddress, address indexed toAddress);
constructor(string memory name_, string memory symbol_, address _ogGoonz, address _portalGoonz, string memory baseURI_) {
_name = name_;
_symbol = symbol_;
ogGoonzNFT = IERC721(_ogGoonz);
portalGoonzNFT = IERC721(_portalGoonz);
portalGoonz = _portalGoonz;
baseURI = baseURI_;
}
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX