Skip to content

Commit

Permalink
bump max A to 20,000
Browse files Browse the repository at this point in the history
The current max in the pool implementation contract is 10**6: https://github.com/curvefi/stableswap-ng/blob/fd54b9a1a110d0e2e4f962583761d9e236b70967/contracts/main/CurveStableSwapNG.vy#L177

I propose we bump to 20,000 to allow for more concentrated pools from the pool creation component
  • Loading branch information
bout3fiddy authored Jan 25, 2025
1 parent 49dc83f commit 1453891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/main/src/dex/components/PageCreatePool/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export const STABLESWAP_MIN_MAX_PARAMETERS = (swapFee: number) => ({
},
a: {
min: 1,
max: 5000,
max: 20000,
},
maExpTime: {
min: 60,
Expand Down

0 comments on commit 1453891

Please sign in to comment.