Skip to content

Commit 040f9ff

Browse files
Fix gt vs lt for dateEnding
1 parent 5d28a9f commit 040f9ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/fnd-subgraph.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ When an NFT is initially listed, its state in the Foundation subgraph will be `n
129129
Once the reserve price is met, `nftMarketAuction.highestBid!=null`.
130130

131131
### End time
132-
Anyone can place bids on auctions until the end time has passed. So `nftMarketAuction.status=Open and nftMarketAuction.dateEnding<nowInSeconds` means an auction is accepting bids and `nftMarketAuction.status=Open and nftMarketAuction.dateEnding>=nowInSeconds` indicates that the auction countdown has completed and bids are no longer being accepted.
132+
Anyone can place bids on auctions until the end time has passed. So `nftMarketAuction.status=Open and nftMarketAuction.dateEnding>nowInSeconds` means an auction is accepting bids and `nftMarketAuction.status=Open and nftMarketAuction.dateEnding<=nowInSeconds` indicates that the auction countdown has completed and bids are no longer being accepted.
133133

134134
Note that the end time for an auction may change, because placing a bit in the last 15 minutes resets the remaining time to 15 minutes to prevent sniping.
135135

0 commit comments

Comments
 (0)