IPostSettlementSurplusAuctionHouse

Git Source

Inherits: IAuthorizable, IModifiable, ICommonSurplusAuctionHouse

Functions

params

Getter for the contract parameters struct

function params() external view returns (PostSettlementSAHParams memory _pssahParams);

Returns

NameTypeDescription
_pssahParamsPostSettlementSAHParamsThe contract parameters struct

_params

Getter for the unpacked contract parameters struct

function _params() external view returns (uint256 _bidIncrease, uint256 _bidDuration, uint256 _totalAuctionLength);

Returns

NameTypeDescription
_bidIncreaseuint256A percentage of the last bid that needs to be added in order to take the new bid in consideration
_bidDurationuint256The duration of the bid after which an auction is considered finished
_totalAuctionLengthuint256The total duration of the auction after which an auction is considered finished

Structs

PostSettlementSAHParams

struct PostSettlementSAHParams {
  uint256 bidIncrease;
  uint256 bidDuration;
  uint256 totalAuctionLength;
}