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
# this will only give validation error tx1 = { "from": wallet.address, "to": "0x0545640A0EcD6FB6ae94766811F30dCDA4746DFC", "value": 1, "gas": 100_000, "gasPrice": web3.eth.gas_price, } # correct way tx2 = { "from": wallet.address, "to": "0x0545640A0EcD6FB6ae94766811F30dCDA4746DFC", "value": 1, "gas": 100_000, "gasPrice": web3.eth.gas_price, "chainId": web3.eth.chain_id, "data": "0x", }
When attempting to pass tx1 to the sign_transaction method it should trow IncorrectValues or similar error saying data and chainId is missing.
sign_transaction
IncorrectValues
data
chainId
The text was updated successfully, but these errors were encountered:
Aviksaikat
No branches or pull requests
Summary
When attempting to pass tx1 to the
sign_transaction
method it should trowIncorrectValues
or similar error sayingdata
andchainId
is missing.The text was updated successfully, but these errors were encountered: