Skip to content

Commit

Permalink
getFilEarned: add voyager transfers (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangruber authored Sep 17, 2024
1 parent cbeb37f commit e90a4df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/getFilEarned.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const historicTransfers = 68657304665804877993n // 11/22/2023
+ 120970000000000000000n // 05/27/2024
+ 124380000000000000000n // 06/03/2024
+ 188030530100000000000n // 06/11/2024
const voyagerTransfers = 1359540000000000000000n // 09/17/2024

type StatsResponse = {
day: string;
Expand Down Expand Up @@ -85,5 +86,5 @@ export const getFilEarned = async (): Promise<bigint> => {
getContractBalanceHeld(),
getTransfersFromStats()
])
return historicTransfers + transfersFromStats + balanceHeld
return historicTransfers + voyagerTransfers + transfersFromStats + balanceHeld
}

0 comments on commit e90a4df

Please sign in to comment.