14 lines
847 B
TypeScript
14 lines
847 B
TypeScript
import { Connection } from "@solana/web3.js";
|
|
|
|
// Replace this URL with your dedicated RPC endpoint
|
|
// You can get one from providers like QuickNode, Alchemy, Helius, or GenesysGo
|
|
// export const CLUSTER_URL = "https://tiniest-cold-darkness.solana-mainnet.quiknode.pro/72332d636ff78d498b880bd8fdc3eb646c827da8/";
|
|
// export const CLUSTER_URL = "https://go.getblock.io/908837801b534ae7a6f0869fc44cc567";
|
|
export const CLUSTER_URL = "https://solana-mainnet.core.chainstack.com/c54e14eef17693283a0323efcc4ce731";
|
|
export const EXPLORER_ADDRESS_TEMPLATE = "https://explorer.solana.com/address/{address}";
|
|
export const EXPLORER_TX_TEMPLATE = "https://explorer.solana.com/tx/{address}";
|
|
export const connection = new Connection(CLUSTER_URL);
|
|
|
|
export const API_URL = "https://api.duelfi.io/v1/";
|
|
export const VALIDATOR_URL = "https://validator.duelfi.io/";
|