Lesson 4: Web3.py Simple Storage - when i run "python deploy.py. #1065
-
|
when i run "python deploy.py in the terminal I get this message from solcx import compile_standard
with open("./SimpleStorage.sol", "r") as file:
simple_storage_file = file.read()
# Compile Our Solidity
compiled_sol = compile_standard(
{
"language": "solidity",
"sources": {"SimpleStorage.sol": {"content": simple_storage_file}},
"settings": {
"outputSelection": {
"*": {"*": ["abi", "metadata", "evm.bytecode", "ebm.sourceMap"]}
}
},
},
solc_version="0.6.0",
)
print(compiled_sol)` any help please |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Please check out the chronological-issues-from-video.md for lesson 4 |
Beta Was this translation helpful? Give feedback.
-
|
Hello @Tundekuzco Solidity must be upper case:
Also:
|
Beta Was this translation helpful? Give feedback.
Hello @Tundekuzco
Here:
"language": "solidity",Solidity must be upper case:
"language": "Solidity",Also: