UNPKG

@taquito/taquito

Version:

High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.

54 lines (53 loc) 1.54 kB
/** * @category Error * @description Error that indicates invalid confirmation count has been passed or configured */ export declare class InvalidConfirmationCountError extends Error { message: string; name: string; constructor(message: string); } /** * @category Error * @description Error that indicates undefined confirmation has not been specified or configured */ export declare class ConfirmationUndefinedError extends Error { message: string; name: string; constructor(message: string); } /** * @category Error * @description Error that indicates an invalid filter expression being passed or used */ export declare class InvalidFilterExpressionError extends Error { message: string; name: string; constructor(message: string); } /** * @category Error * @description Error that indicates an error being returned from the RPC response */ export declare class RPCResponseError extends Error { message: string; name: string; constructor(message: string); } /** * @category Error * @description Error that indicates invalid Preparation parameters being passed */ export declare class InvalidPrepareParamsError extends Error { opKind: string; name: string; constructor(opKind: string); } /** * @category Error * @description Error that indicates invalid Preparation parameters being passed */ export declare class PublicKeyNotFoundError extends Error { name: string; constructor(); }