UNPKG

@mavrykdynamics/taquito-local-forging

Version:

Provide local forging functionality to be with taquito

110 lines (109 loc) 3.8 kB
import { ParameterValidationError } from '@mavrykdynamics/taquito-core'; import { OperationContents } from '@mavrykdynamics/taquito-rpc'; /** * @category Error * @description Error that indicates an invalid operation content being passed or used */ export declare class InvalidOperationSchemaError extends ParameterValidationError { readonly operation: OperationContents; readonly errorDetail?: string | undefined; constructor(operation: OperationContents, errorDetail?: string | undefined); } /** * @category Error * @description Error that indicates an entrypoint name exceeding maximum length */ export declare class OversizedEntryPointError extends ParameterValidationError { readonly entrypoint: string; constructor(entrypoint: string); } /** * @category Error * @description Error that indicates an invalid ballot value being used */ export declare class InvalidBallotValueError extends ParameterValidationError { readonly ballotValue: string; constructor(ballotValue: string); } /** * @category Error * @description Error that indicates a failure when trying to decode ballot value */ export declare class DecodeBallotValueError extends ParameterValidationError { readonly ballotValue: string; constructor(ballotValue: string); } /** * @category Error * @description Error that indicates unexpected Michelson Value being passed or used */ export declare class UnexpectedMichelsonValueError extends ParameterValidationError { readonly value: string; constructor(value: string); } /** * @category Error * @description Error that indicates a failure when trying to decode an operation */ export declare class OperationDecodingError extends ParameterValidationError { readonly message: string; constructor(message: string); } /** * @category Error * @description Error that indicates a failure when trying to encode an operation */ export declare class OperationEncodingError extends ParameterValidationError { readonly message: string; constructor(message: string); } /** * @category Error * @description Error that indicates an unsupported operation being passed or used */ export declare class UnsupportedOperationError extends ParameterValidationError { readonly op: string; constructor(op: string); } /** * @cateogry Error * @description Error that indicates an unsupported pvm being passed or used */ export declare class UnsupportedPvmKindError extends ParameterValidationError { readonly pvm: string; constructor(pvm: string); } /** * @category Error * @description Error that indicates an unsupported pvm to decode */ export declare class DecodePvmKindError extends ParameterValidationError { readonly pvm: string; constructor(pvm: string); } /** * @category Error * @description Error that indicates an invalid Smart Rollup Address (sr1) */ export declare class InvalidSmartRollupAddressError extends ParameterValidationError { readonly address: string; readonly errorDetail?: string | undefined; constructor(address: string, errorDetail?: string | undefined); } /** * @category Error * @description Error that indicates an invalid Smart Rollup commitment hash (src1) */ export declare class InvalidSmartRollupCommitmentHashError extends ParameterValidationError { readonly hash: string; readonly errorDetail?: string | undefined; constructor(hash: string, errorDetail?: string | undefined); } /** * @category Error * @description Error that indicates an invalid dal commitment (sh) */ export declare class InvalidDalCommitmentError extends ParameterValidationError { readonly commitment: string; readonly errorDetail?: string | undefined; constructor(commitment: string, errorDetail?: string | undefined); }