We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Int256
Wasn't sure whether to comment on #48 or not. Do you have any suggestions on how to handle Clickhouse's Int256 in Rust?
The text was updated successfully, but these errors were encountered:
@loyd There's convenient U256 and I256 here btw.
Sorry, something went wrong.
These wrappers are convenient, but ethers_core is much bigger than just numeric types.
ethers_core
@loyd You're right, it is much bigger. If not integrate these types into this lib, any advise on how to use outside of the lib?
You can implement Serialize and Deserialize (either by creating a custom wrapper type or using serde(with) attribute) in similar way as U256 in #48.
Serialize
Deserialize
serde(with)
U256
No branches or pull requests
Wasn't sure whether to comment on #48 or not. Do you have any suggestions on how to handle Clickhouse's
Int256
in Rust?The text was updated successfully, but these errors were encountered: