Skip to content
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

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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
69 changes: 45 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 } 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,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;
}
Comment on lines +696 to +701
Copy link
Contributor

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?

Copy link
Contributor

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.

}

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
Expand Down Expand Up @@ -738,7 +773,7 @@ export class PythStakingClient {
return {
advanceDelegationRecordInstructions,
mergePositionsInstruction,
publishers,
lowestEpoch,
Comment on lines 773 to +776
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 +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),
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
9 changes: 9 additions & 0 deletions governance/pyth_staking_sdk/src/utils/bigint.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export const bigintMax = (a: bigint | undefined, b: bigint | undefined) => {
if (a === undefined) {
return b;
}
if (b === undefined) {
return a;
}
return a > b ? a : b;
};
Loading