-
Notifications
You must be signed in to change notification settings - Fork 929
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
Fixes for 1.0.0 #90
Fixes for 1.0.0 #90
Conversation
rmeissner
commented
Feb 22, 2019
- Implemented critical proposals from https://github.com/runtimeverification/verified-smart-contracts/blob/master/gnosis/GnosisSafe_RuntimeVerification.pdf
- Adjusted EIP-1271 interface
- Cleanup of naming
//); | ||
bytes32 public constant SAFE_TX_TYPEHASH = 0x14d461bc7412367e924637b363c7bf29b8f47e2f84869f4426e5633d8af47b20; | ||
bytes32 public constant SAFE_TX_TYPEHASH = 0xbb8310d486368db6bd6f849402fdd73ad53d316b5a4b2644ad6efe0f941286d8; |
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.
@Uxio0 this will require changes in the clients, so we need to add a way that the clients know which version to use for signing (maybe return the contract version with the estimates)
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.
Alternatively we could stick to dataGas (but imo this is a really bad name ... on the other side the user will not see it)
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.
I would prefer that clients query the GET /safes/{address}/
endpoint, I don't like how the estimate endpoint is growing. Currently masterCopy
, nonce
, threshold
and owners
are returned, I will add version
to that endpoint too. Would be ok for you @rmeissner?
* Fix SafeTransactionDataPartial import * fix documentation: wrong import (safe-global#87) * fix import Co-authored-by: Germán Martínez <germartinez@users.noreply.github.com> Co-authored-by: Parv Garg <parv3213@gmail.com>