Transaction Hash:
Block:
22502085 at May-17-2025 10:12:35 AM +UTC
Transaction Fee:
0.00007444049186712 ETH
$0.32
Gas Used:
81,020 Gas / 0.918791556 Gwei
Emitted Events:
939 |
RaidFairy.Transfer( from=0x00000000...000000000, to=[Sender] 0xae1de14fa71105c0a3911689f8ea022c9d2ee175, tokenId=42966 )
|
940 |
RaidFairy.Transfer( from=0x00000000...000000000, to=[Sender] 0xae1de14fa71105c0a3911689f8ea022c9d2ee175, tokenId=42967 )
|
941 |
RaidFairy.Transfer( from=0x00000000...000000000, to=[Sender] 0xae1de14fa71105c0a3911689f8ea022c9d2ee175, tokenId=42968 )
|
942 |
RaidFairy.NewMint( msgSender=[Sender] 0xae1de14fa71105c0a3911689f8ea022c9d2ee175, mintQuantity=3 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0A791089...9eDBC3221 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 10.453651442028309104 Eth | 10.453651492143149084 Eth | 0.00000005011483998 | |
0xAe1De14F...c9D2EE175 |
0.030045169920029836 Eth
Nonce: 12
|
0.029970729428162716 Eth
Nonce: 13
| 0.00007444049186712 |
Execution Trace
RaidFairy.mint( quantity=3 )
mint[RaidFairy (ln:2163)]
totalSupply[RaidFairy (ln:2164)]
_safeMint[RaidFairy (ln:2168)]
_safeMint[RaidFairy (ln:2171)]
NewMint[RaidFairy (ln:2174)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// File: contracts/Fairy/IOperatorFilterRegistry.solpragma solidity ^0.8.0;interface IOperatorFilterRegistry {function isOperatorAllowed(address registrant, address operator) external view returns (bool);function register(address registrant) external;function registerAndSubscribe(address registrant, address subscription) external;function registerAndCopyEntries(address registrant, address registrantToCopy) external;function unregister(address addr) external;function updateOperator(address registrant, address operator, bool filtered) external;function updateOperators(address registrant, address[] calldata operators, bool filtered) external;function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;function subscribe(address registrant, address registrantToSubscribe) external;function unsubscribe(address registrant, bool copyExistingEntries) external;function subscriptionOf(address addr) external returns (address registrant);function subscribers(address registrant) external returns (address[] memory);function subscriberAt(address registrant, uint256 index) external returns (address);function copyEntriesOf(address registrant, address registrantToCopy) external;function isOperatorFiltered(address registrant, address operator) external returns (bool);function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);function filteredOperators(address addr) external returns (address[] memory);