-
Notifications
You must be signed in to change notification settings - Fork 110
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
Conversation
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.
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!
} | ||
} | ||
|
||
#[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(); |
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.
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)
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.
Correct
The old resolver adds the quickcheck feature on the pythnet-sdk dependency for non-dev builds as well which leads to compile errors.
Size changes:
|
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; |
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.
I think MESSAGE_SIZE and DISCRIMINATOR could be constants in the trait PythOracleSerialize
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.
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.
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.