mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-06-18 20:01:06 +00:00
Updates
This commit is contained in:
Vendored
+33
@@ -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[];
|
||||
}
|
||||
Reference in New Issue
Block a user