/* Crafted with love by Fueled on Bacon https://fueledonbacon.com */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IERC721AOperator { error ERC721AOPWrongBatchLengths(); error ERC721AOPNotOwnedToken(); error ERC721AOPInvalidSellPrice(); function versionERC721AOperator() external pure returns (string memory); function setSellingPrice(uint256[] memory tokenIds, uint256[] memory sellPrices) external; }