mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-06-18 19:01:01 +00:00
Add chains overlay (#157)
* feat: Adding a show-all-chains button * feat: Show all-chains overlay selector
This commit is contained in:
@@ -195,7 +195,7 @@ export interface State {
|
||||
finalized: Types.BlockNumber;
|
||||
consensusInfo: Types.ConsensusInfo;
|
||||
displayConsensusLoadingScreen: boolean;
|
||||
tabChanged: boolean;
|
||||
tab: string;
|
||||
authorities: Types.Address[];
|
||||
authoritySetId: Maybe<Types.AuthoritySetId>;
|
||||
sendFinality: boolean;
|
||||
@@ -211,3 +211,8 @@ export interface State {
|
||||
|
||||
export type Update = <K extends keyof State>(changes: Pick<State, K> | null) => Readonly<State>;
|
||||
export type UpdateBound = <K extends keyof State>(changes: Pick<State, K> | null) => void;
|
||||
|
||||
export interface ChainData {
|
||||
label: Types.ChainLabel;
|
||||
nodeCount: Types.NodeCount;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user