import type { Deeplink } from "./Deeplink"; import type { Images } from "./Images"; import type { Network } from "./Network"; import type { Platform } from "./Platform"; import type { Version } from "./Version"; import type { WalletType } from "./WalletType"; export interface WalletMetadata { slug: string; name: string; description: string; homepage: string; chains: Array; version: Version; walletType: WalletType; mobile: Deeplink | null; desktop: Deeplink | null; image: Images; app: Record; injectPath: Record; lastUpdatedTimestamp: bigint; }