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

feat(contract-manager) Fix update Price script #2370

Merged
merged 1 commit into from
Feb 16, 2025
Merged
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
25 changes: 23 additions & 2 deletions contract_manager/scripts/update_all_pricefeeds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ const parser = yargs(hideBin(process.argv))
type: "string",
desc: "Hermes endpoint to use, defaults to https://hermes.pyth.network",
},
encoding: {
type: "string",
desc: "Encoding to use for the price feeds (hex or base64), defaults to hex",
choices: ["hex", "base64"],
default: "hex",
},
"chunk-size": {
type: "number",
desc: "Chunk size to use for the price feeds, defaults to 150",
default: 150,
},
});

// This script is intended to update all pricefeeds after we deploy pyth pricefeeds contract.
Expand All @@ -32,6 +43,7 @@ async function main() {
);
const contract = DefaultStore.contracts[argv.contract];
const privateKey = toPrivateKey(argv["private-key"]);
const encoding = argv.encoding || "hex";

priceFeedsMetadata = await client.getPriceFeeds();

Expand All @@ -40,8 +52,13 @@ async function main() {

// We can adjust the chunk size based on the chain. Don't exceed 150 for now.
// TODO: Add a check for the chain's block gas limit and adjust the chunk size accordingly.
const chunkSize = 150;
const chunkSize = argv.chunkSize;
for (let i = 0; i < priceFeedIds.length; i += chunkSize) {
console.log(
`Processing chunk ${i / chunkSize + 1} of ${Math.ceil(
priceFeedIds.length / chunkSize
)}`
);
const chunk = priceFeedIds.slice(i, i + chunkSize);
console.log(`length: ${chunk.length}`);
const updates = await client.getLatestPriceUpdates(chunk, {
Expand All @@ -50,7 +67,11 @@ async function main() {
console.log(
await contract.executeUpdatePriceFeed(
privateKey,
updates.binary.data.map((update) => Buffer.from(update, "hex"))
updates.binary.data.map((update) =>
encoding === "hex"
? Buffer.from(update, "hex")
: Buffer.from(update, "base64")
)
)
);
}
Expand Down
Loading