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(pyth-lazer-protocol): Implement Protobuf files for Lazer Transactions #2557

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

darunrs
Copy link
Contributor

@darunrs darunrs commented Apr 4, 2025

Summary

Added proto files for the new transaction types Lazer will be supporting. Updated the Rust and JS sdks to generate types based on the new files.

Rationale

Lazer needs to support more types of input and be capable of changing its input schema as updates happen. Using a new format for input provides this flexibility. Using protobuf for message passing provides additional flexibility for updating schemas and also improves the message compression size.

How has this been tested?

  • Current tests cover my changes
  • Added new tests
  • Manually tested the code

Was able to generate types successfully.

Copy link

vercel bot commented Apr 4, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
proposals ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 4, 2025 5:27pm
5 Skipped Deployments
Name Status Preview Comments Updated (UTC)
api-reference ⬜️ Ignored (Inspect) Visit Preview Apr 4, 2025 5:27pm
component-library ⬜️ Ignored (Inspect) Visit Preview Apr 4, 2025 5:27pm
entropy-debugger ⬜️ Ignored (Inspect) Visit Preview Apr 4, 2025 5:27pm
insights ⬜️ Ignored (Inspect) Visit Preview Apr 4, 2025 5:27pm
staking ⬜️ Ignored (Inspect) Visit Preview Apr 4, 2025 5:27pm

"../../proto/publisher_update.proto",
];

prost_build::compile_protos(&proto_files, &["../../proto"])?;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice. A previous colleague wanted to use protox to avoid the protoc dependency, but the latter is readily available anywhere that matters.

Comment on lines 15 to 16
PriceUpdateV1 price_update_v1 = 4;
FundingRateUpdateV1 funding_rate_update_v1 = 5;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Assuming we'll be able to put future message types here compatibly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants