Transaction Hash:
Block:
18791544 at Dec-15-2023 12:33:47 PM +UTC
Transaction Fee:
0.002776109177750166 ETH
$7.68
Gas Used:
56,211 Gas / 49.387293906 Gwei
Emitted Events:
219 |
HyakkiToken1155.TransferSingle( operator=[Receiver] 0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0, from=0x00000000...000000000, to=[Sender] 0x6ae1ad3b3cc8a1f873598977fa26b2c881d7b6f8, id=3, value=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x59f0F9B1...c578e4D46 | |||||
0x6ae1ad3b...881D7b6F8 |
0.017699116413788197 Eth
Nonce: 228
|
0.014923007236038031 Eth
Nonce: 229
| 0.002776109177750166 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.576900774179663113 Eth | 15.576906395279663113 Eth | 0.0000056211 |
Execution Trace
0x337e7903a1e23ff3ee7f3eb739b03cbd92ae67e0.81ec0500( )
-
HyakkiToken1155.mint( to=0x6ae1ad3b3Cc8a1F873598977fa26b2c881D7b6F8, 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());}/**