icns-frontend/types/chain-item-type.ts

15 lines
303 B
TypeScript
Raw Normal View History

export interface ChainItemType {
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;
}
export interface DisabledChainItemType extends ChainItemType {
disabled: true;
// Show reason why this chain is disabled to user if needed.
reason?: Error;
}