Transaction Hash:
Block:
17375460 at May-31-2023 12:59:47 AM +UTC
Transaction Fee:
0.00268629451177834 ETH
$6.87
Gas Used:
94,651 Gas / 28.38104734 Gwei
Emitted Events:
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 10.016620726250442365 Eth | 10.016630191350442365 Eth | 0.0000094651 | ||
0x2F47cA81...879E7CF9F | 0.0009 Eth | 0.0014 Eth | 0.0005 | ||
0x9E6e2442...a7D92bE33 |
0.012243125998020595 Eth
Nonce: 3
|
0.009056831486242255 Eth
Nonce: 4
| 0.00318629451177834 |
Execution Trace
ETH 0.0005
RainbowParrot.mint( quantity=10 )
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);