Git Source
function applyRiskConfig(
EngineRiskConfig calldata config
) external;
function applyCalendarConfig(
EngineCalendarConfig calldata config
) external;
function applyFreshnessConfig(
EngineFreshnessConfig calldata config
) external;
struct EngineRiskConfig {
CfdTypes.RiskParams riskParams;
uint256 executionFeeBps;
}
struct EngineCalendarConfig {
uint256[] fadDayTimestamps;
uint256 fadRunwaySeconds;
}
struct EngineFreshnessConfig {
uint256 fadMaxStaleness;
uint256 engineMarkStalenessLimit;
}