WalletInfo
type WalletInfo = {  app: {    android: string | null;    browser: string | null;    chrome: string | null;    edge: string | null;    firefox: string | null;    ios: string | null;    linux: string | null;    mac: string | null;    opera: string | null;    safari: string | null;    windows: string | null;  };  deepLink?: { mobile: string };  desktop: { native: string | null; universal: string | null };  homepage: string;  id: string;  image_id: string;  mobile: { native: string | null; universal: string | null };  name: string;  rdns: string | null;};
type app = {  android: string | null;  browser: string | null;  chrome: string | null;  edge: string | null;  firefox: string | null;  ios: string | null;  linux: string | null;  mac: string | null;  opera: string | null;  safari: string | null;  windows: string | null;};
type deepLink = { mobile: string };
type desktop = { native: string | null; universal: string | null };
type homepage = string;
type id = string;
type image_id = string;
type mobile = { native: string | null; universal: string | null };
type name = string;
type rdns = string | null;