bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
14 lines • 580 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.invoiceTransactionSchema = void 0;
const zod_1 = require("zod");
exports.invoiceTransactionSchema = zod_1.z.object({
amount: zod_1.z.number(),
confirmations: zod_1.z.number().optional(),
time: zod_1.z.string().optional(),
receivedTime: zod_1.z.string().optional(),
txid: zod_1.z.string().optional(),
exRates: zod_1.z.record(zod_1.z.string(), zod_1.z.number()).optional(),
outputIndex: zod_1.z.number().optional()
});
//# sourceMappingURL=InvoiceTransaction.zod.js.map