-
Notifications
You must be signed in to change notification settings - Fork 79
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
Token Manager Install Catch-22 #295
Comments
An alternative to allowing users to deploy the application and initialize separately would be to provide a script option in the install command that would run some application-specific code inbetween the contract deploy and the application initialization. |
I'm wondering what the advantage here would be as opposed to scripting the cli itself? |
Yeah, separating it out is a better idea. Daniel suggested we just modify the install command with an option that prevents initialization. |
Looks like this is already possible with the Installing a TokenManager on rinkeby:
otherwise, if it goes to a vote first, you need to find the proxy address by doing
Example:
|
🎉 this is great to see!
Could this be highlighted with |
Exactly! I was thinking something like |
Opened #340 to allow checking apps without permissions |
from @lkngtn:
If you setup a local RPC instance and wish to deploy a new token manager into a DAO there is a catch-22. The token manager cannot be initialized unless there is a deployed minime contract with the token manager’s address set as its controller and you cannot deploy the token manager (and get its address) without initializing. 🤷♂️
Allowing the user to deploy applications and then initialize them with a separate command would resolve this issue.
The text was updated successfully, but these errors were encountered: