Transaction Hash:
Block:
18359330 at Oct-16-2023 12:23:47 AM +UTC
Transaction Fee:
0.00047558903114125 ETH
$1.20
Gas Used:
97,325 Gas / 4.88660705 Gwei
Emitted Events:
247 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x3547d90b5dbd6093c813a8c846a66a75c4348c8a, tokenId=380 )
|
248 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x3547d90b5dbd6093c813a8c846a66a75c4348c8a, tokenId=381 )
|
249 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x3547d90b5dbd6093c813a8c846a66a75c4348c8a, tokenId=382 )
|
250 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x3547d90b5dbd6093c813a8c846a66a75c4348c8a, tokenId=383 )
|
251 |
VitalikPunks.Transfer( from=0x00000000...000000000, to=[Sender] 0x3547d90b5dbd6093c813a8c846a66a75c4348c8a, tokenId=384 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3547D90B...5C4348C8A |
0.023508034209954907 Eth
Nonce: 14
|
0.023032445178813657 Eth
Nonce: 15
| 0.00047558903114125 | ||
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 72.162820171441829579 Eth | 72.162829903941829579 Eth | 0.0000097325 | |
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 {