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

fix(proto): Fixed types encoding #38

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

Conversation

FloppyDisck
Copy link
Contributor

There was an assumption that serde was correlated with proto encoding. The tests passed since they verified that serde serialization worked which was true. This new update adds proto encoding testing along with two major changes.

  1. All types in abstract-any were moved from being just T to Any<T>. The reason for this is that proto has to support for adding custom generic encoding/decoding techniques, making generating this very hard to do. This could be reserved for a future update, but for current requirements its not needed.
  2. Added GenericData type. When dealing with a response that may have an array of different types, for example QueryAccountsResponse<BaseAccount<_>> inside the Auth module doesn't work because it can also contain ModuleAccount<_> and IcaAccount<_>, replacing this with QueryAccountsResponse<GenericData> and validating each Any::type_url to determine what to decode into.

@FloppyDisck
Copy link
Contributor Author

@aelesbao The lints seem to be outdated. Its not detecting the latest clippy lints.

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