Transaction Hash:
Block:
22508509 at May-18-2025 07:52:23 AM +UTC
Transaction Fee:
0.000021088389016147 ETH
$0.05
Gas Used:
56,263 Gas / 0.374818069 Gwei
Emitted Events:
337 |
HyakkiToken1155.TransferSingle( operator=[Receiver] 0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0, from=0x00000000...000000000, to=[Sender] 0x95f0486d8419ea8144272a8525fbb5ae37529a4e, id=3, value=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x59f0F9B1...c578e4D46 | |||||
0x95F0486d...e37529a4e |
0.009457704064782927 Eth
Nonce: 14
|
0.00943661567576678 Eth
Nonce: 15
| 0.000021088389016147 | ||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 197.660622689487858377 Eth | 197.660622812377728029 Eth | 0.000000122889869652 |
Execution Trace
0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0.81ec0500( )
-
HyakkiToken1155.mint( to=0x95F0486d8419EA8144272a8525fBB5Ae37529a4e, id=3, amount=1 )
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());}/**