Transaction Hash:
Block:
19694971 at Apr-20-2024 06:54:47 AM +UTC
Transaction Fee:
0.000532333693923613 ETH
$1.34
Gas Used:
56,263 Gas / 9.461523451 Gwei
Emitted Events:
174 |
HyakkiToken1155.TransferSingle( operator=[Receiver] 0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0, from=0x00000000...000000000, to=[Sender] 0x345c02bc0ae6d1299d4e6909e5a34aa272b20a1a, id=3, value=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x345c02bc...272b20A1A |
0.01379608847247479 Eth
Nonce: 12
|
0.013263754778551177 Eth
Nonce: 13
| 0.000532333693923613 | ||
0x59f0F9B1...c578e4D46 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 11.839155327522044178 Eth | 11.839183459022044178 Eth | 0.0000281315 |
Execution Trace
0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0.81ec0500( )
-
HyakkiToken1155.mint( to=0x345c02bc0ae6D1299d4e6909e5a34AA272b20A1A, 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());}/**