ITLAuctionHouseEvents

Git Source

Events

RoyaltyEngineUpdated

event RoyaltyEngineUpdated(address indexed prevRoyaltyEngine, address indexed newRoyaltyEngine);

WethUpdated

event WethUpdated(address indexed prevWeth, address indexed newWeth);

MinBidIncreaseUpdated

event MinBidIncreaseUpdated(uint256 indexed newMinBidIncreasePerc, uint256 indexed newMinBidIncreaseLimit);

ProtocolFeeUpdated

event ProtocolFeeUpdated(
    address indexed newProtocolFeeReceiver, uint256 indexed newProtocolFeePerc, uint256 indexed newProtocolFeeLimit
);

AuctionConfigured

event AuctionConfigured(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Auction auction);

AuctionCanceled

event AuctionCanceled(address indexed sender, address indexed nftAddress, uint256 indexed tokenId);

AuctionSettled

event AuctionSettled(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Auction auction);

AuctionBid

event AuctionBid(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Auction auction);

SaleConfigured

event SaleConfigured(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Sale sale);

SaleCanceled

event SaleCanceled(address indexed sender, address indexed nftAddress, uint256 indexed tokenId);

SaleFulfilled

event SaleFulfilled(address indexed sender, address indexed nftAddress, uint256 indexed tokenId, Sale sale);