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

Learn Blockchain, Solidity, and Full Stack Web3 Development with Javascript

Results 125 full-blockchain-solidity-course-js issues
Sort by recently updated
recently updated
newest added

### Lesson Lesson 7 ### Could you please leave a link to the timestamp in the video where this error occurs? (You can right click a video and "copy video...

video-bug

``` Error: missing argument: passed to contract (count=1, expectedCount=2, code=MISSING_ARGUMENT, version=contracts/5.7.0) ``` this is my error message that i get when i try to write a test as an exercise....

Please Ubuntu brought this for me ```Error code: Wsl/Service/CreateInstance/CreateVm/0x800700e1``` Please what should I do

Hi @PatrickAlphaC I'm facing a blockage so any help will be appreciated: @nomiclabs/hardhat-ethers is an essential peer dependency to hardhat-deploy-ethers but that will prevent me from installing @nomicfoundation/chai-matchers due to...

### Lesson Lesson 9 ### Could you please leave a link to the timestamp in the video where this error occurs? (You can right click a video and "copy video...

code-bug

### Lesson Lesson 5 ### Could you please leave a link to the timestamp in the video where this error occurs? (You can right click a video and "copy video...

video-bug

If using **ethers v6**,some changes are needed. Firstly, in **ethers v6**, getBalance function need use provider, Change: ```solidity const winnerStartingBalance = await accounts[0].getBalance() ```` To: ```solidity const winnerStartingBalance = await...

### Lesson Lesson 5 ### Could you please leave a link to the timestamp in the video where this error occurs? (You can right click a video and "copy video...

video-bug

My code is ``` const ethers = require("ethers"); const fs = require("fs-extra"); async function main() { const provider = new ethers.JsonRpcProvider("http://127.0.0.1:7545"); const wallet = new ethers.Wallet( "0x599abf72bfd352de8cbf0d4bed61a061aa9e8de956b283642aa8e1f75b33766f", provider ); const...