Hi, having issues creating a wallet following the python tutorial, my code so far:
from web3 import Account, Web3, HTTPProvider
from zksync_sdk import ZkSyncProviderV01, HttpJsonRPCTransport, network, ZkSync, EthereumProvider, Wallet, ZkSyncSigner, EthereumSignerWeb3, ZkSyncLibrary
library = ZkSyncLibrary()
provider = ZkSyncProviderV01(provider=HttpJsonRPCTransport(network=network.rinkeby))
account = Account.from_key("XXX")
ethereum_signer = EthereumSignerWeb3(account=account)
contracts = await provider.get_contract_address()
w3 = Web3(HTTPProvider(endpoint_uri="https://rinkeby.infura.io/v3/XXX" ))
zksync = ZkSync(account=account, web3=w3,
zksync_contract_address=contracts.main_contract)
ethereum_provider = EthereumProvider(w3, zksync)
signer = ZkSyncSigner.from_account(account, library, network.rinkeby.chain_id)
wallet = Wallet(ethereum_provider=ethereum_provider, zk_signer=signer,
eth_signer=ethereum_signer, provider=provider)
getting this error:
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!
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!