UNPKG

stellar-plus

Version:

beta version of stellar-plus, an all-in-one sdk for the Stellar blockchain

12 lines (11 loc) 714 B
import { FeeBumpTransaction, Transaction } from '@stellar/stellar-sdk'; import { StellarPlusError } from '../../../../stellar-plus/error'; import { ConveyorBeltErrorMeta } from '../../../../stellar-plus/error/helpers/conveyor-belt'; import { BeltMetadata } from '../../../../stellar-plus/utils/pipeline/conveyor-belts/types'; import { ClassicSignRequirementsPipelineInput } from './types'; export declare enum ErrorCodesPipelineClassicSignRequirements { CSR001 = "CSR001" } export declare const CSRError: { processFailed: (error: Error, conveyorBeltErrorMeta: ConveyorBeltErrorMeta<ClassicSignRequirementsPipelineInput, BeltMetadata>, transaction: Transaction | FeeBumpTransaction) => StellarPlusError; };