-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path[BIP-6] Annual Agenda, Changes and Hard Synth Alpha - Governance Proposals - Bao Finance Governance.html
1300 lines (1084 loc) · 89.9 KB
/
[BIP-6] Annual Agenda, Changes and Hard Synth Alpha - Governance Proposals - Bao Finance Governance.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>[BIP-6] Annual Agenda, Changes and Hard Synth Alpha - Governance Proposals - Bao Finance Governance</title>
<meta name="description" content="This is the proposed final version of BIP-6 that was based on the concept outlined here: The Next Path for Bao (Annual Roadmap BIP)
The concept has been significantly changed to incorporate the overwhelming feedback of &hellip;">
<meta name="generator" content="Discourse 3.2.0.beta3-dev - https://github.com/discourse/discourse version d5e4b85e8229ffd75ee6b090b054ac936f7a65f5">
<link rel="icon" type="image/png" href="https://global.discourse-cdn.com/standard10/uploads/bao/optimized/1X/e5b41136e5065434af3e05e56ab564bc00407a29_2_32x32.png">
<link rel="apple-touch-icon" type="image/png" href="https://global.discourse-cdn.com/standard10/uploads/bao/optimized/1X/e5b41136e5065434af3e05e56ab564bc00407a29_2_180x180.png">
<meta name="theme-color" media="all" content="#111111">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=yes, viewport-fit=cover">
<link rel="canonical" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951/print" />
<link rel="search" type="application/opensearchdescription+xml" href="https://gov.bao.finance/opensearch.xml" title="Bao Finance Governance Search">
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/color_definitions_dark_1_1_1ccb5355bd053ebf52ea390fa63828c56d5cb1e3.css?__ws=gov.bao.finance" media="all" rel="stylesheet" class="light-scheme"/>
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/desktop_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="desktop" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/checklist_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="checklist" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-adplugin_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-adplugin" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-ai_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-ai" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-akismet_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-akismet" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-cakeday_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-cakeday" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-details_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-details" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-lazy-videos_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-lazy-videos" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-local-dates_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-local-dates" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-narrative-bot_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-narrative-bot" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-presence_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-presence" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/discourse-solved_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="discourse-solved" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/footnote_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="footnote" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/hosted-site_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="hosted-site" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/poll_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="poll" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/spoiler-alert_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="spoiler-alert" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/poll_desktop_18f105c5d1e64e4c2df62884530654f1b5af08b4.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="poll_desktop" />
<link href="https://sjc6.discourse-cdn.com/standard10/stylesheets/desktop_theme_1_fcb5a0e5d2051a8ee748d150c77d59c5d1a0a2f9.css?__ws=gov.bao.finance" media="all" rel="stylesheet" data-target="desktop_theme" data-theme-id="1" data-theme-name="default"/>
<link rel="alternate nofollow" type="application/rss+xml" title="RSS feed of '[BIP-6] Annual Agenda, Changes and Hard Synth Alpha'" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951.rss" />
<meta property="og:site_name" content="Bao Finance Governance" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:image" content="https://global.discourse-cdn.com/standard10/uploads/bao/optimized/1X/b697dfc0d57884ebe86c78de0f97244a2ddfa9cb_2_1024x368.png" />
<meta property="og:image" content="https://global.discourse-cdn.com/standard10/uploads/bao/optimized/1X/b697dfc0d57884ebe86c78de0f97244a2ddfa9cb_2_1024x368.png" />
<meta property="og:url" content="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951/print" />
<meta name="twitter:url" content="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951/print" />
<meta property="og:title" content="[BIP-6] Annual Agenda, Changes and Hard Synth Alpha" />
<meta name="twitter:title" content="[BIP-6] Annual Agenda, Changes and Hard Synth Alpha" />
<meta property="og:description" content="This is the proposed final version of BIP-6 that was based on the concept outlined here: The Next Path for Bao (Annual Roadmap BIP) The concept has been significantly changed to incorporate the overwhelming feedback of the community and multiple galaxies. Unless there are signifgant problems within this proposal, it will advance to a governance vote to be either approved or denied. Thank you to Baowolf, Rocky, Fabiaz, Vital, Chickn and other galaxy members who provided feedback, review and En..." />
<meta name="twitter:description" content="This is the proposed final version of BIP-6 that was based on the concept outlined here: The Next Path for Bao (Annual Roadmap BIP) The concept has been significantly changed to incorporate the overwhelming feedback of the community and multiple galaxies. Unless there are signifgant problems within this proposal, it will advance to a governance vote to be either approved or denied. Thank you to Baowolf, Rocky, Fabiaz, Vital, Chickn and other galaxy members who provided feedback, review and En..." />
<meta property="og:article:section" content="Governance Proposals" />
<meta property="og:article:section:color" content="0088CC" />
<meta name="twitter:label1" value="Reading time" />
<meta name="twitter:data1" value="9 mins 🕑" />
<meta name="twitter:label2" value="Likes" />
<meta name="twitter:data2" value="78 ❤" />
<meta property="article:published_time" content="2021-11-12T15:43:47+00:00" />
<meta property="og:ignore_canonical" content="true" />
</head>
<body class="crawler ">
<header>
<a href="/">
Bao Finance Governance
</a>
</header>
<div id="main-outlet" class="wrap" role="main">
<div id="topic-title">
<h1>
<a href="/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">[BIP-6] Annual Agenda, Changes and Hard Synth Alpha</a>
</h1>
<div class="topic-category" itemscope itemtype="http://schema.org/BreadcrumbList">
<span itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a href="https://gov.bao.finance/c/governance-proposals/5" class="badge-wrapper bullet" itemprop="item">
<span class='badge-category-bg' style='background-color: #0088CC'></span>
<span class='badge-category clear-badge'>
<span class='category-name' itemprop='name'>Governance Proposals</span>
</span>
</a>
<meta itemprop="position" content="1" />
</span>
</div>
</div>
<div itemscope itemtype='http://schema.org/DiscussionForumPosting'>
<meta itemprop='headline' content='[BIP-6] Annual Agenda, Changes and Hard Synth Alpha'>
<meta itemprop='articleSection' content='Governance Proposals'>
<meta itemprop='keywords' content=''>
<div itemprop='publisher' itemscope itemtype="http://schema.org/Organization">
<meta itemprop='name' content='Bao Finance Governance'>
<div itemprop='logo' itemscope itemtype="http://schema.org/ImageObject">
<meta itemprop='url' content='https://global.discourse-cdn.com/standard10/uploads/bao/original/1X/e5b41136e5065434af3e05e56ab564bc00407a29.png'>
</div>
</div>
<div id='post_1' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/TheBaoMan'><span itemprop='name'>TheBaoMan</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<link itemprop="image" href="https://global.discourse-cdn.com/standard10/uploads/bao/original/1X/b697dfc0d57884ebe86c78de0f97244a2ddfa9cb.png">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-12T15:43:47Z' class='post-time'>
November 12, 2021, 3:43pm
</time>
<meta itemprop='dateModified' content='2021-11-12T15:55:59Z'>
<span itemprop='position'>1</span>
</span>
</div>
<div class='post' itemprop='articleBody'>
<p>This is the proposed final version of BIP-6 that was based on the concept outlined here: <a href="http://gov.bao.finance/t/the-next-path-for-bao-annual-roadmap-bip/865/" class="inline-onebox">The Next Path for Bao (Annual Roadmap BIP)</a></p>
<p>The concept has been significantly changed to incorporate the overwhelming feedback of the community and multiple galaxies.</p>
<p>Unless there are signifgant problems within this proposal, it will advance to a governance vote to be either approved or denied.</p>
<p>Thank you to Baowolf, Rocky, Fabiaz, Vital, Chickn and other galaxy members who provided feedback, review and English revisions, and to the many community members who took time to give detailed feedback in the initial proposal.</p>
<hr>
<p>At the end of each year for Bao, the maintainers need to be reelect and set a forward agenda. An agenda must be then approved for them to continue forward as maintainers. Or else we must vote in other replacements.</p>
<p>This proposal is to make a new one year agenda and a series of large changes that the current maintainer galaxy thinks are needed for the protocol to move forward.</p>
<p>The main objectives of this roadmap are:</p>
<ul>
<li>
<p>Improve and formalize our processes for contributions so we can expand involvement in the DAO.</p>
</li>
<li>
<p>Increase the level of decentralizaton at all parts of the decision making process.</p>
</li>
<li>
<p>Create formal processes for roles within the DAO including limiting and decentralizing their powers and creating a balance of powers that means no DAO member can ever exercise centralized authority.</p>
</li>
<li>
<p>Add clarity to existing processes that have not been formalized.</p>
</li>
<li>
<p>Create formal treasury operations for better budgeting and long term planning.</p>
</li>
<li>
<p>Provide the DAO with more time to continue to refine the economic models of the ecosystem.</p>
</li>
<li>
<p>Approve the testing of Hard Synths to move forward on our product goals.</p>
</li>
</ul>
<p>We believe that with this roadmap that over the next year we will create a Bao protocol that is more decentralized, stronger economically, strong against governance attacks, and fair to all participants in the ecosystem.</p>
<p>Below are the specific points that will be approved with this vote and what we hope to implement and achieve with your approval.</p>
<h1>
<a name="h-1-reapprove-maintainer-galaxy-1" class="anchor" href="#h-1-reapprove-maintainer-galaxy-1"></a>1) Reapprove Maintainer Galaxy:</h1>
<p>Reapprove the maintainers for a period of one year ending December 31st, 2022.</p>
<p>BaoMan will take a $0 salary from the galaxy until hard synths are launched and have reached a mint volume of >$25M.</p>
<h1>
<a name="h-2-authorize-mainnet-multisig-and-future-governor-system-2" class="anchor" href="#h-2-authorize-mainnet-multisig-and-future-governor-system-2"></a>2) Authorize Mainnet Multisig and Future Governor System:</h1>
<p>The current system on Ethereum main network uses a timelock blocker. This will now migrate any remaining contracts that use the old timelock system to the new multisig system.</p>
<p>It will also set authority of the multisig to deploy and authorize either the Gnosis Snapshot, Governor Alpha, Governor Bravo or another chain voting direct governance system to replace the multisig as soon as it is approved as secure and safe by the QA Galaxy and Maintainer Galaxy.</p>
<h1>
<a name="h-3-unify-treasury-operations-3" class="anchor" href="#h-3-unify-treasury-operations-3"></a>3) Unify Treasury Operations:</h1>
<p>Bao’s treasuries are split out across multiple wallets, networks and assets and staked in multiple contracts which makes treasury operations messy.</p>
<p>Instead of having separate approved treasuries, this point will make all treasuries unified under the new mainnet single multisig.</p>
<p>It will authorize the multisig to act as the new authorized signer for treasury transactions who will need to sign off on all spending decisions.</p>
<p>Salaries and other approved spends can be set up using Sablier, Gnosis Safe Policies, or other Gnosis Safe compatible spending models.</p>
<p>It would also set the appointment of Baowolf as a Head of Treasury and Project Operations to help manage treasury budgeting, as well as the staking and liquidity of treasury assets.</p>
<p>Instead of voting on each spend individually the Head of the Treasury will plan an internal budget to be approved by the multisig. This budget must be approved by one member of each galaxy and is authorized to be a maximum of 1/3rd of treasury assets annual, ensuring that Bao’s protocol always has three years worth of runway.</p>
<p>Any spending that moves beyond this maximum would need individual votes on the spend.</p>
<p>Other treasury operations such as rebalancing will only require the sign off of galaxy representatives in the multisig.</p>
<p>The treasury may make use of any asset allocation but it will forever be prohibited from perpetuals, futures or options unless it is farming rewards on those in a neutral strategy. This section may not be overturned by future voting in order to keep secure the longer term health of the treasury.</p>
<p>Since the multisig will now be required to have a treasury transaction be valid, this point will also grandfather in all previous treasury votes and transactions deeming them as valid even though they were not executed through the multisig.</p>
<p>Once assets are in the multisig anyone will be able to use onchain tools like Zapper to see the treasury balances live time.</p>
<h1>
<a name="h-4-adjustments-to-unlocking-4" class="anchor" href="#h-4-adjustments-to-unlocking-4"></a>4) Adjustments to Unlocking:</h1>
<p>With much of the community having concerns in the first concept proposal it is obvious the community has not reached yet a clear consensus on a large adjustment to the unlocking. With not yet enough information around the revised unlock process for the community to feel comfortable with such a big change.</p>
<p>This revised proposal point will instead make the change smaller to start:</p>
<ul>
<li>Push back the current first unlock day until both hard synths and veBAO have been live for a minimum of 6 months.</li>
</ul>
<p>This gives all of our community more time to:</p>
<ul>
<li>Work on a specific model for veBAO.</li>
<li>See the results of veBAO and hard synths.</li>
</ul>
<p>If in that time those changes have been effective for the protocol then we can continue with the unlock.</p>
<p>If they have other issues, we continue to have time to plan changes, better understand how they are making impacts and make clear communications on them.</p>
<h1>
<a name="h-5-ending-mainnet-farming-of-current-pools-5" class="anchor" href="#h-5-ending-mainnet-farming-of-current-pools-5"></a>5) Ending Mainnet Farming of Current Pools:</h1>
<p>This point will authorize the multisig to end the current mainnet farms which are still dripping out Bao without cause and reserve these rewards for future hard synth pools.</p>
<p>To do this we will create a ‘meta pool’ which will reward a test token and set it to a high number of points in the system. That test token will be held by the multisig. This will allow the remaining Bao rewards to flow into the multisig to be put into new vaults when hard synths are ready.</p>
<p>This will <strong>NOT</strong> apply to the Bao pools that continue to provide Bao with some basic liquidity. The rewards from these pools will be adjusted to try and maintain roughly their current reward levels within this switch.</p>
<h1>
<a name="h-6-begin-a-hard-synth-test-on-mainnet-6" class="anchor" href="#h-6-begin-a-hard-synth-test-on-mainnet-6"></a>6) Begin a Hard Synth Test on Mainnet:</h1>
<p>The basic version of hard synths is close to being ready for testing.</p>
<p>At this time it won’t include LP tokens or other staked assets, due to the recent CREAM hack that dealt with oracle issues with these assets there is a lot of risk to assess as similar attacks can be made on most systems that have collateral or debt tracking.</p>
<p>This point will authorize the galaxy members and multisig to deploy a hard synth test that is part of the Bao Ecosystem and allocate a portion of Bao farming rewards to this test.</p>
<p>The test is expected to be ready and live this month and needs this approval to allocate rewards. It will also be capped to make lower risk.</p>
<p><div class="lightbox-wrapper"><a class="lightbox" href="https://global.discourse-cdn.com/standard10/uploads/bao/original/1X/b697dfc0d57884ebe86c78de0f97244a2ddfa9cb.png" data-download-href="/uploads/short-url/q3ihS0vcMuJWsZBLdalrSKaZxlV.png?dl=1" title="image"><img src="https://global.discourse-cdn.com/standard10/uploads/bao/optimized/1X/b697dfc0d57884ebe86c78de0f97244a2ddfa9cb_2_690x247.png" alt="image" data-base62-sha1="q3ihS0vcMuJWsZBLdalrSKaZxlV" width="690" height="247" srcset="https://global.discourse-cdn.com/standard10/uploads/bao/optimized/1X/b697dfc0d57884ebe86c78de0f97244a2ddfa9cb_2_690x247.png, https://global.discourse-cdn.com/standard10/uploads/bao/optimized/1X/b697dfc0d57884ebe86c78de0f97244a2ddfa9cb_2_1035x370.png 1.5x, https://global.discourse-cdn.com/standard10/uploads/bao/optimized/1X/b697dfc0d57884ebe86c78de0f97244a2ddfa9cb_2_1380x494.png 2x" data-dominant-color="FAF3E9"><div class="meta">
<svg class="fa d-icon d-icon-far-image svg-icon" aria-hidden="true"><use href="#far-image"></use></svg><span class="filename">image</span><span class="informations">1508×542 39 KB</span><svg class="fa d-icon d-icon-discourse-expand svg-icon" aria-hidden="true"><use href="#discourse-expand"></use></svg>
</div></a></div></p>
<p>*Image is a prototype values and assets should not be considered real or final. This is also just a testing design with post edits. The frontend galaxy is working to integrate these features into our existing front end and the design will change a lot before launch. Tests are local chains with fake values. Minor testing has also been done on Matic but the alpha launch will be on mainnet.</p>
<h1>
<a name="h-7-authorize-multisig-members-in-snapshot-7" class="anchor" href="#h-7-authorize-multisig-members-in-snapshot-7"></a>7) Authorize Multisig Members in Snapshot:</h1>
<p>With our new BIP flow proposals need to be elevated to Snapshot for voting.</p>
<p>Once we are on a governor system any member who has enough tokens can do this, but due to snapshot limitations right now only authorized members can promote a BIP to a vote and right now the only authorized member of the snapshot space is BaoMan.</p>
<p>To make this more decentral this point will now authorize all multisig members to add a BIP to a vote.</p>
<h1>
<a name="h-8-governance-and-administration-process-clarity-8" class="anchor" href="#h-8-governance-and-administration-process-clarity-8"></a>8) Governance and Administration Process Clarity:</h1>
<p>In the discussion around the changes to unlock there was a lot of argument around how past actions (setting variables in contract) or past votes should make an impact to what the protocol can or cannot change.</p>
<p>Some have argued that the unlock times are not valid because they were set by BaoMan when initially designing the contracts and didn’t have a vote.</p>
<p>Others have said that because we set those variables before voting, they are things that cannot be changed.</p>
<p>This point is to add concrete clarity that Bao is a living protocol, it is entirely governed by its users. The users have full governance power to change anything at any time and this has been said from the very start.</p>
<p>It should be clear that:</p>
<ul>
<li>A) Previous votes, decisions, deployments and transactions are grandfathered in even if they were outside of new processes that have more decentralization such as the BIP process or multisig.</li>
</ul>
<p>Any change of our process will not break actions on old governance models, make them invalid or result in us being unable to use them or force us to change them.</p>
<p>For example, when we shift to a governor system it will not mean that any votes done on Snapshot have to be redone or are invalid because they were on an old governance system.</p>
<ul>
<li>B) If our new agenda conflicts with old decisions (example: unlocking time) then the clauses in this vote overrule those old decisions.</li>
</ul>
<p>Just because something has been previously set (like unlock blocks) does not mean it can’t be over turned by new votes or new decisions.</p>
<p>The community will always have the ability to vote to change and overrule any part of the protocol unless they have already voted on making something specifically unchangeable.</p>
<p>These concepts have been informal in the community so far but this clause makes them formal. It is a one time point that makes a core piece of this protocol and will be considered to automatically apply to all future votes.</p>
<h1>
<a name="h-9-fairness-in-vebao-9" class="anchor" href="#h-9-fairness-in-vebao-9"></a>9) Fairness in veBAO:</h1>
<p>In order to ensure that any shift to a future planned veBAO model does not unfairly benefit any members of the Maintainer team who is planning those economics, any gains from BaoMan’s locked founder share of locked Bao will be directed to the dev treasury multisig instead.</p>
<p>This means any rewards from veBAO to the Maintainer would come through approval of the Treasury budget and approval from Council of Guardians.</p>
<p>This prevents the risk of any Maintainer designing a reward system that would be bias towards them.</p>
<h1>
<a name="h-10-formation-of-the-council-of-guardians-10" class="anchor" href="#h-10-formation-of-the-council-of-guardians-10"></a>10) Formation of the Council of Guardians:</h1>
<p>In an upcoming process to expand formal operations of the DAO we are creating two distinct roles in galaxies.</p>
<p>“Contributors” (part-time contributors and volunteers) and “Guardians” (full time individuals paid by the DAO to focus on the protocol).</p>
<p>Each Galaxy also has a Lead Guardian who is responsible for managing that Galaxy, setting its roadmap, reporting on the Galaxy and ensuring it hits its goals.</p>
<p>Each Galaxy will internally elect or appoint one of their Guardians to sit on a “Council of Guardians” which will consist of one representative from each permeant Galaxy.</p>
<p>Decisions that are not put to a public DAO vote, such as treasury breakdowns, or anything that needs sign-off from each of the Galaxies for approval shall use the Council of Guardians as a proxy.</p>
<h1>
<a name="h-11-internal-voting-11" class="anchor" href="#h-11-internal-voting-11"></a>11) Internal Voting:</h1>
<p>To ensure decentralization on any matter that is not subject to a full public vote, this process will create an internal voting method to ensure that no individual can wield influence over the ecosystem even as a perceived leader.</p>
<p>These votes would be rare, but would consist of things like:</p>
<ul>
<li>
<p>Disputes on internal budgeting that was already approved (i.e. revoking funds that Galaxies feel are being misused)</p>
</li>
<li>
<p>Partnerships and integrations that are required to be confidential prior to launch.</p>
</li>
<li>
<p>Urgent security matters (such as pulling assets out from staking when CREAM was exploited)</p>
</li>
<li>
<p>Removal of a Guardian for failure to perform their duties or uphold the values of the DAO.</p>
</li>
</ul>
<p>The internal votes will consist of:</p>
<ul>
<li>
<p>1 vote representing the consensus of the Maintainer Galaxy, who should evaluate the proposal against security of the protocol, the DAO, how it impacts the product roadmap and that it is inline with the principles of the DAO and any legality.</p>
</li>
<li>
<p>1 vote representing the Treasury, who should evaluate the proposal against any budget request, its impact on the treasury, its impact on the financial health of the protocol, and if the spend counts within existing proposals and frameworks or should have been a public vote.</p>
</li>
<li>
<p>1 vote representing the Council of Guardians who should internally vote amongst themselves and evaluate how the proposal impacts the goals of each individual galaxy as well as the overall product roadmap.</p>
</li>
<li>
<p>1 vote representing the Community Galaxy who with this vote is specifically tasked with representing the views and perspectives of the broader community and how they think a public vote on this matter would be represented.</p>
</li>
</ul>
<p>For these internal votes a 3/4ths majority is needed for approval. A 2/2 split vote shall be considered to be a failure.</p>
<h1>
<a name="h-12-requirement-of-annual-roadmaps-and-annual-election-of-a-maintainer-galaxy-12" class="anchor" href="#h-12-requirement-of-annual-roadmaps-and-annual-election-of-a-maintainer-galaxy-12"></a>12) Requirement of Annual Roadmaps and Annual Election of a Maintainer Galaxy:</h1>
<p>This point will task the maintainer galaxy with each year being required to put forward a formal roadmap that includes the main focus of their year and require them to be reelected.</p>
<p>Each October, any interested parties may put forward an annual proposal in a bid to be elected as the Maintainer.</p>
<p>On the 1st of November each proposal shall be put to a vote.</p>
<p>If multiple proposals pass, the successful proposals will then be placed into a single governance vote between the successful parties to finalize the election of the new Maintainer.</p>
<p>If the current Maintainers are the only ones to put forward a proposal and that proposal fails they will deemed to have been not reelected and they can try to put forward a new proposal, or the DAO can seek out new Maintainers.</p>
<p>Once approved any new Maintainer will take power on Jan 1st of the new calendar year, giving time for a graceful transition.</p>
<p>A maintainer proposal does not need to represent a single person but can represent a group who would be filling the role.</p>
<p>For the first year of this process due to the different timeline the current Maintainers will put forward their final proposal text by the 15th of November and must have it approved before the 15th of December, allowing for other proposals to still challenge it in that time. If no other proposals are successful prior to the 15th and the proposal from the current Maintainers is approved, then they shall be deemed reelected for the next calendar year.</p>
<h1>
<a name="h-13-requirement-of-formalizing-contribution-processes-13" class="anchor" href="#h-13-requirement-of-formalizing-contribution-processes-13"></a>13) Requirement of Formalizing Contribution Processes:</h1>
<p>This point will set the goal for the community galaxy to outline, within the next 3 months a standard process for any community user to join, start or fund a galaxy, as well as to make technical contributions to the protocol so that we can increase the amount of decentralized users working on Bao.</p>
<h1>
<a name="h-14-limiting-powers-of-the-maintainers-over-galaxies-and-guardians-to-improve-decentralization-14" class="anchor" href="#h-14-limiting-powers-of-the-maintainers-over-galaxies-and-guardians-to-improve-decentralization-14"></a>14) Limiting Powers of the Maintainers over Galaxies and Guardians to Improve Decentralization:</h1>
<p>Guardians once given their position by public vote (historical) or Guardian Council and multisig vote (future) will hold that position unless recalled.</p>
<p>Any newly elected Maintainer Galaxy may recall Guardians at the start of their leadership as long as that decision is laid out in their annual plan that is voted on.</p>
<p>Otherwise Guardians will only be recalled from their position by public vote, or if they violate the agreement of operating in the DAO (such as security).</p>
<p>The Treasury Operations will set up annual funding for the Galaxies based on the proposals of the Guardians and the review of the Maintainer Galaxy, Treasury Team and Multisig.</p>
<p>Once an annual budget is granted, the treasury is obligated to pay that budget through the end of the year.</p>
<p>The Maintainer Galaxy has the authority to remove contract permissions, treasury permissions, multisig permissions or repo permissions from any Galaxy member that is violating the agreement of the DAO or their position, or who is believed to be a security threat. But that will not halt the budget payments to that Galaxy.</p>
<p>To halt payments that were approved in an annual budget, must be done by public vote.</p>
<p>This ensures that the Maintainer Galaxy has the authority to act quickly in protecting the protocol from a security threat, but does not have the right to ‘fire’ anyone. It removes the ability for this system to be a hierarchy that does not involve public vote. If the maintainer wanted to remove any one from their role, it must be done so in their annual proposal that gets majority public approval.</p>
<p>This payment clause will only apply to a Galaxy’s annual funding proposal that was approved by the Treasury, and would not apply to temporary Galaxies or funding that was provided to a Galaxy for a specific project.</p>
<p>Both temporary Galaxies and project based funding has specific goals to hit and funding can be halted at any time if it fails to hit those goals.</p>
<p>Any Galaxy may be shutdown, or its members recalled and payment immediately ended by full governance vote.</p>
<h1>
<a name="h-15-documenting-our-processes-15" class="anchor" href="#h-15-documenting-our-processes-15"></a>15) Documenting Our Processes:</h1>
<p>This point will task the Community Galaxy with documenting outlines of the governance and galaxy structures and decision making processes to be updated in the Bao docs for clarity.</p>
<h1>
<a name="h-16-forming-a-governance-galaxy-16" class="anchor" href="#h-16-forming-a-governance-galaxy-16"></a>16) Forming a Governance Galaxy:</h1>
<p>Due to the increasing complexity of Governance process, this point will task the Bao DAO with forming a formal Governance Galaxy over the next year who shall manage the governance process, support in its documentation and focus on engaging the community and other stakeholders in each proposal to increase involvement in governance.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="19" />
<span class='post-likes'>19 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
<div class='crawler-linkback-list' itemscope itemtype='http://schema.org/ItemList'>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<a itemprop='url' href="http://gov.bao.finance/t/proposal-to-delay-unlocking-of-pnda-on-bsc-new-pnda-concept/1030">Proposal to Delay Unlocking of PNDA on BSC - New PNDA Concept</a>
<meta itemprop='position' content='3'>
</div>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<a itemprop='url' href="https://gov.bao.finance/t/v2-token-migration-distribution-and-setting-up-for-vebao/1133">V2 Token Migration, Distribution and setting up for veBAO</a>
<meta itemprop='position' content='4'>
</div>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<a itemprop='url' href="https://gov.bao.finance/t/bip-token-migration-distribution-v3/1134">BIP || Token migration & distribution v3</a>
<meta itemprop='position' content='5'>
</div>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<a itemprop='url' href="http://gov.bao.finance/t/final-draft-proposal-to-delay-unlocking-of-pnda-on-bsc/1041">Final Draft Proposal to Delay Unlocking of PNDA on BSC</a>
<meta itemprop='position' content='6'>
</div>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<a itemprop='url' href="https://gov.bao.finance/t/bip-14-token-migration-distribution/1140">[BIP-14] Token Migration & Distribution</a>
<meta itemprop='position' content='7'>
</div>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<a itemprop='url' href="http://gov.bao.finance/t/pip-1-proposal-to-delay-unlocking-of-pnda-on-bsc/1047">[PIP-1] Proposal to Delay Unlocking of PNDA on BSC</a>
<meta itemprop='position' content='8'>
</div>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<a itemprop='url' href="https://gov.bao.finance/t/token-migration-distribution-v4/1136">Token Migration & Distribution [v4]</a>
<meta itemprop='position' content='9'>
</div>
</div>
</div>
<div id='post_2' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/Vitalsine'><span itemprop='name'>Vitalsine</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-12T16:04:32Z' class='post-time'>
November 12, 2021, 4:04pm
</time>
<meta itemprop='dateModified' content='2021-11-12T16:04:32Z'>
<span itemprop='position'>2</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>You’re always a good read BaoMan. I support this proposal in all of its juicy goodness!</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="6" />
<span class='post-likes'>6 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
</div>
<div id='post_3' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/Sho_Time_Flow_Time'><span itemprop='name'>Sho_Time_Flow_Time</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-12T17:52:54Z' class='post-time'>
November 12, 2021, 5:52pm
</time>
<meta itemprop='dateModified' content='2021-11-12T17:53:30Z'>
<span itemprop='position'>3</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>Sad to see point 8 from the previous draft removed… I think adjusting the Max cap by a factor of 10 could play a major role in the adoption of BAO. I think there are a significant amount of people who wont take the project seriously because we do have such a large number of tokens. Perhaps this can be reintroduced in the future. Aside from that I support this proposal!</p>
<p>8)**<em>Migrate Bao to new version</em></p>
<p><em>The Bao token max cap has too many tokens to work with the detailed math of the current veBAO contract model.</em><br>
<em>In order to adjust for this we would need to migrate to a new token contract for BAO that would perform a unit split at ratio of 10:1.</em><br>
<em>Users would have the same percentage amount of total Bao but the units would be smaller.</em><br>
<em>This may not be required as we could make changes to veBao’s contract instead but it would be ideal.</em></p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="3" />
<span class='post-likes'>3 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="1" />
</div>
</div>
<div id='post_4' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/fabiaZ84'><span itemprop='name'>fabiaZ84</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-12T18:24:04Z' class='post-time'>
November 12, 2021, 6:24pm
</time>
<meta itemprop='dateModified' content='2021-11-12T18:24:04Z'>
<span itemprop='position'>4</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>This is not gone, by pushing back the timeline this could potentially be included later on.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="9" />
<span class='post-likes'>9 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
</div>
<div id='post_5' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/Shield'><span itemprop='name'>Shield</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-12T19:13:25Z' class='post-time'>
November 12, 2021, 7:13pm
</time>
<meta itemprop='dateModified' content='2021-11-12T19:13:25Z'>
<span itemprop='position'>5</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>Very complex well-thought-out DAO proposals. Glad to see the dumplings being handled with such care. Eagerly waiting for a vote ✔️</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="4" />
<span class='post-likes'>4 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
</div>
<div id='post_6' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/Jester'><span itemprop='name'>Jester</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-12T19:29:28Z' class='post-time'>
November 12, 2021, 7:29pm
</time>
<meta itemprop='dateModified' content='2021-11-12T19:29:28Z'>
<span itemprop='position'>6</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>I was fairly excited for the way we were going to handle unlocking before, but I understand. This proposal otherwise looks great.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="4" />
<span class='post-likes'>4 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="1" />
</div>
</div>
<div id='post_7' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/TheBaoMan'><span itemprop='name'>TheBaoMan</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-12T19:43:13Z' class='post-time'>
November 12, 2021, 7:43pm
</time>
<meta itemprop='dateModified' content='2021-11-12T19:43:13Z'>
<span itemprop='position'>7</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>Given the feedback and the timeline we had I did not feel confident that we could come up with an entirely new economic model details in time.</p>
<p>It seemed best then to push that down the road a bit to make sure we can do all such components correctly.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="8" />
<span class='post-likes'>8 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
</div>
<div id='post_8' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/0xhomu'><span itemprop='name'>0xhomu</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-13T00:34:48Z' class='post-time'>
November 13, 2021, 12:34am
</time>
<meta itemprop='dateModified' content='2021-11-13T00:34:48Z'>
<span itemprop='position'>8</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>Very detailed proposal, looks very nice.<br>
Love proposal 3, I remember one of the reasons the bao contracts were so expensive on mainnet was because a bunch of different addresses had to have bao sent to them. About proposal 4, what exactly defines "basic liquidity, is there some type of criterion?<br>
Also about the unlocking business. There has been a lot of heated debate over when and how the vested bao should unlock, the fear being that a small marketcap will leave the protocol defenseless for malicious parties to manipulate governance decisions. But currently this is just speculation, and we haven’t even seen a single bao unlock yet. So why don’t we leave the unlock date as is for a short period of time? (To be specific, let’s say 2 months.) 1 month of unlock won’t kill the protocol, and depending on the results we can either: make a stronger case supported by evidence to convince more people that pushing the unlock date further back is necessary, or discard the idea and leave the unlock as is.<br>
Also, I think that this proposal should be broken up into smaller chunks. This proposal contains a lot of different points, and it would be shame for the whole proposal to fail the vote just because of one of them.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="4" />
<span class='post-likes'>4 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
</div>
<div id='post_9' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/zfogg'><span itemprop='name'>zfogg</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-14T14:20:12Z' class='post-time'>
November 14, 2021, 2:20pm
</time>
<meta itemprop='dateModified' content='2021-11-14T14:20:12Z'>
<span itemprop='position'>9</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>this is very well put together and i would like much of this gone to a vote. i especially like the idea of a governance galaxy and would like to be involved in that.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="4" />
<span class='post-likes'>4 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
</div>
<div id='post_10' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/DS1'><span itemprop='name'>DS1</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-18T23:34:39Z' class='post-time'>
November 18, 2021, 11:34pm
</time>
<meta itemprop='dateModified' content='2021-11-18T23:34:39Z'>
<span itemprop='position'>10</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>I understand the need for pushing back the time lock, but it also means the goal posts have changed significantly. The investment people like me made, and the time in which we initially understood we would realise our investment return, now seems to be completely in the hands of the admins who will unlock at some random point in the future. If I had known, I probably would have invested in other projects. Hoping the rewards, when they come, are significant and worthwhile for those who invested and provided the financial input you guys needed from the start.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="0" />
<span class='post-likes'></span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="1" />
</div>
<div class='crawler-linkback-list' itemscope itemtype='http://schema.org/ItemList'>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<a itemprop='url' href="https://gov.bao.finance/t/bip-7-standardize-and-streamline-clear-galaxy-contribution-processes/977">[BIP-7] Standardize and streamline clear galaxy contribution processes</a>
<meta itemprop='position' content='1'>
</div>
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
<a itemprop='url' href="https://gov.bao.finance/t/standardize-and-streamline-clear-galaxy-contribution-processes/961">Standardize and streamline clear galaxy contribution processes</a>
<meta itemprop='position' content='2'>
</div>
</div>
</div>
<div id='post_11' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/Jester'><span itemprop='name'>Jester</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-19T00:23:22Z' class='post-time'>
November 19, 2021, 12:23am
</time>
<meta itemprop='dateModified' content='2021-11-19T00:23:22Z'>
<span itemprop='position'>11</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>Not in the hands of admins, in the hands of everyone in the project. It cant be stressed enough that the project is ran by everyone here, we are all apart of it as members of the DAO. Changes and new ideas and scenarios should have been the expectation from the start since it was always stated to be a experimental project in very alpha what is needed is people who want to work towards the betterment of the project, the “admins” are just people who have shown extraordinary trustworthiness and talent so they are elevated members of the DAO given more access to the project to contribute to it.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="3" />
<span class='post-likes'>3 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="1" />
</div>
</div>
<div id='post_12' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/DS1'><span itemprop='name'>DS1</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-19T01:11:44Z' class='post-time'>
November 19, 2021, 1:11am
</time>
<meta itemprop='dateModified' content='2021-11-19T01:11:44Z'>
<span itemprop='position'>12</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>I totally understand that, and yes, the admins (main people/founders/whatever you want to call them) are amazing - but also look at it from an investment point of view. I don’t think it’s enough to bucket that into ‘well, you knew this could be anything, and that’s what you signed up for’. That doesn’t remove accountability.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="1" />
<span class='post-likes'>1 Like</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="1" />
</div>
</div>
<div id='post_13' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/Jester'><span itemprop='name'>Jester</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-19T04:53:21Z' class='post-time'>
November 19, 2021, 4:53am
</time>
<meta itemprop='dateModified' content='2021-11-19T04:59:53Z'>
<span itemprop='position'>13</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>No it doesn’t remove accountability but all you would be holding the team accountable for is doing what the community asks them to do, they don’t make the decisions we all do. The only thing they are responsible for is taking the direction the governance gives them and working towards BAO’s goal with the projects best interest in mind. You are the one accountable for your funds, you knew changes could be made yet you chose to swap for BAO or stake in the farms, you are responsible to show different paths and participate that’s the reason for getting a governance token.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="0" />
<span class='post-likes'></span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="1" />
</div>
</div>
<div id='post_14' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/DS1'><span itemprop='name'>DS1</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-19T05:49:13Z' class='post-time'>
November 19, 2021, 5:49am
</time>
<meta itemprop='dateModified' content='2021-11-19T05:49:13Z'>
<span itemprop='position'>14</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>Yeh but at some point you need a commitment to a path, walking that path and delivering what you agreed was at the end of that path… not changing paths when a particular path becomes a bit too uncomfortable.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="2" />
<span class='post-likes'>2 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="1" />
</div>
</div>
<div id='post_15' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/fabiaZ84'><span itemprop='name'>fabiaZ84</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-19T07:55:18Z' class='post-time'>
November 19, 2021, 7:55am
</time>
<meta itemprop='dateModified' content='2021-11-19T08:07:13Z'>
<span itemprop='position'>15</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>As Jester pointed out we are a community run project and anyone can put forward a concept which could eventually go to a vote.<br>
Currently, the proposals are mostly coming from galaxy members, so users who have already been contributing to Bao for quite some time. This doesn’t mean that you / the community can’t create any concepts or provide us with feedback to finalize concepts.</p>
<p>Next up we have acknowledged that we think the current distribution schedule would be too aggressive, and a different approach would be more suited for our protocol.</p>
<p>In this case there are two options</p>
<ol>
<li>We keep the current distribution as originally described, which means you vote no to the proposal which contains the distribution changes.</li>
<li>As the maintainer galaxy proposed we make a change in the distribution, which will be finalized during the 6-month pushback, and you will vote yes.</li>
</ol>
<p>In any case we expect input from the community, if we don’t get feedback then it’s easy to criticize the proposal without giving alternatives. When you don’t agree it is off course fine to voice your opinion, but don’t expect changes without input and just vote against the proposal.</p>
<p>Having said that the documents state that this not an investment / product for speculation.<br>
In the end it’s always very tough to please everyone. So we put forward the concept we think is best suited for the protocol, this doesn’t necessarily align with all of our users, but we hope it does for the majority.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="6" />
<span class='post-likes'>6 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
</div>
<div id='post_16' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/notubu'><span itemprop='name'>notubu</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-22T05:56:44Z' class='post-time'>
November 22, 2021, 5:56am
</time>
<meta itemprop='dateModified' content='2021-11-22T05:56:44Z'>
<span itemprop='position'>16</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>Thanks for the very detailed write up BaoMan,<br>
Several amazing points which could be broken up into several votes IMO.</p>
<p>The more I read about decentralized projects the more I see how beneficial a State government could benefit from smart contracts and direct community votes.</p>
<p>Again, thanks for ensuring decentralization takes place here at Bao’s DAO!</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="3" />
<span class='post-likes'>3 Likes</span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
</div>
<div id='post_17' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/Bit'><span itemprop='name'>Bit</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-22T17:21:15Z' class='post-time'>
November 22, 2021, 5:21pm
</time>
<meta itemprop='dateModified' content='2021-11-22T17:21:15Z'>
<span itemprop='position'>17</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>As far as increasing involvement in governance goes, due to how few members of the community have enough tokens to submit a proposal or to have any significant impact on the outcome of a vote they are unlikely to participate. I am aware of why we took a vote to implement that policy. Being flooded with so many proposals and votes that nothing gets accomplished is counterproductive but when discussing community involvement it would be foolish to discount so many members complete lack of influence as being a factor of their disinterest.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="0" />
<span class='post-likes'></span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="1" />
</div>
</div>
<div id='post_18' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/Jester'><span itemprop='name'>Jester</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-22T19:59:02Z' class='post-time'>
November 22, 2021, 7:59pm
</time>
<meta itemprop='dateModified' content='2021-11-22T19:59:02Z'>
<span itemprop='position'>18</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>I dont think there is a requirement of tokens to get proposals submitted.</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="0" />
<span class='post-likes'></span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>
</div>
<div id='post_19' itemprop='comment' itemscope itemtype='http://schema.org/Comment' class='topic-body crawler-post'>
<div class='crawler-post-meta'>
<span class="creator" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a itemprop="url" href='https://gov.bao.finance/u/callmecwazy'><span itemprop='name'>callmecwazy</span></a>
</span>
<link itemprop="mainEntityOfPage" href="https://gov.bao.finance/t/bip-6-annual-agenda-changes-and-hard-synth-alpha/951">
<span class="crawler-post-infos">
<time itemprop='datePublished' datetime='2021-11-22T22:00:58Z' class='post-time'>
November 22, 2021, 10:00pm
</time>
<meta itemprop='dateModified' content='2021-11-22T22:00:58Z'>
<span itemprop='position'>19</span>
</span>
</div>
<div class='post' itemprop='text'>
<p>So it sounds like now after this passes our token payments are now frozen for an undetermined amount of time ie maybe after synth token has been launched and is running “smoothly”… Is there any guaranteed reward for pulling our payments or just the hope that the price will go up rather than crashing further?</p>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/LikeAction"/>
<meta itemprop="userInteractionCount" content="0" />
<span class='post-likes'></span>
</div>
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction"/>
<meta itemprop="userInteractionCount" content="0" />
</div>