Transaction Hash:
Block:
17424751 at Jun-06-2023 11:47:23 PM +UTC
Transaction Fee:
0.002342104220257292 ETH
$4.39
Gas Used:
130,412 Gas / 17.959269241 Gwei
Emitted Events:
307 |
JokerClub.Transfer( from=0x00000000...000000000, to=[Sender] 0x99551c75b0c3370694dcf8d83b608d3b05966809, tokenId=2513 )
|
308 |
JokerClub.Transfer( from=0x00000000...000000000, to=[Sender] 0x99551c75b0c3370694dcf8d83b608d3b05966809, tokenId=2514 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 1.529804395529960635 Eth | 1.529817436729960635 Eth | 0.0000130412 | |
0x99551c75...b05966809 |
0.21798153657865905 Eth
Nonce: 19
|
0.055639432358401758 Eth
Nonce: 20
| 0.162342104220257292 | ||
0xa973A9bA...62fd0Af72 | 1.44 Eth | 1.6 Eth | 0.16 |
Execution Trace
ETH 0.16
JokerClub.mint( )
mint[JokerClub (ln:2201)]
_totalMinted[JokerClub (ln:2205)]
_mint[JokerClub (ln:2208)]
current[JokerClub (ln:2211)]
push[JokerClub (ln:2212)]
increment[JokerClub (ln:2213)]
1234567891011121314151617181920212223242526// File: @openzeppelin/contracts/utils/Strings.sol// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @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;