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

    Type Alias RpcViewAccountError

    RpcViewAccountError:
        | { info: { block_reference: BlockReference }; name: "UNKNOWN_BLOCK" }
        | {
            info: {
                block_hash: CryptoHash;
                block_height: number;
                requested_account_id: AccountId;
            };
            name: "INVALID_ACCOUNT";
        }
        | {
            info: {
                block_hash: CryptoHash;
                block_height: number;
                requested_account_id: AccountId;
            };
            name: "UNKNOWN_ACCOUNT";
        }
        | { info: { error_message: string }; name: "INTERNAL_ERROR" }