-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add eth proof generation utilities (#928)
* Add eth proof generation utilities * Code review fixes * Added tests and code improvements for custom deserializers * Add more tests for proof generator * Use ethereum_types instead of custom types where possible * Remove unused feature * Split test data into json files
- Loading branch information
Showing
12 changed files
with
569 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[package] | ||
name = "utilities" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
reqwest = { version = "0.11", features = ["blocking", "json"] } | ||
serde_json = "1.0.74" | ||
serde = { version = "1.0", features = ["derive"] } | ||
hex = { version="0.4" } | ||
cita_trie = "5.0.1" | ||
hasher = "0.1.4" | ||
rlp = "0.5.2" | ||
ethereum-types = "0.14" |
Oops, something went wrong.