Skip to content

Update Pools for delayed collections #197

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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