Represents a JSON-RPC error for Hedera operations.

interface HederaErrorResponse {
    code: number;
    data?: T;
    message: string;
}

Type Parameters

  • T = string | number

    Generic type for additional data in the error response.

Properties

Properties

code: number
data?: T
message: string

Generated using TypeDoc