UNPKG

@mavrykdynamics/taquito

Version:

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

17 lines (16 loc) 572 B
import { TaquitoError, MavrykToolkitConfigError } from '@mavrykdynamics/taquito-core'; /** * @category Error * @description Error that indicates that a global constant does not exist */ export declare class GlobalConstantNotFound extends TaquitoError { readonly hash: string; constructor(hash: string); } /** * @category Error * @description Error that indicates the global constant provider not being configured under MavrykToolkit */ export declare class UnconfiguredGlobalConstantsProviderError extends MavrykToolkitConfigError { constructor(); }