Transaction Hash:
Block:
18838756 at Dec-22-2023 03:37:35 AM +UTC
Transaction Fee:
0.00404723826627263 ETH
$10.93
Gas Used:
156,263 Gas / 25.90017001 Gwei
Emitted Events:
876 |
HyakkiZukan.Transfer( from=0x00000000...000000000, to=[Sender] 0x21116c1ee3d766be50377c190056b2419946fc3e, tokenId=99 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x21116c1e...19946Fc3e |
0.029740922582996697 Eth
Nonce: 405
|
0.025693684316724067 Eth
Nonce: 406
| 0.00404723826627263 | ||
0x4832d88a...1053c5413 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 5.516698121438742484 Eth | 5.516708135737644087 Eth | 0.000010014298901603 |
Execution Trace
0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0.e59aee0c( )
-
HyakkiZukan.safeMint( to=0x21116c1eE3D766be50377c190056b2419946Fc3e )
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());}/**