7 lines
288 B
TypeScript
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; |