7 lines
252 B
TypeScript
7 lines
252 B
TypeScript
import { PaymentMethodType } from "@prisma/client";
|
|
import { buildPaymentUri } from "@/lib/payment-uri";
|
|
|
|
export function getQrPayload(type: PaymentMethodType, value: string, network?: string | null) {
|
|
return buildPaymentUri(type, value, network);
|
|
}
|