TheoremaLC

Results 2 issues of TheoremaLC

In the web3 section of Patrick Collin's Solidity course I got stuck because of this annoying and hard to explain error when compiling the deploy.py file. Here's the code (the...

Given this code: ```Python from solcx import compile_standard, install_solc import json install_solc("0.6.0") with open("./SimpleStorage.sol", "r") as file: simple_storage_file = file.read() # compile our solidity install_solc("0.6.0") compiled_sol = compile_standard( { "language":...