Skip to content

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

Merged
merged 7 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
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
59 changes: 35 additions & 24 deletions governance/pyth_staking_sdk/src/pyth-staking-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import {
type VoterWeightAction,
type VestingSchedule,
} from "./types";
import { bigintMax, bigintMin } from "./utils/bigint";
import { convertBigIntToBN, convertBNToBigInt } from "./utils/bn";
import { epochToDate, getCurrentEpoch } from "./utils/clock";
import { extractPublisherData } from "./utils/pool";
Expand Down Expand Up @@ -680,19 +681,43 @@ 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) {
lowestEpoch = bigintMin(position.activationEpoch, lowestEpoch);
}

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,
);
lowestEpoch = bigintMin(lowestEpoch, maximum);
}

const currentEpoch = await getCurrentEpoch(this.connection);

// Filter out delegationRecord that are up to date
Expand Down Expand Up @@ -738,7 +763,7 @@ export class PythStakingClient {
return {
advanceDelegationRecordInstructions,
mergePositionsInstruction,
publishers,
lowestEpoch,
Comment on lines 763 to +766
Copy link
Contributor

Choose a reason for hiding this comment

The 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.

};
}

Expand Down Expand Up @@ -776,26 +801,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),
Copy link
Contributor Author

@guibescos guibescos Oct 9, 2024

Choose a reason for hiding this comment

The 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.

};
}

Expand Down
19 changes: 19 additions & 0 deletions governance/pyth_staking_sdk/src/utils/bigint.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
export const bigintMax = (a: bigint | undefined, b: bigint | undefined) => {
if (a === undefined) {
return b;
}
if (b === undefined) {
return a;
}
return a > b ? a : b;
};

export const bigintMin = (a: bigint | undefined, b: bigint | undefined) => {
if (a === undefined) {
return b;
}
if (b === undefined) {
return a;
}
return a < b ? a : b;
};
Loading