Transaction Hash:
Block:
22406703 at May-04-2025 12:02:11 AM +UTC
Transaction Fee:
0.000032476851548802 ETH
$0.09
Gas Used:
77,271 Gas / 0.420298062 Gwei
Emitted Events:
220 |
RaidFairy.Transfer( from=0x00000000...000000000, to=[Sender] 0x0969cc044e564e54ff0d2f1bd849101e0137f892, tokenId=42827 )
|
221 |
RaidFairy.NewMint( msgSender=[Sender] 0x0969cc044e564e54ff0d2f1bd849101e0137f892, mintQuantity=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0969cC04...E0137F892 |
0.031593408105287853 Eth
Nonce: 1
|
0.031560931253739051 Eth
Nonce: 2
| 0.000032476851548802 | ||
0x0A791089...9eDBC3221 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.132695692987065274 Eth | 15.132695750917133974 Eth | 0.0000000579300687 |
Execution Trace
RaidFairy.mint( quantity=1 )
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);