MultiSig Plugin in Modular Account #865
-
Hey, I am creating a Modular Account through Alchemy AA SDK. After the creation of Modular account I want to extend that account with installing multiSig pulugin in it. But I'm getting a Error :- |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Same Here ,also can we get a reply over here in this thread, |
Beta Was this translation helpful? Give feedback.
-
Hey @HatimPatwa @AbhishekCDN! Just want to clarify - are you trying to use the Multi-owner plugin or the Muli-sig plugin? Multiowner will allow for full equal control of the account for multiple owners, where as multi-sig will add a In the example you shared @AbhishekCDN, it looks like you are trying to add full owner control (with the 1n threshold). The easier way to do this would be to use the Multiowner plugin which is installed in Modular Account by default. This guide walks through managing ownership. If alternatively, you do want to use multi-sig, I would recommend you use the multi-sig account client documented here. Let me know which functionality you are looking for and I'll provide the easiest solution for you. |
Beta Was this translation helpful? Give feedback.
-
@AbhishekCDN @HatimPatwa Thanks for your patience! For context, this use case is not currently easily supported with the SDK. We are now working on multiple improvements to improve this workflow in the next version of the SDK! Recommended flow today Problem Solution for extending Modular Account AFTER deployment
|
Beta Was this translation helpful? Give feedback.
-
@avarobinson Thanks for the solution. Will try to implement this and LYK. |
Beta Was this translation helpful? Give feedback.
@AbhishekCDN @HatimPatwa Thanks for your patience! For context, this use case is not currently easily supported with the SDK. We are now working on multiple improvements to improve this workflow in the next version of the SDK!
Recommended flow today
Rather than switch ownership post creation, use
createModularAccountAlchemyClient
OR thecreateMultisigAccountAlchemyClient
on account creation depending on if you want multi-owner or multi-sig ownership respectively.Problem
In order to switch from multi-owner (installed in Modular Account by default) to multi-sig, you will need to batch call an uninstall of the multi-owner plugin and an install of the multi-sig plugin. It is required to batc…