contracts icon indicating copy to clipboard operation
contracts copied to clipboard

adding timestamps to offers on `Marketplace`

Open skoshx opened this issue 3 years ago • 0 comments

It would be nice to see when offers are made on marketplace auction listings. This increases transparency. I am willing to submit a Pull Request to add this new feature.

The changed Offer structure would look something like this:

struct Offer {
        uint256 listingId;
        address offeror;
        uint256 quantityWanted;
        address currency;
        uint256 pricePerToken;
        uint256 expirationTimestamp;
        uint256 createdAtTimestamp;
}

skoshx avatar Jun 14 '22 15:06 skoshx