You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
296 B

export interface IBlock {
height: number;
signals: boolean | undefined;
miner: string | undefined;
minerWebsite: string | undefined;
}
export interface IMinerData {
[key: string]: {
name: string;
signals: boolean;
website: string | undefined;
numBlocks: number;
};
}