This commit is contained in:
github-actions[bot]
2026-01-18 03:14:49 +00:00
commit f3ee114735
336 changed files with 42224 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
import type React from 'react';
export interface IFavoriteChainProps {
chainName: string;
relay?: string;
paraId?: number;
}
export type IFavoriteChainsStorage = Record<string, {
relay: string;
paraId: number;
}[]>;
export interface Network {
isChild?: boolean;
isLightClient?: boolean;
isRelay?: boolean;
isUnreachable?: boolean;
name: string;
nameRelay?: string;
paraId?: number;
providers: {
name: string;
url: string;
}[];
ui: {
color?: string;
logo?: string;
};
}
export interface Group {
header: React.ReactNode;
isDevelopment?: boolean;
isSpaced?: boolean;
networks: Network[];
}