fix: increase ETH position size to 0 to meet Drift minimum (0.01 ETH)

This commit is contained in:
mindesbunister
2025-10-31 16:40:57 +01:00
parent 6f1c7bd5e3
commit 553c1f105a

View File

@@ -127,9 +127,9 @@ export const SUPPORTED_MARKETS: Record<string, MarketConfig> = {
pythPriceFeedId: '0xff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace',
minOrderSize: 0.01, // 0.01 ETH minimum
tickSize: 0.01,
// DATA COLLECTION MODE: Minimal risk
positionSize: 1, // $1 USD base capital only
leverage: 1, // 1x leverage = $1 position size total
// DATA COLLECTION MODE: Minimal risk (Drift minimum 0.01 ETH = ~$38)
positionSize: 40, // $40 base capital (meets exchange minimum)
leverage: 1, // 1x leverage = $40 total exposure
},
}