Transaction Hash:
Block:
22415266 at May-05-2025 04:51:11 AM +UTC
Transaction Fee:
0.0000542903183552 ETH
$0.14
Gas Used:
71,360 Gas / 0.76079482 Gwei
Emitted Events:
303 |
ERC721DropProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x000000000000000000000000fb6340714e7ecd8a8345cd269b8a443bd1eccd63, 0x0000000000000000000000000000000000000000000000000000000000000000, 0x0000000000000000000000000000000000000000000000000000000000005fb8 )
|
304 |
ERC721DropProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000fb6340714e7ecd8a8345cd269b8a443bd1eccd63, 0x000000000000000000000000431686579a780efb8a29b0b633b6b7ff55aecf11, 0x0000000000000000000000000000000000000000000000000000000000005fb8 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 144.86242272127486027 Eth | 144.86245840127486027 Eth | 0.00003568 | |
0x9D906696...f554c59EF | |||||
0xFb634071...bD1eccd63 |
0.004208393167116879 Eth
Nonce: 87
|
0.004154102848761679 Eth
Nonce: 88
| 0.0000542903183552 |
Execution Trace
ERC721DropProxy.23b872dd( )

-
ERC721Drop.transferFrom( from=0xFb6340714e7ecD8a8345Cd269B8a443bD1eccd63, to=0x431686579A780EfB8a29b0b633b6B7Ff55AECf11, tokenId=24504 )
transferFrom[ERC721AUpgradeable (ln:214)]
_transfer[ERC721AUpgradeable (ln:219)]
_ownershipOf[ERC721AUpgradeable (ln:356)]
_startTokenId[ERC721AUpgradeable (ln:123)]
OwnerQueryForNonexistentToken[ERC721AUpgradeable (ln:143)]
TransferFromIncorrectOwner[ERC721AUpgradeable (ln:357)]
_msgSender[ERC721AUpgradeable (ln:358)]
isApprovedForAll[ERC721AUpgradeable (ln:359)]
_msgSender[ERC721AUpgradeable (ln:359)]
getApproved[ERC721AUpgradeable (ln:360)]
_exists[ERC721AUpgradeable (ln:194)]
_startTokenId[ERC721AUpgradeable (ln:253)]
ApprovalQueryForNonexistentToken[ERC721AUpgradeable (ln:194)]
_msgSender[ERC721AUpgradeable (ln:360)]
TransferCallerNotOwnerNorApproved[ERC721AUpgradeable (ln:361)]
TransferToZeroAddress[ERC721AUpgradeable (ln:362)]
_beforeTokenTransfers[ERC721AUpgradeable (ln:363)]
_approve[ERC721AUpgradeable (ln:365)]
Approval[ERC721AUpgradeable (ln:462)]
Transfer[ERC721AUpgradeable (ln:388)]
_afterTokenTransfers[ERC721AUpgradeable (ln:389)]
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..).*