6 lines
267 B
TypeScript
6 lines
267 B
TypeScript
export const checkoutURL = (userId: string, manticDollarQuantity: number) => {
|
|
const endpoint =
|
|
'https://us-central1-mantic-markets.cloudfunctions.net/createCheckoutSession'
|
|
return `${endpoint}?userId=${userId}&manticDollarQuantity=${manticDollarQuantity}`
|
|
}
|