type OptionalProps = Omit & Partial>; /** * Chain-specific information required for metadata hash calculation */ export interface ChainInfo { /** Runtime spec version */ specVersion: number; /** Runtime spec name */ specName: string; /** SS58 address format prefix */ ss58Prefix: number; /** Token decimal places */ decimals: number; /** Token symbol */ tokenSymbol: string; } export type ChainInfoOptional = OptionalProps; export {};