Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

ICfdEngineAdminHost

Git Source

Functions

applyRiskConfig

function applyRiskConfig(
    EngineRiskConfig calldata config
) external;

applyCalendarConfig

function applyCalendarConfig(
    EngineCalendarConfig calldata config
) external;

applyFreshnessConfig

function applyFreshnessConfig(
    EngineFreshnessConfig calldata config
) external;

Structs

EngineRiskConfig

struct EngineRiskConfig {
    CfdTypes.RiskParams riskParams;
    uint256 executionFeeBps;
}

EngineCalendarConfig

struct EngineCalendarConfig {
    uint256[] fadDayTimestamps;
    uint256 fadRunwaySeconds;
}

EngineFreshnessConfig

struct EngineFreshnessConfig {
    uint256 fadMaxStaleness;
    uint256 engineMarkStalenessLimit;
}