UNPKG

@unchainedshop/plugins

Version:

Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters

13 lines (12 loc) 473 B
import { mongodb } from '@unchainedshop/mongodb'; import { type TimestampFields } from '@unchainedshop/mongodb'; export type CryptopayTransaction = { _id: string; blockHeight: number; mostRecentBlockHeight: number; amount: mongodb.Decimal128; currencyCode: string; decimals: number; orderPaymentId?: string; } & TimestampFields; export declare const CryptopayTransactionsCollection: (db: mongodb.Db) => mongodb.Collection<CryptopayTransaction>;