Skip to content

Commit

Permalink
fix unitbot
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Jul 26, 2023
1 parent b1c136b commit 6a80f43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fees/unibot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const fetch = async (timestamp: number): Promise<FetchResultFees> => {
const ethPrice = (await getPrices([ethAddress], todaysTimestamp))[ethAddress].price;
const amountUSD = amount * ethPrice;
// ref https://dune.com/queries/2621049/4349967
const dailyFees = ((amountUSD * 0.01) * 0.4);
const dailyFees = (amountUSD * 0.01);
const dailyRevenue = dailyFees;
await sql.end({ timeout: 3 })
return {
Expand Down

0 comments on commit 6a80f43

Please sign in to comment.