bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
11 lines (10 loc) • 411 B
TypeScript
import { z } from 'zod';
export declare const invoiceTransactionSchema: z.ZodObject<{
amount: z.ZodNumber;
confirmations: z.ZodOptional<z.ZodNumber>;
time: z.ZodOptional<z.ZodString>;
receivedTime: z.ZodOptional<z.ZodString>;
txid: z.ZodOptional<z.ZodString>;
exRates: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
outputIndex: z.ZodOptional<z.ZodNumber>;
}, z.core.$strip>;