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
It is desirable to decrease the number of external dependencies in order to simplify the code and increase wasm compatibility.
wasm
When compiling ethane to wasm, the wasm binary imports C-functions from "env", which are not supported yet, see this issue.
ethane
"env"
ethereum-types
funty
logging
thiserror
hex
byteorder
tiny-keccak
ureq
http
reqwest
feature = ["blocking"]
The text was updated successfully, but these errors were encountered:
PopcornPaws
Successfully merging a pull request may close this issue.
Description
It is desirable to decrease the number of external dependencies in order to simplify the code and increase
wasm
compatibility.Underlying issue
When compiling
ethane
towasm
, thewasm
binary imports C-functions from"env"
, which are not supported yet, see this issue.Plan
ethereum-types
funty
logging
thiserror
hex
byteorder
tiny-keccak
everywhere (it's more lightweight)ureq
andhttp
byreqwest
withfeature = ["blocking"]
for blocking http requests.The text was updated successfully, but these errors were encountered: