solpay/src/data/index.ts
2025-08-14 01:52:03 +08:00

7 lines
288 B
TypeScript

import { clusterApiUrl } from "@solana/web3.js";
import { config } from "../config";
const CLUSTER_API_PROD = clusterApiUrl("mainnet-beta");
const CLUSTER_API_DEV = clusterApiUrl("devnet");
export const CLUSTER_API = config.nodeEnv === "production" ? CLUSTER_API_PROD : CLUSTER_API_DEV;