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

Use message structures defined in pythnet sdk #377

Merged
merged 4 commits into from
Jun 13, 2023

Conversation

m30m
Copy link
Contributor

@m30m m30m commented Jun 12, 2023

Since the custom serialization implementations are solana specific and mainly for reducing the binary size, they are kept in this package via a custom trait.
Deserialization functions were removed since they were not used and the default serde provided by pythnet sdk should work identically. Serialization tests are now repurposed to test our custom serialization and the general deserialization lead to the same original structure.

m30m added 2 commits June 12, 2023 10:43
Since the custom serialization implementations are solana specific and
mainly for reducing the binary size, they are kept in this package via
a custom trait.
Deserialization functions were removed since they were not used and
the default serde provided by pythnet sdk should work identically.
Serialization tests are now repurposed to test our custom serialization
and the general deserialization lead to the same original structure.
jayantk
jayantk previously approved these changes Jun 12, 2023
Copy link
Contributor

@jayantk jayantk left a comment

Choose a reason for hiding this comment

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

nice!

}
}

#[quickcheck]
fn test_twap_message_roundtrip(input: TwapMessage) -> bool {
let reconstructed = TwapMessage::try_from_bytes(&input.to_bytes());
let reconstructed = from_slice::<BigEndian, Message>(&input.to_bytes()).unwrap();
Copy link
Contributor

Choose a reason for hiding this comment

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

just to be clear about this: If the message struct changes (e.g., we add a field in the SDK), and then we upgrade the dependency here, this test will fail because the generator for the message will be upgraded, but to_bytes() will not be. (I think that is a good thing, but I want to make sure that is what will hapeen)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Correct

The old resolver adds the quickcheck feature on the pythnet-sdk
dependency for non-dev builds as well which leads to compile errors.
@m30m
Copy link
Contributor Author

m30m commented Jun 12, 2023

Size changes:

  • pythnet: from 86728 to 86776 < 88429
  • mainnet: from 81056 to 81056 < 81760

pub fn to_bytes(self) -> [u8; Self::MESSAGE_SIZE] {
let mut bytes = [0u8; Self::MESSAGE_SIZE];
fn to_bytes(self) -> Vec<u8> {
const MESSAGE_SIZE: usize = 1 + 32 + 16 + 16 + 8 + 4 + 8 + 8 + 8;
Copy link
Contributor

Choose a reason for hiding this comment

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

I think MESSAGE_SIZE and DISCRIMINATOR could be constants in the trait PythOracleSerialize

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I discussed this with Ali, we were thinking of moving the DISCRIMINATOR serialization part to the Message enum and implement to_bytes for it as well as the next step. This would lead to PythOracleSerialize becoming more abstract and not having a fixed discriminator/message_size. That's why we kept it like this.

guibescos
guibescos previously approved these changes Jun 12, 2023
ali-bahjati
ali-bahjati previously approved these changes Jun 12, 2023
@m30m m30m dismissed stale reviews from ali-bahjati and guibescos via ce44ef5 June 12, 2023 17:41
@m30m m30m merged commit 270d24d into main Jun 13, 2023
@m30m m30m deleted the use-pythnet-sdk-message-structs branch June 13, 2023 07:03
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.

4 participants