2022-12-12 13:45:24 +00:00
|
|
|
export interface ChainItemType {
|
2022-12-13 12:21:16 +00:00
|
|
|
chainId: string;
|
2022-12-15 10:06:44 +00:00
|
|
|
chainName: string;
|
2022-12-07 11:18:10 +00:00
|
|
|
prefix: string;
|
|
|
|
chainImageUrl: string;
|
|
|
|
address: string;
|
|
|
|
}
|
2022-12-18 12:01:34 +00:00
|
|
|
|
|
|
|
export interface DisabledChainItemType extends ChainItemType {
|
|
|
|
disabled: true;
|
|
|
|
|
|
|
|
// Show reason why this chain is disabled to user if needed.
|
|
|
|
reason?: Error;
|
|
|
|
}
|