interface DomainAcquisitionAuctionInfo {
    auctionEnd: Date;
    bidAdditionalPeriod: number;
    lastBid: number;
    lastBidder: null | string;
    nextMinimumBid: number;
    registrationDuration: number;
}

Properties

auctionEnd: Date

The date at which the auction will end. This may change when bids are added towards the end of an auction.

bidAdditionalPeriod: number

When a bid is made on an auction that will end in less milliseconds that this value, the end of auction is moved to this value of milliseconds from now.

lastBid: number

The amount of the last bid in mutez.

lastBidder: null | string

The address of the sender of the last bid.

nextMinimumBid: number

The minimum amount to outbid the current bid in mutez. (Value is NaN when auction is ended and waiting to be settled)

registrationDuration: number

The number of days that the domain will be registered for after an auction is settled.