Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/mappings/staking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -397,19 +397,21 @@ export function handleAllocationCollected(event: AllocationCollected): void {
let taxedFees = event.params.tokens.minus(event.params.rebateFees.plus(event.params.curationFees))

// Update epoch
let epoch = createOrLoadEpoch(event.block.number)
let epoch = createOrLoadEpoch(allocation.closedAtBlockNumber? allocation.closedAtBlockNumber : event.block.number)
if (allocation.status == 'Closed'){
epoch.queryFeesCollected = epoch.queryFeesCollected.plus(allocation.queryFeesCollected)
}
epoch.totalQueryFees = epoch.totalQueryFees.plus(event.params.tokens)
epoch.taxedQueryFees = epoch.taxedQueryFees.plus(taxedFees)
epoch.queryFeesCollected = epoch.queryFeesCollected.plus(event.params.rebateFees)
epoch.curatorQueryFees = epoch.curatorQueryFees.plus(event.params.curationFees)
epoch.save()

// update pool
let pool = createOrLoadPool(event.params.epoch)
let pool = createOrLoadPool(epoch.id)
// ONLY if allocation is closed. Otherwise it gets collected into an allocation, and it will
// get added to the pool where the allocation gets closed
if (allocation.status == 'Closed') {
pool.totalQueryFees = pool.totalQueryFees.plus(event.params.rebateFees)
pool.totalQueryFees = pool.totalQueryFees.plus(allocation.queryFeesCollected)
}
// Curator rewards in pool is not stored in the contract, so we take the actual value of it
// happening. Every time an allocation is collected, curator rewards get transferred into
Expand Down