@waku/interfaces
Version:
Definition of Waku interfaces
17 lines (14 loc) • 343 B
text/typescript
export enum HealthStatus {
/**
* No peer connections
*/
Unhealthy = "Unhealthy",
/**
* At least 1 peer supporting both Filter and LightPush protocols
*/
MinimallyHealthy = "MinimallyHealthy",
/**
* At least 2 peers supporting both Filter and LightPush protocols
*/
SufficientlyHealthy = "SufficientlyHealthy"
}