full-blockchain-solidity-course-py icon indicating copy to clipboard operation
full-blockchain-solidity-course-py copied to clipboard

Ultimate Solidity, Blockchain, and Smart Contract - Beginner to Expert Full Course | Python Edition

Results 149 full-blockchain-solidity-course-py issues
Sort by recently updated
recently updated
newest added

Traceback (most recent call last): File "C:\Users\3\demos\web3_py_simple_storage\deploy.py", line 6, in install_solc(_solc_version) File "C:\Users\3\AppData\Local\Programs\Python\Python39\lib\site-packages\solcx\install.py", line 466, in install_solc raise exc File "C:\Users\3\AppData\Local\Programs\Python\Python39\lib\site-packages\solcx\install.py", line 459, in install_solc _validate_installation(version, solcx_binary_path) File "C:\Users\3\AppData\Local\Programs\Python\Python39\lib\site-packages\solcx\install.py", line...

`install_solc("0.6.0")` gives the following error: `ValueError: Installation of solidity is not supported on your platform (win32). Supported platforms are: darwin, linux` Anyone knows how to solve this issue?

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...

Hi, I followed the last part of this course . [https://github.com/smartcontractkit/full-blockchain-solidity-course-py#bonus-lesson-13-full-stack-defi](https://github.com/smartcontractkit/full-blockchain-solidity-course-py#bonus-lesson-13-full-stack-defi) **_I got stuck on step to show tokenBalance in WalletBalance.tsx file as the following picture_** I try to fix...

Hey, having a problem with solc-x version "solc 0.6.0 has not been installed" from lesson 4. I already changed the lines, my code is the exact same from the github...

im at the 3:45:00 point on the solidity guide vid and i have installed solc, and solcx and my vscode is still saying that there is no module named solcx...

Hi I have installed py-solc-x using both git clone and npm and both ways show the error that no command is found and no module is found, even when I...

I am going through the tutorial (see below) and when I run it, I get the error: (solidity) [hdouglas@localhost web3PySimpleStorage]$ python deploy.py which: no solc in (/home/hdouglas/.local/share/solana/install/active_release/bin:/home/hdouglas/.local/share/solana/install/active_release/bin:/home/hdouglas/.local/share/solana/install/active_release/bin:/home/hdouglas/.local/share/solana/install/active_release/bin:/home/hdouglas/.nvm/versions/node/v14.18.1/bin:/home/hdouglas/.local/share/solana/install/active_release/bin:/home/hdouglas/anaconda3/envs/solidity/bin:/home/hdouglas/anaconda3/condabin:/usr/share/Modules/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/home/hdouglas/.local/bin:/home/hdouglas/bin:/home/hdouglas/.local/bin:/home/hdouglas/bin) 0 I used...

I am following along at 6:02 of the lesson. **Expected Behavior** I add mainnet-fork-dev as a network and run `brownie run scripts/deploy.py --network mainnet-fork-dev`. I am using placeholders instead of...

this is some part of fundme.sol file ` struct People { uint256 favoriteNumber; string name; } People[] public people; ` On the python script, I want to retrieve all people...