We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I use wallet.mint_nft, the return value tells me 'zksync_sdk.transport.ResponseError: Response error with code 202 Eth signature is incorrect’
I have used the web3.py of 5.2x and the web3.py of 6.x both prompt the same error. What am I doing wrong? code show as below:
async def mint(): tx = await wallet.mint_nft(content_hash,address, "ETH") return tx loop = asyncio.new_event_loop() asyncio.set_event_loop(loop) task = loop.create_task(mint()) loop.run_until_complete(task) mint_tx = task.result()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I use wallet.mint_nft, the return value tells me 'zksync_sdk.transport.ResponseError: Response error with code 202
Eth signature is incorrect’
I have used the web3.py of 5.2x and the web3.py of 6.x both prompt the same error.
What am I doing wrong?
code show as below:
The text was updated successfully, but these errors were encountered: