Skip to content

Commit 45b2b4a

Browse files
authored
(tonco) fix fees percents (DefiLlama#3808)
1 parent dee2536 commit 45b2b4a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fees/tonco/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ const SWAPS_QUERY = (from: number, to: number) => `
3737
`
3838

3939
const fetch = async (options: FetchOptions): Promise<FetchResultV2> => {
40-
let protocolFeePerc = 0.2;
41-
let supplySideRevenuePerc = 0.8;
40+
let protocolFeePerc = 0.1;
41+
let supplySideRevenuePerc = 0.9;
4242
if (options.startTimestamp > 1752105600) { // Protocol Fee changed on 2025-07-10 from 10% of lp fees to 20% of lp fees
43-
protocolFeePerc = 0.1;
44-
supplySideRevenuePerc = 0.9;
43+
protocolFeePerc = 0.2;
44+
supplySideRevenuePerc = 0.8;
4545
}
4646
const swaps = await postURL(GRAPHQL_ENDPOINT, {
4747
query: SWAPS_QUERY(options.fromTimestamp * 1000, options.toTimestamp * 1000)

0 commit comments

Comments
 (0)