Browse Source

doc: dao add comments from dev meet

darkfi 2 years ago
parent
commit
28951fd4d1
1 changed files with 5 additions and 0 deletions
  1. 5 0
      doc/src/arch/dao.md

+ 5 - 0
doc/src/arch/dao.md

@@ -370,11 +370,14 @@ DAO params:
 
 
 * Voting period (currently called duration) should be moved from proposals to
 * Voting period (currently called duration) should be moved from proposals to
   DAO params.
   DAO params.
+    * upgrayedd: we should just have minimum allowed period in the DAO, but keep
+      this param in the proposal.
 * Window (currently set at 4 hours of blocks) should be customizable. We need a
 * Window (currently set at 4 hours of blocks) should be customizable. We need a
   terminology for the unit of time. Maybe `time_units`.
   terminology for the unit of time. Maybe `time_units`.
     * This should be switched from block index to using timestamps.
     * This should be switched from block index to using timestamps.
       See the quoted paragraph in the OpenZeppelin section above for the
       See the quoted paragraph in the OpenZeppelin section above for the
       reasoning.
       reasoning.
+    * upgrayedd: stick with block index.
 * Early execution bool flag. If true, then passed proposals can be `exec()`uted
 * Early execution bool flag. If true, then passed proposals can be `exec()`uted
   asap, otherwise the entire voting period must pass.
   asap, otherwise the entire voting period must pass.
 
 
@@ -392,6 +395,8 @@ We should introduce a new key:
   proposals.
   proposals.
     * OZ does this with a canceller role that has the ability to cancel
     * OZ does this with a canceller role that has the ability to cancel
       proposals.
       proposals.
+    * In the future allow multiple keys for this so you can see who makes
+      proposals.
 
 
 Optional: many DAOs these days implement Abstain, which increases the quorum
 Optional: many DAOs these days implement Abstain, which increases the quorum
 without voting yes. This is for when you want to weak support a measure,
 without voting yes. This is for when you want to weak support a measure,