-
Notifications
You must be signed in to change notification settings - Fork 10
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
Feat: locking, unlocking and withdrawal with walletconnect #82
Conversation
Branch preview✅ Deploy successful! https://feat_locking_with_wc--governance.review-react-br.5afe.dev |
ESLint Summary View Full Report
Report generated by eslint-plus-action |
@@ -57,7 +57,6 @@ export const createWithdrawTx = (chainId: string) => { | |||
to: CHAIN_SAFE_LOCKING_ADDRESS[chainId], | |||
data: safeLockingInterface.encodeFunctionData('withdraw', [0]), | |||
value: '0', | |||
operation: 0, |
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.
Why do we not need this anymore?
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.
We never needed it.
You cannot do a DELEGATE CALL through our safe apps communicator. So this value was always ignored anyways.
What this PR changes