Transaction Hash:
Block:
22212811 at Apr-06-2025 10:20:47 PM +UTC
Transaction Fee:
0.00101189316354041 ETH
$2.72
Gas Used:
121,510 Gas / 8.327653391 Gwei
Emitted Events:
137 |
ERC721SeaDropCloneable.Transfer( from=0x00000000...000000000, to=[Sender] 0x372956d2789fdd6f8edbbec45f16c1b57b53a32a, tokenId=140 )
|
138 |
SeaDrop.SeaDropMint( nftContract=ERC721SeaDropCloneable, minter=[Sender] 0x372956d2789fdd6f8edbbec45f16c1b57b53a32a, feeRecipient=PayableProxy, payer=[Sender] 0x372956d2789fdd6f8edbbec45f16c1b57b53a32a, quantityMinted=1, unitMintPrice=3300000000000000, feeBps=1000, dropStageIndex=0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0000a26b...000fAa719 | 114.194118514178283382 Eth | 114.194448514178283382 Eth | 0.00033 | ||
0x372956d2...57b53a32a |
0.048825548369987333 Eth
Nonce: 8
|
0.044513655206446923 Eth
Nonce: 9
| 0.00431189316354041 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 10.682388949429440161 Eth | 10.682592612617969001 Eth | 0.00020366318852884 | |
0x8487c35C...700d04650 | |||||
0xb2807728...142662Cff | 0.38656245158271279 Eth | 0.38953245158271279 Eth | 0.00297 |
Execution Trace
ETH 0.0033
SeaDrop.mintPublic( nftContract=0x8487c35C7137c353460A9771884b0a4700d04650, feeRecipient=0x0000a26b00c1F0DF003000390027140000fAa719, minterIfNotPayer=0x372956d2789FdD6F8EdBBeC45F16C1B57b53a32a, quantity=1 )
ERC721SeaDropCloneable.getMintStats( minter=0x372956d2789FdD6F8EdBBeC45F16C1B57b53a32a ) => ( minterNumMinted=0, currentTotalSupply=139, maxSupply=240 )
-
ERC721SeaDropCloneable.getMintStats( minter=0x372956d2789FdD6F8EdBBeC45F16C1B57b53a32a ) => ( minterNumMinted=0, currentTotalSupply=139, maxSupply=240 )
-
ERC721SeaDropCloneable.mintSeaDrop( minter=0x372956d2789FdD6F8EdBBeC45F16C1B57b53a32a, quantity=1 )
-
ERC721SeaDropCloneable.mintSeaDrop( minter=0x372956d2789FdD6F8EdBBeC45F16C1B57b53a32a, quantity=1 )
-
- ETH 0.00033
PayableProxy.CALL( )
- ETH 0.00297
0xb28077284a81b23bf4709ac326accb8142662cff.CALL( )
File 1 of 4: SeaDrop
File 2 of 4: ERC721SeaDropCloneable
File 3 of 4: ERC721SeaDropCloneable
File 4 of 4: PayableProxy
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 4: ERC721SeaDropCloneable
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.8.17;import {ERC721ContractMetadataCloneable,ISeaDropTokenContractMetadata} from "./ERC721ContractMetadataCloneable.sol";import {INonFungibleSeaDropToken} from "../interfaces/INonFungibleSeaDropToken.sol";import { ISeaDrop } from "../interfaces/ISeaDrop.sol";import {AllowListData,PublicDrop,TokenGatedDropStage,SignedMintValidationParams} from "../lib/SeaDropStructs.sol";
File 3 of 4: ERC721SeaDropCloneable
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.8.17;import {ERC721ContractMetadataCloneable,ISeaDropTokenContractMetadata} from "./ERC721ContractMetadataCloneable.sol";import {INonFungibleSeaDropToken} from "../interfaces/INonFungibleSeaDropToken.sol";import { ISeaDrop } from "../interfaces/ISeaDrop.sol";import {AllowListData,PublicDrop,TokenGatedDropStage,SignedMintValidationParams} from "../lib/SeaDropStructs.sol";
File 4 of 4: PayableProxy
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.7;import { PayableProxyInterface } from "../interfaces/PayableProxyInterface.sol";interface IUpgradeBeacon {/*** @notice An external view function that returns the implementation.** @return The address of the implementation.*/function implementation() external view returns (address);}/*** @title PayableProxy* @author OpenSea Protocol Team* @notice PayableProxy is a beacon proxy which will immediately return if* called with callvalue. Otherwise, it will delegatecall the beacon