OfferV3 interface
Represents a marketplace offer.
Signature:
export interface OfferV3
Properties
| Property | Modifiers | Type | Description |
|---|---|---|---|
| asset | NFTMetadata | The asset to buy. | |
| assetContractAddress | string | The address of the asset being sought. | |
| currencyContractAddress | string | The address of the currency offered for the NFTs. | |
| currencyValue | CurrencyValue | The CurrencyValue of the listing. Useful for displaying the price information. | |
| endTimeInSeconds | number | The end time of the offer. | |
| id | string | The id of the offer. | |
| offerorAddress | string | The address of the creator of offer. | |
| quantity | string | The quantity of tokens to buy. For ERC721s, this value should always be 1 (and will be forced internally regardless of what is passed here). | |
| status | Status | Whether the listing is CREATED, COMPLETED, or CANCELLED. | |
| tokenId | string | The ID of the token. | |
| totalPrice | string | The total offer amount for the NFTs. |