full-blockchain-solidity-course-js
full-blockchain-solidity-course-js copied to clipboard
Learn Blockchain, Solidity, and Full Stack Web3 Development with Javascript
### 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...
Lesson 6: getting error message, while scripting my own test for Smart Contract Function "addPerson"
``` 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...
### 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...
fix link typo
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...
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...