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 6543feb commit b490a95Copy full SHA for b490a95
src/constants/index.ts
@@ -5,6 +5,7 @@ import 'dotenv/config'
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
+export const tradingRetries: number = process.env.TRADING_RETRIES === undefined ? 0 : Number(process.env.TRADING_RETRIES);
9
10
// Wallets
11
export const WALLET_PRIVATE_KEY =
0 commit comments