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
The function eth_account.encode_structured_data() is deprecated in favour of eth_account.messages.encode_typed_data().
eth_account.encode_structured_data()
eth_account.messages.encode_typed_data()
The UR SDK is still using encode_structured_data() in RouterCodec.create_permit2_signable_message and thus must be updated with encode_typed_data().
encode_structured_data()
RouterCodec.create_permit2_signable_message
encode_typed_data()
As a source of inspiration, one can look how it was used in the UniswapX SDK.
The text was updated successfully, but these errors were encountered:
#49 - Replace deprecated eth_account function
ca2ce17
Fixed with #65
Sorry, something went wrong.
No branches or pull requests
The function
eth_account.encode_structured_data()
is deprecated in favour ofeth_account.messages.encode_typed_data()
.The UR SDK is still using
encode_structured_data()
inRouterCodec.create_permit2_signable_message
and thus must be updated withencode_typed_data()
.As a source of inspiration, one can look how it was used in the UniswapX SDK.
The text was updated successfully, but these errors were encountered: