• Wraps signedFetch with automatic error handling and JSON parsing. Returns a FetchResult tuple with parsed JSON data or error message and status code.

    Returns

    A tuple of [error, null, statusCode?] on failure or [null, data, statusCode] on success

    Type Parameters

    • T = unknown

    Parameters

    Returns Promise<FetchResult<T>>