near-api-js - v7.0.4
    Preparing search index...

    Type Alias RpcLightClientProofError

    RpcLightClientProofError:
        | { info: { [key: string]: unknown }; name: "UNKNOWN_BLOCK" }
        | {
            info: { execution_outcome_shard_id: ShardId; number_or_shards: number };
            name: "INCONSISTENT_STATE";
        }
        | {
            info: { transaction_or_receipt_id: CryptoHash };
            name: "NOT_CONFIRMED";
        }
        | {
            info: { transaction_or_receipt_id: CryptoHash };
            name: "UNKNOWN_TRANSACTION_OR_RECEIPT";
        }
        | {
            info: { shard_id: ShardId; transaction_or_receipt_id: CryptoHash };
            name: "UNAVAILABLE_SHARD";
        }
        | { info: { error_message: string }; name: "INTERNAL_ERROR" }