Skip to content

Commit

Permalink
tweaked documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
adam_unchained committed Sep 8, 2023
1 parent 2cf0892 commit 7979030
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const setNftForSaleSchema = toJoiObject<NftSetForSaleRequest>({
.max(TRANSACTION_MAX_EXPIRY_MS)
.greater(Joi.ref('auctionLength'))
.description(
'If set, auction will automatically extend by this length if a bid comes in within the specified minutes before the end of the auction.',
'If set, auction will automatically extended by this length if a bid comes in within {@link extendAuctionWithin} before the end of the auction.',
),
extendAuctionWithin: Joi.number()
.min(TRANSACTION_AUTO_EXPIRY_MS)
Expand Down
4 changes: 2 additions & 2 deletions packages/interfaces/src/api/post/NftSetForSaleRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ export interface NftSetForSaleRequest {
*/
availableFrom?: Date;
/**
* Auction will be extended if a bid happens this many milliseconds before auction ends. Default value is 5 minutes
* Auction will be extended if a bid happens this many milliseconds before auction ends. Default value is 300000 minutes
*/
extendAuctionWithin?: number;
/**
* If set, auction will automatically extend by this length if a bid comes in within the specified minutes before the end of the auction.
* If set, auction will automatically extended by this length if a bid comes in within {@link extendAuctionWithin} before the end of the auction.
*/
extendedAuctionLength?: number;
/**
Expand Down

0 comments on commit 7979030

Please sign in to comment.