-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
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
Add message endpoints requests to safe transaction client #733
Conversation
Agree |
10bc22d
to
4798942
Compare
Create safe message on transaction service for provided Safe address | ||
|
||
:param safe_address: | ||
:param message: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Explain that if message is a str
it will be encoded using EIP191, and if it's a dictionary it will be encoded using EIP712
) | ||
return True | ||
|
||
def get_message(self, safe_message_hash: bytes) -> Dict[str, Any]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move this method before def get_messages
so this file is more organized
48c2f46
to
8c651cf
Compare
8c651cf
to
20d2d9a
Compare
Closes #732