Transaction Hash:
Block:
13910682 at Dec-31-2021 03:20:03 AM +UTC
Transaction Fee:
0.02021551458342012 ETH
$37.85
Gas Used:
166,014 Gas / 121.76993858 Gwei
Emitted Events:
101 |
FranksNFT.Transfer( from=0x00000000...000000000, to=[Sender] 0x1d7c08adc571ac4d1d11578c0b154215b68f0cb3, tokenId=3061 )
|
102 |
FranksNFT.Transfer( from=0x00000000...000000000, to=[Sender] 0x1d7c08adc571ac4d1d11578c0b154215b68f0cb3, tokenId=3062 )
|
103 |
FranksNFT.Transfer( from=0x00000000...000000000, to=[Sender] 0x1d7c08adc571ac4d1d11578c0b154215b68f0cb3, tokenId=3063 )
|
104 |
FranksNFT.Transfer( from=0x00000000...000000000, to=[Sender] 0x1d7c08adc571ac4d1d11578c0b154215b68f0cb3, tokenId=3064 )
|
105 |
FranksNFT.Transfer( from=0x00000000...000000000, to=[Sender] 0x1d7c08adc571ac4d1d11578c0b154215b68f0cb3, tokenId=3065 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x00192Fb1...d1BF599E8
Miner
| (2Miners: PPLNS) | 4,607.130611386882862534 Eth | 4,607.131026421882862534 Eth | 0.000415035 | |
0x1D7C08Ad...5B68f0cb3 |
0.144932084966202092 Eth
Nonce: 262
|
0.124716570382781972 Eth
Nonce: 263
| 0.02021551458342012 | ||
0x25fd22f3...e9305E41d |
Execution Trace
FranksNFT.mint( numberOfTokens=5 )
mint[FranksNFT (ln:1635)]
_safeMint[FranksNFT (ln:1649)]
nextTokenId[FranksNFT (ln:1649)]
increment[FranksNFT (ln:1708)]
current[FranksNFT (ln:1709)]
1234567891011121314151617181920212223242526// File: @openzeppelin/contracts/utils/math/SafeMath.sol// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)pragma solidity ^0.8.0;// CAUTION// This version of SafeMath should only be used with Solidity 0.8 or later,// because it relies on the compiler's built in overflow checks./*** @dev Wrappers over Solidity's arithmetic operations.** NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler* now has built in overflow checking.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {uint256 c = a + b;