Skip to main content

Marketplace.setTimeBufferInSeconds() method

Set the Auction Time buffer:

Example

// the time buffer in seconds
const bufferInSeconds = 60;
await contract.setTimeBufferInSeconds(bufferInSeconds);

Signature:

setTimeBufferInSeconds(bufferInSeconds: BigNumberish): Promise<void>;

Parameters

ParameterTypeDescription
bufferInSecondsBigNumberishthe seconds value

Returns:

Promise<void>

Remarks

Measured in seconds (e.g. 15 minutes or 900 seconds). If a winning bid is made within the buffer of the auction closing (e.g. 15 minutes within the auction closing), the auction's closing time is increased by the buffer to prevent buyers from making last minute winning bids, and to give time to other buyers to make a higher bid if they wish to.