UnmappedOffer
type UnmappedOffer = { currency: string; expirationTimestamp: BigNumberish; listingId: BigNumberish; offeror: string; pricePerToken: BigNumberish; quantityDesired: BigNumberish; quantityWanted: BigNumberish;};
The currency contract address of the offer token.
type currency = string;
The time where the offer expires
type expirationTimestamp = BigNumberish;
The listing that the offer was made on
type listingId = BigNumberish;
The user who is making the offer.
type offeror = string;
The amount of coins offered per token.
type pricePerToken = BigNumberish;
The quantity of tokens to be bought.
type quantityDesired = BigNumberish;
The amount of tokens desired.
type quantityWanted = BigNumberish;