Transaction Hash:
Block:
22530384 at May-21-2025 09:30:11 AM +UTC
Transaction Fee:
0.000116700201912276 ETH
$0.30
Gas Used:
98,773 Gas / 1.181499012 Gwei
Emitted Events:
924 |
ERC721DropProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000000000000000000000000000000000000000000000, 0x00000000000000000000000080f1ba608ba0d70a89f3656bc033b03f75de795c, 0x000000000000000000000000000000000000000000000000000000000002e224 )
|
925 |
ERC721DropProxy.0x4e26b0356a15833a75d497ecc40ebbb716b99466ed0dba9454f1fff451e25a90( 0x4e26b0356a15833a75d497ecc40ebbb716b99466ed0dba9454f1fff451e25a90, 0x00000000000000000000000080f1ba608ba0d70a89f3656bc033b03f75de795c, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000000000000000000000000000000000000002e223 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 6.811732925927224786 Eth | 6.81174104852764543 Eth | 0.000008122600420644 | |
0x7183bb21...7F61c4a17 | |||||
0x80F1Ba60...f75dE795c |
0.015658394661273908 Eth
Nonce: 1
|
0.015541694459361632 Eth
Nonce: 2
| 0.000116700201912276 |
Execution Trace
ERC721DropProxy.efef39a1( )

ERC721Drop.purchase( quantity=1 ) => ( 188963 )
-
OperatorFilterRegistry.isOperatorAllowed( registrant=0x7183bb21A9FD0CD2af098895c0e470b7F61c4a17, operator=0x80F1Ba608Ba0d70a89F3656Bc033b03f75dE795c ) => ( True )
-
purchase[ERC721Drop (ln:2424)]
Purchase_WrongPrice[ERC721Drop (ln:2434)]
_numberMinted[ERC721Drop (ln:2440)]
_msgSender[ERC721Drop (ln:2440)]
_msgSender[ERC721Drop (ln:2442)]
Purchase_TooManyForAddress[ERC721Drop (ln:2445)]
_mintNFTs[ERC721Drop (ln:2447)]
_msgSender[ERC721Drop (ln:2447)]
_lastMintedTokenId[ERC721Drop (ln:2448)]
Sale[ERC721Drop (ln:2449)]
_msgSender[ERC721Drop (ln:2450)]
File 1 of 3: ERC721DropProxy
File 2 of 3: ERC721Drop
File 3 of 3: OperatorFilterRegistry
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.10;// OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol)// OpenZeppelin Contracts (last updated v4.5.0) (proxy/Proxy.sol)/*** @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM* instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to* be specified by overriding the virtual {_implementation} function.** Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a* different contract through the {_delegate} function.** The success and return data of the delegated call will be returned back to the caller of the proxy.
File 2 of 3: ERC721Drop
12345678910111213141516// SPDX-License-Identifier: MIT// Creator: Chiru Labspragma solidity ^0.8.4;import "./IERC721AUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol";import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension. Built to optimize for lower gas during batch mints.** Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).*
File 3 of 3: OperatorFilterRegistry
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/