Transaction Hash:
Block:
14172905 at Feb-09-2022 04:15:28 PM +UTC
Transaction Fee:
0.021689021208024348 ETH
$101.19
Gas Used:
180,996 Gas / 119.831494663 Gwei
Emitted Events:
521 |
NAIA.Transfer( from=0x00000000...000000000, to=[Sender] 0xc9353469c0abc61673a7f239be9c8970fbf453b3, tokenId=308 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x829BD824...93333A830
Miner
| (F2Pool Old) | 1,883.868192134820617237 Eth | 1,883.868391230420617237 Eth | 0.0001990956 | |
0xc9353469...0FbF453b3 |
0.897012551595426207 Eth
Nonce: 1
|
0.775323530387401859 Eth
Nonce: 2
| 0.121689021208024348 | ||
0xf2B51568...988200AAe | 27.7 Eth | 27.8 Eth | 0.1 |
Execution Trace
ETH 0.1
NAIA.mint( _mintAmount=1 )
mint[NAIA (ln:1325)]
totalSupply[NAIA (ln:1327)]
owner[NAIA (ln:1332)]
_safeMint[NAIA (ln:1343)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0// File: @openzeppelin/contracts/utils/Strings.sol// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;