import * as yup from 'yup'; import { RpcTransaction } from './types'; export type GetTransactionRequest = { transactionHash: string; blockHash?: string; }; export type GetTransactionResponse = RpcTransaction & { noteSize: number; blockHash: string; /** * @deprecated Please use `notes.length` instead */ notesCount: number; /** * @deprecated Please use `spends.length` instead */ spendsCount: number; /** * @deprecated Please use `notes` instead */ notesEncrypted: string[]; }; export declare const GetTransactionRequestSchema: yup.ObjectSchema; export declare const GetTransactionResponseSchema: yup.ObjectSchema; //# sourceMappingURL=getTransaction.d.ts.map