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
hi ,
>>> import solcx >>> solcx.compile_source( ... "contract Foo { function bar() public { return; } }", ... output_values=["abi", "bin-runtime"], ... ... ) ``` works fine but ,
import solcx solcx.compile_source( ... "contract Foo { function bar() public { return; } }", ... output_values=["abi", "bytecode"], ... ... )
is not ok
The text was updated successfully, but these errors were encountered:
Available output_values are parsed from the solc help file. For solc v0.8.11, the line is:
--combined-json abi,asm,ast,bin,bin-runtime,devdoc,function-debug,function-debug-runtime,generated-sources,generated-sources-runtime,hashes,metadata,opcodes,srcmap,srcmap-runtime,storage-layout,userdoc
No bytcode there - maybe you want bin?
bytcode
bin
Sorry, something went wrong.
No branches or pull requests
hi ,
The text was updated successfully, but these errors were encountered: