Transaction Hash:
Block:
15394354 at Aug-23-2022 03:57:38 AM +UTC
Transaction Fee:
0.000316052872484314 ETH
$0.64
Gas Used:
35,573 Gas / 8.884628018 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1aD91ee0...dA6B45836
Miner
| (Hiveon Pool) | 17,607.83222297420257209 Eth | 17,607.83225854720257209 Eth | 0.000035573 | |
0x8B3F8c4E...18077d977 |
0.008904047787972352 Eth
Nonce: 346
|
0.008587994915488038 Eth
Nonce: 347
| 0.000316052872484314 |
Execution Trace
GenerativeAvatars.mint( _amount=1 )
mint[GenerativeAvatars (ln:1334)]
_msgSender[GenerativeAvatars (ln:1335)]
totalSupply[GenerativeAvatars (ln:1337)]
totalSupply[GenerativeAvatars (ln:1342)]
_safeMint[GenerativeAvatars (ln:1350)]
1234567891011121314151617181920212223242526// File @openzeppelin/contracts/utils/Context.sol@v4.5.0// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.4;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}