Transaction Hash:
Block:
19161840 at Feb-05-2024 11:42:11 AM +UTC
Transaction Fee:
0.000787273388451352 ETH
$2.47
Gas Used:
50,536 Gas / 15.578466607 Gwei
Emitted Events:
200 |
Polyhedra2024.Approval( owner=[Sender] 0x41f1f1b743af3fd05ca0b13b24a0cf8c4a36bed6, approved=0xCE0e4e4D...F3D086D0A, tokenId=101 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x41f1f1b7...c4a36Bed6 |
0.004088126793260091 Eth
Nonce: 85
|
0.003300853404808739 Eth
Nonce: 86
| 0.000787273388451352 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 24.792487072778433351 Eth | 24.792492126378433351 Eth | 0.0000050536 | |
0xb7545014...29d37b1c9 |
Execution Trace
Polyhedra2024.approve( to=0xCE0e4e4D2Dc0033cE2dbc35855251F4F3D086D0A, tokenId=101 )
approve[ERC721A (ln:510)]
ownerOf[ERC721A (ln:511)]
_packedOwnershipOf[ERC721A (ln:411)]
_startTokenId[ERC721A (ln:440)]
OwnerQueryForNonexistentToken[ERC721A (ln:461)]
_msgSenderERC721A[ERC721A (ln:512)]
isApprovedForAll[ERC721A (ln:513)]
_msgSenderERC721A[ERC721A (ln:513)]
ApprovalCallerNotOwnerNorApproved[ERC721A (ln:514)]
Approval[ERC721A (ln:517)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor() {_transferOwnership(_msgSender());}/**