Transaction Hash:
Block:
16978587 at Apr-04-2023 10:53:59 PM +UTC
Transaction Fee:
0.00323999255352266 ETH
$9.25
Gas Used:
114,467 Gas / 28.30503598 Gwei
Emitted Events:
205 |
ERC721SeaDrop.Transfer( from=0x00000000...000000000, to=[Sender] 0x3dbd1f687b0da8144de91d925d09fe46d6b49f0c, tokenId=28101 )
|
206 |
SeaDrop.SeaDropMint( nftContract=ERC721SeaDrop, minter=[Sender] 0x3dbd1f687b0da8144de91d925d09fe46d6b49f0c, feeRecipient=0x0000a26b...000fAa719, payer=[Sender] 0x3dbd1f687b0da8144de91d925d09fe46d6b49f0c, quantityMinted=1, unitMintPrice=0, feeBps=0, dropStageIndex=2 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3dbD1f68...6d6b49f0C |
0.01024899582498203 Eth
Nonce: 445
|
0.00700900327145937 Eth
Nonce: 446
| 0.00323999255352266 | ||
0x4038c8BC...79AAEaE5E
Miner
| 5.136551737304505186 Eth | 5.136561851608625186 Eth | 0.00001011430412 | ||
0xbe937132...2BFEaa826 |
Execution Trace
SeaDrop.mintAllowList( )
-
ERC721SeaDrop.getMintStats( minter=0x3dbD1f687b0dA8144dE91D925d09fe46d6b49f0C ) => ( minterNumMinted=0, currentTotalSupply=28100, maxSupply=180000 )
-
ERC721SeaDrop.mintSeaDrop( minter=0x3dbD1f687b0dA8144dE91D925d09fe46d6b49f0C, quantity=1 )
File 1 of 2: SeaDrop
File 2 of 2: ERC721SeaDrop
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.8.17;import { ISeaDrop } from "./interfaces/ISeaDrop.sol";import {INonFungibleSeaDropToken} from "./interfaces/INonFungibleSeaDropToken.sol";import {AllowListData,MintParams,PublicDrop,TokenGatedDropStage,TokenGatedMintParams,SignedMintValidationParams} from "./lib/SeaDropStructs.sol";import { SafeTransferLib } from "solmate/utils/SafeTransferLib.sol";import { ReentrancyGuard } from "solmate/utils/ReentrancyGuard.sol";
File 2 of 2: ERC721SeaDrop
12345678910111213141516// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.2// Creator: Chiru Labspragma solidity ^0.8.4;import './IERC721A.sol';/*** @dev Interface of ERC721 token receiver.*/interface ERC721A__IERC721Receiver {function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);}