NewAuctionListing interface
Represents a new marketplace auction listing.
Signature:
export interface NewAuctionListing
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
assetContractAddress | string | The address of the asset being listed. | |
buyoutPricePerToken | Price | The buyout price of the listing. So if the | |
currencyContractAddress | string | The address of the currency to accept for the listing. | |
listingDurationInSeconds | BigNumberish | The duration of the listing in seconds. | |
quantity | BigNumberish | The quantity of tokens to include in the listing. For ERC721s, this value should always be 1 (and will be forced internally regardless of what is passed here). | |
reservePricePerToken | Price | The reserve price is the minimum price that a bid must be in order to be accepted, per token. So if the | |
startTimestamp | Date | The start time of the listing. | |
tokenId | BigNumberish | The ID of the token to list. | |
type? | "NewAuctionListing" | (Optional) |