Skip to content

Commit

Permalink
Merge pull request DefiLlama#1551 from equilibre-finance/keller-cl
Browse files Browse the repository at this point in the history
Updated V3 Fees (Bad Calculation)
  • Loading branch information
dtmkeng authored Jun 6, 2024
2 parents 3dc7071 + 2fec461 commit b1a4d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fees/keller-cl/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const getFees = async (fetchOptions: FetchOptions): Promise<FetchResultFees> =>
const feesPercentage = (await fetchOptions.api.multiCall({
abi: 'function fee() view returns (uint24)',
calls: pools,
})).map((fee: any) => fee / 10000);
})).map((fee: any) => fee / 1000000);
for (let i = 0; i < pools.length; i++) {
const pool = pools[i];
// Protocol Fees
Expand Down

0 comments on commit b1a4d18

Please sign in to comment.