@waku/interfaces
Version:
Definition of Waku interfaces
15 lines (14 loc) • 426 B
TypeScript
import type { ShardInfo } from "./sharding";
/**
* The default cluster ID for The Waku Network
*/
export declare const DEFAULT_CLUSTER_ID = 1;
/**
* The default number of shards under a cluster.
*/
export declare const DEFAULT_NUM_SHARDS = 8;
/**
* DefaultShardInfo is default configuration for The Waku Network.
*/
export declare const DefaultShardInfo: ShardInfo;
export declare const DefaultNetworkConfig: ShardInfo;