Transaction Hash:
Block:
22501303 at May-17-2025 07:35:23 AM +UTC
Transaction Fee:
0.000055638682198106 ETH
$0.15
Gas Used:
77,218 Gas / 0.720540317 Gwei
Emitted Events:
439 |
RainbowParrot.Transfer( from=0x00000000...000000000, to=[Sender] 0x4cfc31e3c04ee843fc8c56a54322b8b29044df54, tokenId=90437 )
|
440 |
RainbowParrot.NewMint( msgSender=[Sender] 0x4cfc31e3c04ee843fc8c56a54322b8b29044df54, mintQuantity=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2F47cA81...879E7CF9F | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.941150815835823404 Eth | 8.941157996022980054 Eth | 0.00000718018715665 | |
0x4CFc31E3...29044Df54 |
0.004102888430172115 Eth
Nonce: 3
|
0.004047249747974009 Eth
Nonce: 4
| 0.000055638682198106 |
Execution Trace
RainbowParrot.mint( quantity=1 )
mint[RainbowParrot (ln:2163)]
totalSupply[RainbowParrot (ln:2164)]
_safeMint[RainbowParrot (ln:2168)]
_safeMint[RainbowParrot (ln:2171)]
NewMint[RainbowParrot (ln:2174)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// File: contracts/RainbowParrot/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);