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
contracts = await provider.get_contract_address()
^
SyntaxError: 'await' outside function
As far as I understand, the await line needs to be inside an async function, but I'm quite the python noob and didn't get it to work. Any help on how to get it running would be appreciated!
The text was updated successfully, but these errors were encountered:
Hello. Async functions must be called from async methods or executed as a task by the event loop. This is an example that might be helpful for you @lemons45:
Hi, having issues creating a wallet following the python tutorial, my code so far:
getting this error:
As far as I understand, the await line needs to be inside an async function, but I'm quite the python noob and didn't get it to work. Any help on how to get it running would be appreciated!
The text was updated successfully, but these errors were encountered: