Skip to content

Commit

Permalink
Merge pull request #522 from invariant-labs/hide-fee-tiers
Browse files Browse the repository at this point in the history
Remove tiers
  • Loading branch information
wojciech-cichocki authored Nov 16, 2023
2 parents 580520a + bd8647f commit 57de857
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/store/consts/static.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ const mainnetBestTiersCreator = () => {
bestTiers.push({
tokenX,
tokenY,
bestTierIndex: 2
bestTierIndex: 1
})
}
}
Expand All @@ -244,7 +244,7 @@ const mainnetBestTiersCreator = () => {
bestTiers.push({
tokenX,
tokenY,
bestTierIndex: 2
bestTierIndex: 1
})
}
}
Expand All @@ -262,22 +262,22 @@ export const bestTiers: Record<NetworkType, BestTier[]> = {
{
tokenX: USDC_DEV.address,
tokenY: WSOL_DEV.address,
bestTierIndex: 2
bestTierIndex: 1
},
{
tokenX: USDC_DEV.address,
tokenY: BTC_DEV.address,
bestTierIndex: 2
bestTierIndex: 1
},
{
tokenX: RENDOGE_DEV.address,
tokenY: BTC_DEV.address,
bestTierIndex: 4
bestTierIndex: 3
},
{
tokenX: USDC_DEV.address,
tokenY: RENDOGE_DEV.address,
bestTierIndex: 4
bestTierIndex: 3
}
],
Testnet: [],
Expand Down Expand Up @@ -363,6 +363,6 @@ export const ALL_FEE_TIERS_DATA = FEE_TIERS.map((tier, index) => ({
minimumRange: minimumRangesForTiers[index],
maxSafeConcentration: maxSafeConcentrationsForTiers[index],
primaryIndex: index
})).slice(2) // remove slice if all tiers should be visible
})).slice(3) // remove slice if all tiers should be visible

export { SolanaNetworks, DEFAULT_PUBLICKEY, MAX_U64, NetworkType }

0 comments on commit 57de857

Please sign in to comment.