From ecbe100936b677934b9e585e5a6d20e333d81c22 Mon Sep 17 00:00:00 2001 From: Phu Ngo <12547020+NgoKimPhu@users.noreply.github.com> Date: Sun, 20 Oct 2024 18:56:29 +0700 Subject: [PATCH] feat: support koi-cl 5000 fee tier --- constants/constants.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/constants/constants.go b/constants/constants.go index 920a3c4..9bdc8a4 100644 --- a/constants/constants.go +++ b/constants/constants.go @@ -33,6 +33,7 @@ const ( Fee450 FeeAmount = 450 Fee750 FeeAmount = 750 Fee2500 FeeAmount = 2500 + Fee5000 FeeAmount = 5000 FeeMax FeeAmount = 1000000 ) @@ -51,6 +52,7 @@ var TickSpacings = map[FeeAmount]int{ Fee750: 15, FeeMedium: 60, Fee2500: 60, + Fee5000: 100, FeeHigh: 200, }