contracts
contracts copied to clipboard
adding timestamps to offers on `Marketplace`
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;
}