IPostSettlementSurplusAuctionHouse
Inherits: IAuthorizable, IModifiable, ICommonSurplusAuctionHouse
Functions
params
Getter for the contract parameters struct
function params() external view returns (PostSettlementSAHParams memory _pssahParams);
Returns
Name | Type | Description |
---|---|---|
_pssahParams | PostSettlementSAHParams | The contract parameters struct |
_params
Getter for the unpacked contract parameters struct
function _params() external view returns (uint256 _bidIncrease, uint256 _bidDuration, uint256 _totalAuctionLength);
Returns
Name | Type | Description |
---|---|---|
_bidIncrease | uint256 | A percentage of the last bid that needs to be added in order to take the new bid in consideration |
_bidDuration | uint256 | The duration of the bid after which an auction is considered finished |
_totalAuctionLength | uint256 | The total duration of the auction after which an auction is considered finished |
Structs
PostSettlementSAHParams
struct PostSettlementSAHParams {
uint256 bidIncrease;
uint256 bidDuration;
uint256 totalAuctionLength;
}