diff --git a/src/bots/jitMaker.ts b/src/bots/jitMaker.ts index 981a95ac..6280a49d 100644 --- a/src/bots/jitMaker.ts +++ b/src/bots/jitMaker.ts @@ -35,7 +35,18 @@ import dotenv from 'dotenv'; dotenv.config(); import { PublicKey } from '@solana/web3.js'; -import { JitMakerConfig } from '../config'; +import { BaseBotConfig } from '../config'; + +export type JitMakerConfig = BaseBotConfig & { + subaccounts?: Array; + marketType: string; + /// @deprecated, use {@link JitMakerConfig.marketIndexes} and {@link JitMakerConfig.marketType} + perpMarketIndicies?: Array; + marketIndexes?: Array; + targetLeverage?: number; + aggressivenessBps?: number; + jitCULimit?: number; +}; /** * This is an example of a bot that implements the Bot interface.