Transaction Hash:
Block:
22428867 at May-07-2025 02:37:11 AM +UTC
Transaction Fee:
0.000025381086937328 ETH
$0.07
Gas Used:
81,043 Gas / 0.313180496 Gwei
Emitted Events:
517 |
RainbowParrot.Transfer( from=0x00000000...000000000, to=[Sender] 0x1cbce7a2d8efd9cbd23dc01a2dd047735253ccb9, tokenId=90314 )
|
518 |
RainbowParrot.Transfer( from=0x00000000...000000000, to=[Sender] 0x1cbce7a2d8efd9cbd23dc01a2dd047735253ccb9, tokenId=90315 )
|
519 |
RainbowParrot.Transfer( from=0x00000000...000000000, to=[Sender] 0x1cbce7a2d8efd9cbd23dc01a2dd047735253ccb9, tokenId=90316 )
|
520 |
RainbowParrot.NewMint( msgSender=[Sender] 0x1cbce7a2d8efd9cbd23dc01a2dd047735253ccb9, mintQuantity=3 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1CBCE7A2...35253CCb9 |
0.011782665723684148 Eth
Nonce: 6
|
0.01175728463674682 Eth
Nonce: 7
| 0.000025381086937328 | ||
0x2F47cA81...879E7CF9F | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.901024254456471313 Eth | 13.901024289791219313 Eth | 0.000000035334748 |
Execution Trace
RainbowParrot.mint( quantity=3 )
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);