Transaction Hash:
Block:
18359404 at Oct-16-2023 12:38:47 AM +UTC
Transaction Fee:
0.00082034124605585 ETH
$2.57
Gas Used:
97,325 Gas / 8.428885138 Gwei
Emitted Events:
76 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x2ab73eb51f1f6832083bbf79b34a79c90ffa2aeb, tokenId=871 )
|
77 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x2ab73eb51f1f6832083bbf79b34a79c90ffa2aeb, tokenId=872 )
|
78 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x2ab73eb51f1f6832083bbf79b34a79c90ffa2aeb, tokenId=873 )
|
79 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x2ab73eb51f1f6832083bbf79b34a79c90ffa2aeb, tokenId=874 )
|
80 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x2ab73eb51f1f6832083bbf79b34a79c90ffa2aeb, tokenId=875 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2Ab73EB5...90FFA2AEB |
0.249351899818248915 Eth
Nonce: 3308
|
0.248531558572193065 Eth
Nonce: 3309
| 0.00082034124605585 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 10.333700320061973775 Eth | 10.333992295061973775 Eth | 0.000291975 | |
0xB117Fa20...bDE7388A5 |
Execution Trace
VitalikPunks.mint( _mintAmount=5 )
mint[VitalikPunks (ln:1392)]
totalSupply[VitalikPunks (ln:1394)]
totalSupply[VitalikPunks (ln:1398)]
_safeMint[VitalikPunks (ln:1402)]
_msgSender[VitalikPunks (ln:1402)]
totalSupply[VitalikPunks (ln:1404)]
updateParameters[VitalikPunks (ln:1405)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// File: @openzeppelin/contracts/security/ReentrancyGuard.sol// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)pragma solidity ^0.8.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {