Transaction Hash:
Block:
18838511 at Dec-22-2023 02:48:11 AM +UTC
Transaction Fee:
0.0040717454663046 ETH
$10.16
Gas Used:
156,275 Gas / 26.055002184 Gwei
Emitted Events:
284 |
HyakkiZukan.Transfer( from=0x00000000...000000000, to=[Sender] 0x3428bacd15d15e5c9b8bb2f9e1445f49acc8ad17, tokenId=98 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 4.097547583904284688 Eth | 4.097560804769284688 Eth | 0.000013220865 | ||
0x3428BacD...9aCC8AD17 |
0.102408241649426493 Eth
Nonce: 731
|
0.098336496183121893 Eth
Nonce: 732
| 0.0040717454663046 | ||
0x4832d88a...1053c5413 |
Execution Trace
0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0.e59aee0c( )
-
HyakkiZukan.safeMint( to=0x3428BacD15D15E5C9B8Bb2F9e1445F49aCC8AD17 )
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());}/**