You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 17, 2024. It is now read-only.
The error you encountered is due to a change in the Ethers.js library. Let’s address this step by step:
The function deployed() has been deprecated and is no longer available.
Instead, you should use waitForDeployment().
Corrected Code:
Replace await simpleStorage.deployed(); with await simpleStorage.waitForDeployment();.
This change should resolve the issue.
Hope this helps someone!
The text was updated successfully, but these errors were encountered: