Transaction Hash:
Block:
19695072 at Apr-20-2024 07:14:59 AM +UTC
Transaction Fee:
0.000453133138182345 ETH
$1.15
Gas Used:
56,211 Gas / 8.061289395 Gwei
Emitted Events:
228 |
HyakkiToken1155.TransferSingle( operator=[Receiver] 0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0, from=0x00000000...000000000, to=[Sender] 0xd9bb2ed5903c08eb14fc99a3f6c67985f6cc7839, id=4, value=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.725943319878017053 Eth | 9.725945961795017053 Eth | 0.000002641917 | |
0x59f0F9B1...c578e4D46 | |||||
0xD9Bb2eD5...5F6cC7839 |
0.073850212648325355 Eth
Nonce: 245
|
0.07339707951014301 Eth
Nonce: 246
| 0.000453133138182345 |
Execution Trace
0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0.81ec0500( )
-
HyakkiToken1155.mint( to=0xD9Bb2eD5903C08Eb14fc99a3F6c67985F6cC7839, id=4, 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());}/**