From 00c58aecfb30fb606e093d267edb978ebdbd540b Mon Sep 17 00:00:00 2001 From: matias Date: Tue, 24 Dec 2024 11:17:15 -0500 Subject: [PATCH] updated fee rate threshold to 0 --- dexs/orca/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dexs/orca/index.ts b/dexs/orca/index.ts index 3551b2b0ab..fa01d6bfab 100644 --- a/dexs/orca/index.ts +++ b/dexs/orca/index.ts @@ -4,7 +4,7 @@ import { httpGet } from '../../utils/fetchURL'; const statsApiEndpoint = "https://stats-api.mainnet.orca.so/api/whirlpools"; const eclipseStatsApiEndpoint = "https://stats-api-eclipse.mainnet.orca.so/api/whirlpools"; const FEE_RATE_DENOMINATOR = 1_000_000; -const FEE_RATE_THRESHOLD = 0.0016; // Threshold for when a pool's LPs are charged a protocol fee +const FEE_RATE_THRESHOLD = 0; // const PROTOCOL_FEE_RATE = .12; // 87% of fee goes to LPs, 12% to the protocol, 1% to the orca climat fund interface WhirlpoolReward {