-
Couldn't load subscription status.
- Fork 302
fix: lowest epoch calc #2018
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
fix: lowest epoch calc #2018
Changes from 5 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,6 +49,7 @@ import { | |
| type VoterWeightAction, | ||
| type VestingSchedule, | ||
| } from "./types"; | ||
| import { bigintMax } from "./utils/bigint"; | ||
| import { convertBigIntToBN, convertBNToBigInt } from "./utils/bn"; | ||
| import { epochToDate, getCurrentEpoch } from "./utils/clock"; | ||
| import { extractPublisherData } from "./utils/pool"; | ||
|
|
@@ -680,19 +681,53 @@ export class PythStakingClient { | |
| stakeAccountPositions, | ||
| ); | ||
| const allPublishers = extractPublisherData(poolData); | ||
| const publishers = allPublishers.filter(({ pubkey }) => | ||
| stakeAccountPositionsData.data.positions.some( | ||
| ({ targetWithParameters }) => | ||
| targetWithParameters.integrityPool?.publisher.equals(pubkey), | ||
| ), | ||
| ); | ||
| const publishers = allPublishers | ||
| .map((publisher) => { | ||
| const positionsWithPublisher = | ||
| stakeAccountPositionsData.data.positions.filter( | ||
| ({ targetWithParameters }) => | ||
| targetWithParameters.integrityPool?.publisher.equals( | ||
| publisher.pubkey, | ||
| ), | ||
| ); | ||
|
|
||
| let lowestEpoch; | ||
| for (const position of positionsWithPublisher) { | ||
| if ( | ||
| lowestEpoch === undefined || | ||
| position.activationEpoch < lowestEpoch | ||
| ) { | ||
| lowestEpoch = position.activationEpoch; | ||
| } | ||
| } | ||
|
|
||
| return { | ||
| ...publisher, | ||
| lowestEpoch, | ||
| }; | ||
| }) | ||
| .filter(({ lowestEpoch }) => lowestEpoch !== undefined); | ||
|
|
||
| const delegationRecords = await Promise.all( | ||
| publishers.map(({ pubkey }) => | ||
| this.getDelegationRecord(stakeAccountPositions, pubkey), | ||
| ), | ||
| ); | ||
|
|
||
| let lowestEpoch: bigint | undefined; | ||
| for (const [index, publisher] of publishers.entries()) { | ||
| const maximum = bigintMax( | ||
| publisher.lowestEpoch, | ||
| delegationRecords[index]?.lastEpoch, | ||
| ); | ||
| if ( | ||
| lowestEpoch === undefined || | ||
| (maximum !== undefined && maximum < lowestEpoch) | ||
| ) { | ||
| lowestEpoch = maximum; | ||
| } | ||
| } | ||
|
|
||
| const currentEpoch = await getCurrentEpoch(this.connection); | ||
|
|
||
| // Filter out delegationRecord that are up to date | ||
|
|
@@ -738,7 +773,7 @@ export class PythStakingClient { | |
| return { | ||
| advanceDelegationRecordInstructions, | ||
| mergePositionsInstruction, | ||
| publishers, | ||
| lowestEpoch, | ||
|
Comment on lines
763
to
+766
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we have to refactor this function at some point, probably not worth doing rn. |
||
| }; | ||
| } | ||
|
|
||
|
|
@@ -776,26 +811,12 @@ export class PythStakingClient { | |
| totalRewards += BigInt("0x" + buffer.toString("hex")); | ||
| } | ||
|
|
||
| const delegationRecords = await Promise.all( | ||
| instructions.publishers.map(({ pubkey }) => | ||
| this.getDelegationRecord(stakeAccountPositions, pubkey), | ||
| ), | ||
| ); | ||
|
|
||
| let lowestEpoch: bigint | undefined; | ||
| for (const record of delegationRecords) { | ||
| if ( | ||
| record !== null && | ||
| (lowestEpoch === undefined || record.lastEpoch < lowestEpoch) | ||
| ) { | ||
| lowestEpoch = record.lastEpoch; | ||
| } | ||
| } | ||
|
|
||
| return { | ||
| totalRewards, | ||
| expiry: | ||
| lowestEpoch === undefined ? undefined : epochToDate(lowestEpoch + 52n), | ||
| instructions.lowestEpoch === undefined | ||
| ? undefined | ||
| : epochToDate(instructions.lowestEpoch + 53n), | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the 52 was wrong and should instead be 53, if my math isn't wrong. |
||
| }; | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we use bigintMax here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we have to use bigintMin. It might be worth making it a funciton since it'll be used in 2 different places.