@@ -386,7 +386,7 @@ Emitted when a currency is approved as a form of payment for the listing.
386386### NewListing
387387
388388``` solidity
389- event NewListing(address indexed listingCreator, uint256 indexed listingId, IDirectListings.Listing listing)
389+ event NewListing(address indexed listingCreator, uint256 indexed listingId, address indexed assetContract, IDirectListings.Listing listing)
390390```
391391
392392Emitted when a new listing is created.
@@ -399,12 +399,13 @@ Emitted when a new listing is created.
399399| ---| ---| ---|
400400| listingCreator ` indexed ` | address | undefined |
401401| listingId ` indexed ` | uint256 | undefined |
402+ | assetContract ` indexed ` | address | undefined |
402403| listing | IDirectListings.Listing | undefined |
403404
404405### NewSale
405406
406407``` solidity
407- event NewSale(uint256 indexed listingId, address indexed assetContract , address indexed listingCreator , uint256 tokenId, address buyer, uint256 quantityBought, uint256 totalPricePaid)
408+ event NewSale(address indexed listingCreator, uint256 indexed listingId , address indexed assetContract , uint256 tokenId, address buyer, uint256 quantityBought, uint256 totalPricePaid)
408409```
409410
410411Emitted when NFTs are bought from a listing.
@@ -415,9 +416,9 @@ Emitted when NFTs are bought from a listing.
415416
416417| Name | Type | Description |
417418| ---| ---| ---|
419+ | listingCreator ` indexed ` | address | undefined |
418420| listingId ` indexed ` | uint256 | undefined |
419421| assetContract ` indexed ` | address | undefined |
420- | listingCreator ` indexed ` | address | undefined |
421422| tokenId | uint256 | undefined |
422423| buyer | address | undefined |
423424| quantityBought | uint256 | undefined |
@@ -426,7 +427,7 @@ Emitted when NFTs are bought from a listing.
426427### UpdatedListing
427428
428429``` solidity
429- event UpdatedListing(address indexed listingCreator, uint256 indexed listingId, IDirectListings.Listing listing)
430+ event UpdatedListing(address indexed listingCreator, uint256 indexed listingId, address indexed assetContract, IDirectListings.Listing listing)
430431```
431432
432433Emitted when a listing is updated.
@@ -439,6 +440,7 @@ Emitted when a listing is updated.
439440| ---| ---| ---|
440441| listingCreator ` indexed ` | address | undefined |
441442| listingId ` indexed ` | uint256 | undefined |
443+ | assetContract ` indexed ` | address | undefined |
442444| listing | IDirectListings.Listing | undefined |
443445
444446
0 commit comments