Transaction Hash:
Block:
20102657 at Jun-16-2024 06:47:59 AM +UTC
Transaction Fee:
0.000135048539386019 ETH
$0.49
Gas Used:
49,441 Gas / 2.731509059 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0aAA0709...e53d5c7a3 |
0.009982831512885889 Eth
Nonce: 6
|
0.00984778297349987 Eth
Nonce: 7
| 0.000135048539386019 | ||
0x1f9090aa...8e676c326
Miner
| 2.27775034260794173 Eth | 2.277752253917154515 Eth | 0.000001911309212785 |
Execution Trace
0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0.81ec0500( )
-
HyakkiToken1155.mint( to=0x0aAA07093EcaC0DF69c04F4160Bae65e53d5c7a3, 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());}/**