Git Source
function isSeedLifecycleComplete(
bool seniorSeedInitialized,
bool juniorSeedInitialized
) internal pure returns (bool);
function hasSeedLifecycleStarted(
bool seniorSeedInitialized,
bool juniorSeedInitialized
) internal pure returns (bool);
function canAcceptOrdinaryDeposits(
bool seniorSeedInitialized,
bool juniorSeedInitialized,
bool isTradingActive
) internal pure returns (bool);
function canIncreaseRisk(
bool seniorSeedInitialized,
bool juniorSeedInitialized,
bool isTradingActive
) internal pure returns (bool);
function tradingActivationReady(
bool seniorSeedInitialized,
bool juniorSeedInitialized
) internal pure returns (bool);
function hasPendingBootstrap(
uint256 unassignedAssets
) internal pure returns (bool);