We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8d8787 commit 91a790cCopy full SHA for 91a790c
src/constants/index.ts
@@ -4,6 +4,7 @@ import 'dotenv/config'
4
5
export const SOLANA_RPC_ENDPOINT: string = process.env.RPC_ENDPOINT!;
6
export const WRAP_UNWRAP_SOL: boolean = process.env.WRAP_UNWRAP_SOL === undefined ? true : process.env.WRAP_UNWRAP_SOL === "true";
7
+export const tradingEnabled: boolean = process.env.TRADING_ENABLED === undefined ? true : process.env.TRADING_ENABLED === "true";
8
9
// Wallets
10
export const WALLET_PRIVATE_KEY =
0 commit comments