diff --git a/src/store/consts/static.ts b/src/store/consts/static.ts index de39b4b59..481a3cfcf 100644 --- a/src/store/consts/static.ts +++ b/src/store/consts/static.ts @@ -352,17 +352,17 @@ export const WSOL_POSITION_INIT_LAMPORTS = new BN(6164600) export const WSOL_POOL_INIT_LAMPORTS = new BN(106000961) -export const minimumRangesForTiers = [20, 20, 74, 80, 64, 28, 28, 28, 28] +export const minimumRangesForTiers = [20, 20, 20, 20, 74, 80, 64, 28, 28, 28, 28] export const maxSafeConcentrationsForTiers = [ - 400.52, 400.52, 41.49, 21.47, 8.13, 5.45, 5.45, 5.45, 5.45 + 400.52, 400.52, 400.52, 400.52, 41.49, 21.47, 8.13, 5.45, 5.45, 5.45, 5.45 ] -export const ALL_FEE_TIERS_DATA = FEE_TIERS.slice(2).map((tier, index) => ({ +export const ALL_FEE_TIERS_DATA = FEE_TIERS.map((tier, index) => ({ tier, minimumRange: minimumRangesForTiers[index], maxSafeConcentration: maxSafeConcentrationsForTiers[index], primaryIndex: index -})) +})).slice(2) // remove slice if all tiers should be visible export { SolanaNetworks, DEFAULT_PUBLICKEY, MAX_U64, NetworkType }