Git Source
event RoyaltyEngineUpdated(address indexed prevRoyaltyEngine, address indexed newRoyaltyEngine);
event WethUpdated(address indexed prevWeth, address indexed newWeth);
event MinBidIncreaseUpdated(uint256 indexed newMinBidIncreasePerc, uint256 indexed newMinBidIncreaseLimit);
event ProtocolFeeUpdated(
address indexed newProtocolFeeReceiver, uint256 indexed newProtocolFeePerc, uint256 indexed newProtocolFeeLimit
);
event AuctionConfigured(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Auction auction);
event AuctionCanceled(address indexed sender, address indexed nftAddress, uint256 indexed tokenId);
event AuctionSettled(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Auction auction);
event AuctionBid(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Auction auction);
event SaleConfigured(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Sale sale);
event SaleCanceled(address indexed sender, address indexed nftAddress, uint256 indexed tokenId);
event SaleFulfilled(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Sale sale);