Transaction Hash:
Block:
22153901 at Mar-29-2025 04:58:23 PM +UTC
Transaction Fee:
0.000131679445729851 ETH
$0.42
Gas Used:
51,061 Gas / 2.578865391 Gwei
Emitted Events:
186 |
ERC721DropProxy.0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31( 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31, 0x00000000000000000000000050823ee78a3269fbbeb987c5c1043c64180e4036, 0x000000000000000000000000e99fe1d334b6a74d00adf4522e5051361de2bf40, 0000000000000000000000000000000000000000000000000000000000000001 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.28986780729390411 Eth | 8.28996992929390411 Eth | 0.000102122 | |
0x50823EE7...4180e4036 |
0.00050000000000001 Eth
Nonce: 15
|
0.000368320554270159 Eth
Nonce: 16
| 0.000131679445729851 | ||
0x9D906696...f554c59EF |
Execution Trace
ERC721DropProxy.a22cb465( )

-
ERC721Drop.setApprovalForAll( operator=0xe99fE1d334B6a74D00aDf4522e5051361de2BF40, approved=True )
setApprovalForAll[ERC721AUpgradeable (ln:200)]
_msgSender[ERC721AUpgradeable (ln:201)]
ApproveToCaller[ERC721AUpgradeable (ln:201)]
_msgSender[ERC721AUpgradeable (ln:202)]
ApprovalForAll[ERC721AUpgradeable (ln:203)]
_msgSender[ERC721AUpgradeable (ln:203)]
File 1 of 2: ERC721DropProxy
File 2 of 2: ERC721Drop
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 2: 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..).*