-
Notifications
You must be signed in to change notification settings - Fork 353
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
cw3-flex-multisig uses voting power from a snapshot of the block the proposal opened #160
Conversation
Hi, I'll review it now, so this may be asked in the code, but anyway, I have a couple questions:
What about addition of new members? Can they vote? |
I should probably add more code comments. The test covers both the new and deleted cases. In any case, use the voting power (or lack thereof) at the block height when the proposal was created. It doesn't snapshot per tx, but at the beginning of the block in which the proposal was created, which should be fine for any reasonable case |
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.
Seeing and thinking about the concept of snapshots, it occurred to me that all that logic could be implemented at the level of the group contract directly.
It would be more efficient (implemented once, and available for all clients of the group).
It would be enough to extend the query API to allow for a (optional) date / height parameter. If that parameter is not supplied, the most recent / updated value is returned.
What do you think?
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.
Looks good to me.
Probably my biggest concern would be for this functionality to be moved to the group contract entirely.
This is a good question. Below is my reasoning (I thought it was more efficient) I want to pull out the snapshot function in a simple module that can be imported and reused by various contracts. The question is implement in the receiver or in the producer If producer (group), the receiver (multisig) needs to inform the producer every time a proposal opens or closes, so it tracks needed changes. And the queries could not be raw queries (as it uses iterator to find relevant update). Thus making queries much more expensive that before this pr (raw query) or now (local state + raw query). It would however, remove the need for the external hook pattern, which would save gas on updates. With the hooks, you add N messages to every state change, but the queries are cheap. I guess it depends if we assume there are more state changes or more proposals/votes. |
Let's discuss this design. BTW, I wanted to make diff+snapshot design an easily importable module to reuse it. Whether that is using hooks, or stored in the producer is an open question. Let's discuss it a bit more, but my thought is.
|
Also, I think there will be more different cw4 implementations than composable cw3 ones (based on external groups), but I may be wrong. |
That can be done, and is independent of this question.
If implemented in producer, I'll do it independently of any receiver. The group contract can have a flag on creation (or even after creation, with an API call);
Yes. That, and centralization of impl would be the biggest advantages, as I see it.
I was supposing updates are relatively rare, and we would in general have more votes than voters's changes. |
Yes, exactly.
Sounds great. Let's do it. |
Thanks for the review and feedback on the architecture. You propose keeping a snapshot of all data, not just just those needed for open proposals? |
I like the idea of the enable snapshot flag on init |
Yes. Mostly for simplicity. Contract can even support setting an expiration height / time, i. e. "generate snapshots up until this block / date". |
Closes #141
Uses the preferred "complex" solution. We no longer close open proposals when the group changes, but handle it gracefully
Count all votes with state at beginning of voting period
cw3-flex-multisig
. When the member votes, the weight there overrides the current weight in the group.We do this with max 1 write per updated weight, only if this was the first time it has changed since the most recent proposal. -> O(diffs), regardless of how many proposals there are.
Future improvement: We currently iterate over all open proposals to find the latest start height. With a clever compound secondary index, we could do this with one read.
TODO: