@@ -386,7 +386,7 @@ Emitted when a currency is approved as a form of payment for the listing.
386
386
### NewListing
387
387
388
388
``` 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)
390
390
```
391
391
392
392
Emitted when a new listing is created.
@@ -399,12 +399,13 @@ Emitted when a new listing is created.
399
399
| ---| ---| ---|
400
400
| listingCreator ` indexed ` | address | undefined |
401
401
| listingId ` indexed ` | uint256 | undefined |
402
+ | assetContract ` indexed ` | address | undefined |
402
403
| listing | IDirectListings.Listing | undefined |
403
404
404
405
### NewSale
405
406
406
407
``` 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)
408
409
```
409
410
410
411
Emitted when NFTs are bought from a listing.
@@ -415,9 +416,9 @@ Emitted when NFTs are bought from a listing.
415
416
416
417
| Name | Type | Description |
417
418
| ---| ---| ---|
419
+ | listingCreator ` indexed ` | address | undefined |
418
420
| listingId ` indexed ` | uint256 | undefined |
419
421
| assetContract ` indexed ` | address | undefined |
420
- | listingCreator ` indexed ` | address | undefined |
421
422
| tokenId | uint256 | undefined |
422
423
| buyer | address | undefined |
423
424
| quantityBought | uint256 | undefined |
@@ -426,7 +427,7 @@ Emitted when NFTs are bought from a listing.
426
427
### UpdatedListing
427
428
428
429
``` 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)
430
431
```
431
432
432
433
Emitted when a listing is updated.
@@ -439,6 +440,7 @@ Emitted when a listing is updated.
439
440
| ---| ---| ---|
440
441
| listingCreator ` indexed ` | address | undefined |
441
442
| listingId ` indexed ` | uint256 | undefined |
443
+ | assetContract ` indexed ` | address | undefined |
442
444
| listing | IDirectListings.Listing | undefined |
443
445
444
446
0 commit comments