AccountInfoWithJsonData

type AccountInfoWithJsonData = Readonly<{
  data:   | Base64EncodedDataResponse
     | Readonly<{
     parsed: {
        info?: object;
        type: string;
     };
     program: string;
     space: bigint;
   }>;
}>;