-
Notifications
You must be signed in to change notification settings - Fork 243
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
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
5 Skipped Deployments
|
"../../proto/publisher_update.proto", | ||
]; | ||
|
||
prost_build::compile_protos(&proto_files, &["../../proto"])?; |
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.
Nice. A previous colleague wanted to use protox to avoid the protoc dependency, but the latter is readily available anywhere that matters.
PriceUpdateV1 price_update_v1 = 4; | ||
FundingRateUpdateV1 funding_rate_update_v1 = 5; |
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.
Assuming we'll be able to put future message types here compatibly.
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?
Was able to generate types successfully.