Part of https://www.notion.so/Laconic-Mainnet-Plan-1eca6b22d47280569cd0d1e6d711d949 Co-authored-by: Shreerang Kale <shreerangkale@gmail.com> Reviewed-on: #4 Co-authored-by: shreerang <shreerang@noreply.git.vdb.to> Co-committed-by: shreerang <shreerang@noreply.git.vdb.to>
10 lines
352 B
TypeScript
10 lines
352 B
TypeScript
import { PaymentMethod } from "@/types";
|
|
|
|
// Payment method labels for UI
|
|
export const PAYMENT_METHOD_LABELS: Record<PaymentMethod, string> = {
|
|
[PaymentMethod.NAT_GOR]: 'GOR (native)',
|
|
[PaymentMethod.SPL_TOKEN]: process.env.NEXT_PUBLIC_SOLANA_TOKEN_SYMBOL!
|
|
};
|
|
|
|
export const SOLANA_GOR_MINT_ADDRESS = '71Jvq4Epe2FCJ7JFSF7jLXdNk1Wy4Bhqd9iL6bEFELvg';
|