-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsns_init.yaml
923 lines (880 loc) · 38.1 KB
/
sns_init.yaml
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
# You should make a copy of this file, name it sns_init.yaml, and edit it to
# suit your needs.
#
# All principal IDs should almost certainly be changed.
#
# In this file, 1 year is nominally defined to be 365.25 days.
#
# This gets passed to `sns propose`. See propose_sns.sh.
#
# This follows the second configuration file format developed for the `sns`
# CLI. The first format will be supported for a time, but this format will
# eventually become the standard format.
# ------------------------------------------------------------------------------
# UNITS
#
# This SNS configuration file version allows specifying the various
# fields with units that make configuration easier. For instance,
# in the previous version, all fields relating to token values
# had to be specified in e8s (fractions of 10E-8 of a governance token).
# In this version, similar fields can be specified in whole tokens,
# tokens with decimals, or e8s. Below is more information on the type
# of units that can be used.
#
# For fields that represent token values (such as `transaction_fee`
# or `rejection_fee`), devs can specify decimal strings ending in
# "tokens" (plural), decimal strings ending in "token" (singular),
# or integer strings (base 10) ending in "e8s". In the case of
# "tokens" strings, the maximum number of digits after the (optional)
# decimal point is 8. The "_" character may be sprinkled throughout.
# Whitespace around number is insignificant. E.g. " 42 tokens" is
# equivalent to "42tokens".
#
# For fields that represent duration values (such as `initial_voting_period`
# or `minimum_dissolve_delay`), devs can specify durations as a concatenation
# of time spans. Where each time span is an integer number and a suffix.
# Supported suffixes:
# - seconds, second, sec, s
# - minutes, minute, min, m
# - hours, hour, hr, h
# - days, day, d
# - weeks, week, w
# - months, month, M -- defined as 30.44 days
# - years, year, y -- defined as 365.25 days
#
# For example, "1w 2d 3h" gets parsed as
#
# 1 week + 2 days + 3 hours
# =
# (1 * (7 * 24 * 60 * 60) + 2 * 24 * 60 * 60 + 3 * (60 * 60)) seconds
#
# For fields that represent percentage values (such as `bonus`), devs specify
# the value as an integer with a trailing percent sign ('%'). For example,
# `10%`.
#
# For fields that represent time of day (such as `start_time`), devs specify
# the value as a string in form "hh::mm UTC". Where hh is hour, and mm is minute.
# Only the UTC timezone is currently supported.
# ------------------------------------------------------------------------------
# Name of the SNS project. This may differ from the name of the associated
# token. Must be a string of max length = 255.
name: ICLighthouse DAO
# Description of the SNS project.
# Must be a string of max length = 2,000.
description: Defi infrastructure based on IC.
# This is currently a placeholder field and must be left empty for now.
Principals: []
# Path to the SNS Project logo on the local filesystem. The path is relative
# to the configuration file's location, unless an absolute path is given.
# Must have less than 341,334 bytes. The only supported format is PNG.
logo: logo.png
# URL to the dapp controlled by the SNS project.
# Must be a string from 10 to 512 bytes.
url: https://iclight.io
# Metadata for the NNS proposal required to create the SNS. This data will be
# shown only in the NNS proposal.
NnsProposal:
# The title of the NNS proposal. Must be a string of 4 to 256 bytes.
title: "NNS Proposal to create an SNS named 'ICLighthouse DAO'"
# The HTTPS address of additional content required to evaluate the NNS
# proposal.
url: "https://forum.dfinity.org/t/upcoming-iclighthouse-dao-icdex-launch-sns/26346"
# The description of the proposal. Must be a string of 10 to 2,000 bytes.
summary: >
## Summary
This is the ICLighthouse proposal for the NNS to create an SNS DAO \n
## About
ICLighthouse DAO is a community-driven on-chain governance contract initiated on the Internet Computer SNS system by ICLighthouse. It governs ICDex and icRouter. \n
## Proposed Token Distribution
Initial Total supply: 210 Million \n
Treasury: 36.238% \n
Early Investors: 14% \n
Team: 15% \n
SNS Swap: 30% \n
Voting Rewards: 4.762% Will be minted during future governance. \n
For more information, please refer to the white paper: https://iclight.house/whitepaper.pdf \n
## Decentralization SNS Swap
30% of the total supply of tokens is proposed to be distributed via an SNS decentralization swap. Swap participation parameters: \n
Min participation: 1 ICP \n
Max participation: 100,000 ICP \n
Max to be raised: 600,000 ICP \n
Min to be raised: 200,000 ICP \n
Minimum number of participants: 100 \n
## Governance
Governance The governance model includes staking, voting, and other relevant details. The minimum amount of SNS tokens to stake a neuron is 10. The minimum dissolve delay for a neuron to cast votes on proposals is 1 month and the maxmimum dissolve delay is 2 years. \n
## The Dapps
The IClighthouse is composed of multiple canisters with the SNS directly controlling the following canisters: \n
- i5jcx-ziaaa-aaaar-qaazq-cai (ICDex Rooter) \n
- 7vkf4-jqaaa-aaaaj-azrua-cai (ICDex Frontend) \n
## Verification
All information about the project can be verified in the whitepaper(https://iclight.house/whitepaper.pdf) and on Github(https://github.com/iclighthouse). \n
# If the SNS launch attempt fails, control over the dapp canister(s) is given to
# these principals. In most use cases, this is chosen to be the original set of
# controller(s) of the dapp. Must be a list of PrincipalIds.
fallback_controller_principals:
# For the actual SNS launch, you should replace this with one or more
# principals of your intended fallback controllers.
#
# For testing, propose_sns.sh will fill this in automatically.
- w6uxv-phwzk-nyfuk-e2s4f-lxot4-fysux-qif6a-kd6m2-mxidg-5qmk7-eae
# The list of dapp canister(s) that will be decentralized if the
# decentralization swap succeeds. These are defined in the form of canister IDs,
# for example, `bnz7o-iuaaa-aaaaa-qaaaa-cai`. For a successful SNS launch,
# these dapp canister(s) must be co-controlled by the NNS Root canister
# (`r7inp-6aaaa-aaaaa-aaabq-cai`) at latest at the time when the NNS proposal to
# create an SNS is adopted (usually this is required even earlier, e.g., to
# convince NNS neurons to vote in favor of your proposal).
dapp_canisters:
# For the actual SNS launch, you should replace this with one or more
# IDs of the canisters comprising your to-be-decentralized dapp.
#
# For testing, propose_sns.sh will fill this in automatically.
- i5jcx-ziaaa-aaaar-qaazq-cai
- 7vkf4-jqaaa-aaaaj-azrua-cai
# Configuration of SNS tokens in the SNS Ledger canister deployed as part
# of the SNS.
Token:
# The name of the token issued by the SNS ledger.
# Must be a string of 4 to 255 bytes without leading or trailing spaces.
name: ICLighthouse DAO
# The symbol of the token issued by the SNS Ledger.
# Must be a string of 3 to 10 bytes without leading or trailing spaces.
symbol: ICL
# SNS ledger transaction fee.
transaction_fee: 1_000_000 e8s
# Path to the SNS token logo on your local filesystem. The path is relative
# to the configuration file location, unless an absolute path is given.
# Must have less than 341,334 bytes. The only supported format is PNG.
logo: logo.png
# Configures SNS proposal-related fields. These fields define the initial values
# for some of the nervous system parameters related to SNS proposals. This will
# not affect all SNS proposals submitted to the newly created SNS.
Proposals:
# The cost of making an SNS proposal that is rejected by the SNS neuron
# holders. This field is specified as a token. For example: "1 token".
rejection_fee: 100 token
# The initial voting period of an SNS proposal. A proposal's voting period
# may be increased during its lifecycle due to the wait-for-quiet algorithm
# (see details below). This field is specified as a duration. For example
# "4 days".
initial_voting_period: 3 days
# The wait-for-quiet algorithm extends the voting period of a proposal when
# there is a flip in the majority vote during the proposal's voting period.
#
# Without this, there could be an incentive to vote right at the end of a
# proposal's voting period, in order to reduce the chance that people will
# see and have time to react to that.
#
# If this value is set to 1 day, then a change in the majority vote at the
# end of a proposal's original voting period results in an extension of the
# voting period by an additional day. Another change at the end of the
# extended period will cause the voting period to be extended by another
# half-day, etc.
#
# The total extension to the voting period will never be more than twice
# this value.
#
# For more information, please refer to
# https://wiki.internetcomputer.org/wiki/Network_Nervous_System#Proposal_decision_and_wait-for-quiet
#
# This field is specified as a duration. For example: "1 day".
maximum_wait_for_quiet_deadline_extension: 1 day
# Configuration of SNS voting.
Neurons:
# The minimum amount of SNS tokens to stake a neuron. This field is specified
# as a token. For instance, "1 token".
minimum_creation_stake: 10 tokens
# Configuration of SNS voting.
Voting:
# The minimum dissolve delay a neuron must have to be able to cast votes on
# proposals.
#
# Dissolve delay incentivizes neurons to vote in the long-term interest of
# an SNS, as they are rewarded for longer-term commitment to that SNS.
#
# Users cannot access the SNS tokens used to stake neurons (until the neuron
# is dissolved). This field is specified as a duration. For example: "6 months".
minimum_dissolve_delay: 1 month
# Configuration of voting power bonuses that are applied to neurons to
# incentivize alignment with the best interest of the DAO. Note, these
# bonuses multiply each other, so the increase in voting power due to
# the dissolve delay bonus is used in the equation to increase voting
# power for the age bonus.
MaximumVotingPowerBonuses:
# Users with a higher dissolve delay are incentivized to take the
# long-term interests of the SNS into consideration when voting. To
# reward this long-term commitment, this bonus can be set to a
# percentage greater than zero, which will result in neurons having
# their voting power increased in proportion to their dissolve delay.
#
# For example, if the user has a dissolve delay of 6 months, and
# the maximum dissolve delay duration (defined below as `duration`)
# for the dissolve delay bonus is 12 months, and the maximum bonus
# (defined as `bonus` below) is set to 10%, then that user’s voting
# power will be 105% of their normal voting power based on staked
# tokens (i.e. they will have a bonus of 5%). If the user increased
# their dissolve delay to 9 months, they would get 107.5% of the normal
# voting power of their tokens. And if they increased to 12 months, they
# would get 110%. If they increase further, they get no additional bonus.
#
# If you do not want this bonus to be applied for neurons with higher
# dissolve delay, set `bonus` to `0%` and those neurons will not receive
# higher voting power.
DissolveDelay:
# This parameter sets the maximum dissolve delay a neuron can have.
# When reached, the maximum dissolve delay bonus will be applied.
# This field is specified as a duration. For example: "8 years".
duration: 2 years
# If a neuron's dissolve delay is `duration`, its voting power will
# be increased by the dissolve delay `bonus` amount.
# This field is specified as a percentage. For instance,
# a value of "100%" means that the voting power will be doubled
# (multiplied by 2).
bonus: 50%
# Users with neurons staked in the non-dissolving state for a long
# period of time are incentivized to take the long-term interests of
# the SNS into consideration when voting. To reward this long-term
# commitment, this bonus can be set to a percentage (greater than zero),
# which will result in neurons having their voting power increased in
# proportion to their age.
#
# For example, if the neuron has an age of 6 months, and the maximum age
# duration (defined below as `duration`) for the age bonus is 12 months,
# and the maximum bonus (defined as `bonus` below) is set to 10%, then
# that neuron’s voting power will be 105% of their normal voting power
# based on staked tokens plus dissolve delay bonus (i.e. they will have a
# bonus of 5%). If neuron aged another 3 months to have an age of 9 months,
# the neuron would get 107.5% of the normal voting power. And if the neuron
# aged another 3 months to 12 months, the neuron would get 110%. If the neuron
# ages further, it get no additional bonus.
#
# If this bonus should not be applied for older neurons, set the bonus
# to `0%` and older neurons will not receive higher voting power.
Age:
# This parameter sets the duration of time the neuron must be staked
# in the non-dissolving state, in other words its `age`, to reach
# the maximum age bonus. Once this age is reached, the neuron will
# continue to age, but no more bonus will be applied. This field
# is specified as a duration. For example: "2 years".
duration: 1 years
# If a neuron's age is `duration` or older, its voting power will be
# increased by this age`bonus` amount.
# This field is specified as a percentage. For instance,
# a value of "25%" means that the voting power will increase by a quarter
# (multiplied by 1.25).
bonus: 20%
# Configuration of SNS voting reward parameters.
#
# The voting reward rate controls how quickly the supply of the SNS token
# increases. For example, setting `initial` to `2%` will cause the supply to
# increase by at most `2%` per year. A higher voting reward rate
# incentivizes users to participate in governance, but also results in
# higher inflation.
#
# The initial and final reward rates can be set to have a higher reward rate
# at the launch of the SNS and a lower rate further into the SNS’s lifetime.
# The reward rate falls quadratically from the `initial` rate to the `final`
# rate over the course of `transition_duration`.
#
# Setting both `initial` and `final` to `0%` will result in the system not
# distributing voting rewards at all.
#
# More details on SNS tokenomics can be found in the developer documentation:
# https://internetcomputer.org/docs/current/developer-docs/integrations/sns/tokenomics/rewards/#voting-rewards
RewardRate:
# The initial reward rate at which the SNS voting rewards will increase
# per year. This field is specified as a percentage. For example: "15%".
initial: 2.43%
# The final reward rate at which the SNS voting rewards will increase
# per year. This rate is reached after `transition_duration` and remains
# at this level unless changed by an SNS proposal. This field is
# specified as a percentage. For example: "5%".
final: 0%
# The voting reward rate falls quadratically from `initial` to `final`
# over the time period defined by `transition_duration`.
#
# Values of 0 result in the reward rate always being `final`.
#
# This field is specified as a duration. For example: "8 years".
transition_duration: 6 years
# Configuration of the initial token distribution of the SNS. You can configure
# how SNS tokens are distributed in each of the three groups:
# (1) tokens that are given to the original developers of the dapp,
# (2) treasury tokens that are owned by the SNS governance canister, and
# (3) tokens which are distributed to the decentralization swap participants.
#
# The initial token distribution must satisfy the following preconditions to be
# valid:
# - The sum of all developer tokens in E8s must be less than `u64::MAX`.
# - The Swap's initial balance (see group (3) above) must be greater than 0.
# - The Swap's initial balance (see group (3) above) must be greater than or
# equal to the sum of all developer tokens.
Distribution:
# The initial neurons created when the SNS Governance canister is installed.
# Each element in this list specifies one such neuron, including its stake,
# controlling principal, memo identifying this neuron (every neuron that
# a user has must be identified by a unique memo), dissolve delay, and a
# vesting period. Even though these neurons are distributed at genesis,
# they are locked in a (restricted) pre-initialization mode until the
# decentralization swap is completed. Note that `vesting_period` starts
# right after the SNS creation and thus includes the pre-initialization mode
# period.
#
# For example:
# - principal: hpikg-6exdt-jn33w-ndty3-fc7jc-tl2lr-buih3-cs3y7-tftkp-sfp62-gqe
# stake: 1_000 tokens
# memo: 0
# dissolve_delay: 2 years
# vesting_period: 4 years
Neurons:
# For the actual SNS launch, you should replace this with one or more
# principals of your intended genesis neurons.
#
# For testing, propose_sns.sh will fill this in automatically.
# =======team 0-9=======
- principal: ljjik-rznyy-xlero-b4r4e-nxk4y-sylsr-lf3er-dcybt-zelc2-hfuum-tqe
stake: 1_000 tokens
memo: 0
dissolve_delay: 3 months
vesting_period: 6 months
- principal: zseoz-qqaaa-aaaap-abzxa-cai
stake: 3_499_000 tokens
memo: 1
dissolve_delay: 0 months
vesting_period: 6 months
- principal: zseoz-qqaaa-aaaap-abzxa-cai
stake: 3_500_000 tokens
memo: 2
dissolve_delay: 3 months
vesting_period: 6 months
- principal: zseoz-qqaaa-aaaap-abzxa-cai
stake: 3_500_000 tokens
memo: 3
dissolve_delay: 6 months
vesting_period: 6 months
- principal: zseoz-qqaaa-aaaap-abzxa-cai
stake: 3_500_000 tokens
memo: 4
dissolve_delay: 9 months
vesting_period: 6 months
- principal: zseoz-qqaaa-aaaap-abzxa-cai
stake: 3_500_000 tokens
memo: 5
dissolve_delay: 12 months
vesting_period: 6 months
- principal: zseoz-qqaaa-aaaap-abzxa-cai
stake: 3_500_000 tokens
memo: 6
dissolve_delay: 15 months
vesting_period: 6 months
- principal: zseoz-qqaaa-aaaap-abzxa-cai
stake: 3_500_000 tokens
memo: 7
dissolve_delay: 18 months
vesting_period: 6 months
- principal: zseoz-qqaaa-aaaap-abzxa-cai
stake: 3_500_000 tokens
memo: 8
dissolve_delay: 21 months
vesting_period: 6 months
- principal: zseoz-qqaaa-aaaap-abzxa-cai
stake: 3_500_000 tokens
memo: 9
dissolve_delay: 2 years
vesting_period: 6 months
# =======Seed round=======
# seed investor1 10-12
- principal: ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae
stake: 877_193 tokens
memo: 10
dissolve_delay: 0 months
vesting_period: 0 months
- principal: ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae
stake: 877_193 tokens
memo: 11
dissolve_delay: 3 months
vesting_period: 0 months
- principal: ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae
stake: 877_193 tokens
memo: 12
dissolve_delay: 6 months
vesting_period: 0 months
# seed investor2 13-15
- principal: sr3xw-uaoqw-zuwmi-56mmd-y6oqi-ssjeu-ottqw-4zm47-edbim-djnqs-4qe
stake: 175_439 tokens
memo: 13
dissolve_delay: 0 months
vesting_period: 0 months
- principal: sr3xw-uaoqw-zuwmi-56mmd-y6oqi-ssjeu-ottqw-4zm47-edbim-djnqs-4qe
stake: 175_439 tokens
memo: 14
dissolve_delay: 3 months
vesting_period: 0 months
- principal: sr3xw-uaoqw-zuwmi-56mmd-y6oqi-ssjeu-ottqw-4zm47-edbim-djnqs-4qe
stake: 175_438 tokens
memo: 15
dissolve_delay: 6 months
vesting_period: 0 months
# seed investor3 16-18
- principal: rynug-iwmwd-igvnb-4stsd-aogqr-kkjza-5mwoj-5hvat-ue4t5-njfag-kqe
stake: 584_796 tokens
memo: 16
dissolve_delay: 0 months
vesting_period: 0 months
- principal: rynug-iwmwd-igvnb-4stsd-aogqr-kkjza-5mwoj-5hvat-ue4t5-njfag-kqe
stake: 584_795 tokens
memo: 17
dissolve_delay: 3 months
vesting_period: 0 months
- principal: rynug-iwmwd-igvnb-4stsd-aogqr-kkjza-5mwoj-5hvat-ue4t5-njfag-kqe
stake: 584_795 tokens
memo: 18
dissolve_delay: 6 months
vesting_period: 0 months
# seed investor4 19-21
- principal: ljaqo-bhkgi-cgnne-5l5ng-fgrqk-u473a-n56zh-ktxai-7nfk6-epiu2-wqe
stake: 526_316 tokens
memo: 19
dissolve_delay: 0 months
vesting_period: 0 months
- principal: ljaqo-bhkgi-cgnne-5l5ng-fgrqk-u473a-n56zh-ktxai-7nfk6-epiu2-wqe
stake: 526_316 tokens
memo: 20
dissolve_delay: 3 months
vesting_period: 0 months
- principal: ljaqo-bhkgi-cgnne-5l5ng-fgrqk-u473a-n56zh-ktxai-7nfk6-epiu2-wqe
stake: 526_315 tokens
memo: 21
dissolve_delay: 6 months
vesting_period: 0 months
# seed investor5 22-24
- principal: 4bqld-ninlj-m2kdb-o36pi-mgdnq-tvojd-gw56u-zzae6-5ubnf-isvia-sqe
stake: 291_886 tokens
memo: 22
dissolve_delay: 0 months
vesting_period: 0 months
- principal: 4bqld-ninlj-m2kdb-o36pi-mgdnq-tvojd-gw56u-zzae6-5ubnf-isvia-sqe
stake: 291_885 tokens
memo: 23
dissolve_delay: 3 months
vesting_period: 0 months
- principal: 4bqld-ninlj-m2kdb-o36pi-mgdnq-tvojd-gw56u-zzae6-5ubnf-isvia-sqe
stake: 291_885 tokens
memo: 24
dissolve_delay: 6 months
vesting_period: 0 months
# seed investor6 25-27
- principal: m3d54-swmqm-i7xxj-5tmqk-dgqhw-zkqdq-7wz3b-wnqoc-drqth-pteir-cae
stake: 437_829 tokens
memo: 25
dissolve_delay: 0 months
vesting_period: 0 months
- principal: m3d54-swmqm-i7xxj-5tmqk-dgqhw-zkqdq-7wz3b-wnqoc-drqth-pteir-cae
stake: 437_828 tokens
memo: 26
dissolve_delay: 3 months
vesting_period: 0 months
- principal: m3d54-swmqm-i7xxj-5tmqk-dgqhw-zkqdq-7wz3b-wnqoc-drqth-pteir-cae
stake: 437_828 tokens
memo: 27
dissolve_delay: 6 months
vesting_period: 0 months
# seed investor7 28-30
- principal: cnsg6-zppe7-frbxe-gylmd-22bs3-o2ngn-bhfwf-mqjis-ntwoa-trsj6-5ae
stake: 350_263 tokens
memo: 28
dissolve_delay: 0 months
vesting_period: 0 months
- principal: cnsg6-zppe7-frbxe-gylmd-22bs3-o2ngn-bhfwf-mqjis-ntwoa-trsj6-5ae
stake: 350_263 tokens
memo: 29
dissolve_delay: 3 months
vesting_period: 0 months
- principal: cnsg6-zppe7-frbxe-gylmd-22bs3-o2ngn-bhfwf-mqjis-ntwoa-trsj6-5ae
stake: 350_262 tokens
memo: 30
dissolve_delay: 6 months
vesting_period: 0 months
# seed investor8 31-33
- principal: sfnjn-mhpjp-vu3em-cqln3-fjxqn-ivogx-vgx63-czl4g-xpfzn-4p4lx-xae
stake: 634_682 tokens
memo: 31
dissolve_delay: 0 months
vesting_period: 0 months
- principal: sfnjn-mhpjp-vu3em-cqln3-fjxqn-ivogx-vgx63-czl4g-xpfzn-4p4lx-xae
stake: 634_682 tokens
memo: 32
dissolve_delay: 3 months
vesting_period: 0 months
- principal: sfnjn-mhpjp-vu3em-cqln3-fjxqn-ivogx-vgx63-czl4g-xpfzn-4p4lx-xae
stake: 634_681 tokens
memo: 33
dissolve_delay: 6 months
vesting_period: 0 months
# seed investor9 34-36
- principal: dzpoh-oukvr-rjxhb-wt4fs-twzvu-hd3x7-6hr7d-olmry-hwpm7-vri2q-4qe
stake: 496_206 tokens
memo: 34
dissolve_delay: 0 months
vesting_period: 0 months
- principal: dzpoh-oukvr-rjxhb-wt4fs-twzvu-hd3x7-6hr7d-olmry-hwpm7-vri2q-4qe
stake: 496_205 tokens
memo: 35
dissolve_delay: 3 months
vesting_period: 0 months
- principal: dzpoh-oukvr-rjxhb-wt4fs-twzvu-hd3x7-6hr7d-olmry-hwpm7-vri2q-4qe
stake: 496_205 tokens
memo: 36
dissolve_delay: 6 months
vesting_period: 0 months
# seed investor10 37-39
- principal: tfsmw-6p6ie-djofc-bbepz-kl2ms-wxhkn-462ir-skd2n-wwom4-54xb3-jae
stake: 525_394 tokens
memo: 37
dissolve_delay: 0 months
vesting_period: 0 months
- principal: tfsmw-6p6ie-djofc-bbepz-kl2ms-wxhkn-462ir-skd2n-wwom4-54xb3-jae
stake: 525_394 tokens
memo: 38
dissolve_delay: 3 months
vesting_period: 0 months
- principal: tfsmw-6p6ie-djofc-bbepz-kl2ms-wxhkn-462ir-skd2n-wwom4-54xb3-jae
stake: 525_394 tokens
memo: 39
dissolve_delay: 6 months
vesting_period: 0 months
# Early contributors & donors
# early investor1 40-42
- principal: yyfd5-sbfbu-cbuoy-f5w65-7xidr-4soe3-k2p2g-riv7u-ldg7t-fxz3z-vae
stake: 33_334 tokens
memo: 40
dissolve_delay: 0 months
vesting_period: 0 months
- principal: yyfd5-sbfbu-cbuoy-f5w65-7xidr-4soe3-k2p2g-riv7u-ldg7t-fxz3z-vae
stake: 33_333 tokens
memo: 41
dissolve_delay: 3 months
vesting_period: 0 months
- principal: yyfd5-sbfbu-cbuoy-f5w65-7xidr-4soe3-k2p2g-riv7u-ldg7t-fxz3z-vae
stake: 33_333 tokens
memo: 42
dissolve_delay: 6 months
vesting_period: 0 months
# early investor2 43-45
- principal: dmkqr-cek4q-bhj3m-tu3jk-7xfc2-o6wcs-5prz7-v3i5l-tyudy-ycsoe-rae
stake: 45_000 tokens
memo: 43
dissolve_delay: 0 months
vesting_period: 0 months
- principal: dmkqr-cek4q-bhj3m-tu3jk-7xfc2-o6wcs-5prz7-v3i5l-tyudy-ycsoe-rae
stake: 45_000 tokens
memo: 44
dissolve_delay: 3 months
vesting_period: 0 months
- principal: dmkqr-cek4q-bhj3m-tu3jk-7xfc2-o6wcs-5prz7-v3i5l-tyudy-ycsoe-rae
stake: 45_000 tokens
memo: 45
dissolve_delay: 6 months
vesting_period: 0 months
# early investor3 46-48
- principal: gxqiw-vjqwl-c7gke-y6vzh-y6lo2-shel7-6jzhx-2mdrw-tx3an-2fxwu-pae
stake: 66_667 tokens
memo: 46
dissolve_delay: 0 months
vesting_period: 0 months
- principal: gxqiw-vjqwl-c7gke-y6vzh-y6lo2-shel7-6jzhx-2mdrw-tx3an-2fxwu-pae
stake: 66_667 tokens
memo: 47
dissolve_delay: 3 months
vesting_period: 0 months
- principal: gxqiw-vjqwl-c7gke-y6vzh-y6lo2-shel7-6jzhx-2mdrw-tx3an-2fxwu-pae
stake: 66_666 tokens
memo: 48
dissolve_delay: 6 months
vesting_period: 0 months
# early investor4 49-51
- principal: k3fnk-sdqsg-5xumv-wzbak-lz77x-fiyuh-gni2g-ee6md-a7p4s-ix6so-fae
stake: 40_000 tokens
memo: 49
dissolve_delay: 0 months
vesting_period: 0 months
- principal: k3fnk-sdqsg-5xumv-wzbak-lz77x-fiyuh-gni2g-ee6md-a7p4s-ix6so-fae
stake: 40_000 tokens
memo: 50
dissolve_delay: 3 months
vesting_period: 0 months
- principal: k3fnk-sdqsg-5xumv-wzbak-lz77x-fiyuh-gni2g-ee6md-a7p4s-ix6so-fae
stake: 40_000 tokens
memo: 51
dissolve_delay: 6 months
vesting_period: 0 months
# early investor5 52-54
- principal: cnykz-tlrdy-yftjd-dd527-mhhwb-pz53i-j56ak-7aldn-s45kg-fz7xu-oqe
stake: 621_600 tokens
memo: 52
dissolve_delay: 0 months
vesting_period: 0 months
- principal: cnykz-tlrdy-yftjd-dd527-mhhwb-pz53i-j56ak-7aldn-s45kg-fz7xu-oqe
stake: 621_600 tokens
memo: 53
dissolve_delay: 3 months
vesting_period: 0 months
- principal: cnykz-tlrdy-yftjd-dd527-mhhwb-pz53i-j56ak-7aldn-s45kg-fz7xu-oqe
stake: 621_600 tokens
memo: 54
dissolve_delay: 6 months
vesting_period: 0 months
# early investor6 55-57
- principal: 7wgus-w2zqd-xubpg-xraxq-jwf34-w3mgy-4xufv-7tdly-shgxy-g2ubb-pae
stake: 166_667 tokens
memo: 55
dissolve_delay: 0 months
vesting_period: 0 months
- principal: 7wgus-w2zqd-xubpg-xraxq-jwf34-w3mgy-4xufv-7tdly-shgxy-g2ubb-pae
stake: 166_667 tokens
memo: 56
dissolve_delay: 3 months
vesting_period: 0 months
- principal: 7wgus-w2zqd-xubpg-xraxq-jwf34-w3mgy-4xufv-7tdly-shgxy-g2ubb-pae
stake: 166_666 tokens
memo: 57
dissolve_delay: 6 months
vesting_period: 0 months
# early investor7 58-60
- principal: mmyfp-qjkbo-l2wag-egr4v-yaere-f55uo-gowtj-eassx-cxf4k-y3ly2-cqe
stake: 556_667 tokens
memo: 58
dissolve_delay: 0 months
vesting_period: 0 months
- principal: mmyfp-qjkbo-l2wag-egr4v-yaere-f55uo-gowtj-eassx-cxf4k-y3ly2-cqe
stake: 556_667 tokens
memo: 59
dissolve_delay: 3 months
vesting_period: 0 months
- principal: mmyfp-qjkbo-l2wag-egr4v-yaere-f55uo-gowtj-eassx-cxf4k-y3ly2-cqe
stake: 556_666 tokens
memo: 60
dissolve_delay: 6 months
vesting_period: 0 months
# early investor8 61-63
- principal: nvyum-76ood-2esqc-owgdf-5ddjt-pyku6-cexmj-2ynp7-byfxk-xip6r-3ae
stake: 933_334 tokens
memo: 61
dissolve_delay: 0 months
vesting_period: 0 months
- principal: nvyum-76ood-2esqc-owgdf-5ddjt-pyku6-cexmj-2ynp7-byfxk-xip6r-3ae
stake: 933_333 tokens
memo: 62
dissolve_delay: 3 months
vesting_period: 0 months
- principal: nvyum-76ood-2esqc-owgdf-5ddjt-pyku6-cexmj-2ynp7-byfxk-xip6r-3ae
stake: 933_333 tokens
memo: 63
dissolve_delay: 6 months
vesting_period: 0 months
# early investor9 64-66
- principal: sce33-lenq2-5hoas-gwqkp-ldsqa-7owy2-kxejt-kmx6g-rlez7-fjgmw-5qe
stake: 500_000 tokens
memo: 64
dissolve_delay: 0 months
vesting_period: 0 months
- principal: sce33-lenq2-5hoas-gwqkp-ldsqa-7owy2-kxejt-kmx6g-rlez7-fjgmw-5qe
stake: 500_000 tokens
memo: 65
dissolve_delay: 3 months
vesting_period: 0 months
- principal: sce33-lenq2-5hoas-gwqkp-ldsqa-7owy2-kxejt-kmx6g-rlez7-fjgmw-5qe
stake: 500_000 tokens
memo: 66
dissolve_delay: 6 months
vesting_period: 0 months
# early investor10 67-69
- principal: vghs6-go27c-jd3ev-dgczv-e673r-jgxon-zwkkg-stlky-b2hhz-ittgh-5qe
stake: 333_334 tokens
memo: 67
dissolve_delay: 0 months
vesting_period: 0 months
- principal: vghs6-go27c-jd3ev-dgczv-e673r-jgxon-zwkkg-stlky-b2hhz-ittgh-5qe
stake: 333_333 tokens
memo: 68
dissolve_delay: 3 months
vesting_period: 0 months
- principal: vghs6-go27c-jd3ev-dgczv-e673r-jgxon-zwkkg-stlky-b2hhz-ittgh-5qe
stake: 333_333 tokens
memo: 69
dissolve_delay: 6 months
vesting_period: 0 months
# early investor11 70-72
- principal: wynad-oidky-2uthg-td7dx-54dwn-ghd7s-z4j4a-tnnnu-zskmb-deik2-3ae
stake: 233_334 tokens
memo: 70
dissolve_delay: 0 months
vesting_period: 0 months
- principal: wynad-oidky-2uthg-td7dx-54dwn-ghd7s-z4j4a-tnnnu-zskmb-deik2-3ae
stake: 233_333 tokens
memo: 71
dissolve_delay: 3 months
vesting_period: 0 months
- principal: wynad-oidky-2uthg-td7dx-54dwn-ghd7s-z4j4a-tnnnu-zskmb-deik2-3ae
stake: 233_333 tokens
memo: 72
dissolve_delay: 6 months
vesting_period: 0 months
# early investor12 73-75
- principal: cpb7n-lxzuf-vi6z7-cyhth-m3h6l-f6rq5-tk246-ekijy-wdrts-g3llr-oqe
stake: 1_370_067 tokens
memo: 73
dissolve_delay: 0 months
vesting_period: 0 months
- principal: cpb7n-lxzuf-vi6z7-cyhth-m3h6l-f6rq5-tk246-ekijy-wdrts-g3llr-oqe
stake: 1_370_067 tokens
memo: 74
dissolve_delay: 3 months
vesting_period: 0 months
- principal: cpb7n-lxzuf-vi6z7-cyhth-m3h6l-f6rq5-tk246-ekijy-wdrts-g3llr-oqe
stake: 1_370_066 tokens
memo: 75
dissolve_delay: 6 months
vesting_period: 0 months
# The initial SNS token balances of the various canisters of the SNS.
InitialBalances:
# The initial SNS token balance of the SNS Governance canister is known
# as the treasury. This is initialized in a special sub-account, as the
# main account of Governance is the minting account of the SNS Ledger.
# This field is specified as a token. For instance, "1 token".
governance: 76_100_000 tokens
# The initial SNS token balance of the Swap canister is what will be
# available for the decentralization swap. These tokens will be swapped
# for ICP. This field is specified as a token. For instance, "1 token".
swap: 63_000_000 tokens
# Checksum of the total number of tokens distributed in this section.
# This field is specified as a token. For instance, "1 token".
# 1_000 (neuron)
# 2 million (governance)
# + 500 thousand (swap)
# --------------
total: 200_000_000 tokens
# Configuration of the decentralization swap parameters. Choose these parameters
# carefully, if a decentralization swap fails, the SNS will restore the dapp
# canister(s) to the fallback controllers (defined in
# `fallback_controller_principals`) and you will need to start over.
Swap:
# The minimum number of direct participants that must participate for the
# decentralization swap to succeed. If a decentralization swap finishes due
# to the deadline or the maximum target being reached, and if there are less
# than `minimum_participants` (here, only direct participants are counted),
# the swap will be committed.
minimum_participants: 100
# Minimum amount of ICP from direct participants. This amount is required for
# the swap to succeed. If this amount is not achieved, the swap will be
# aborted (instead of committed) when the due date/time occurs.
# Must be smaller than or equal than `maximum_direct_participation_icp`.
minimum_direct_participation_icp: 200_000 tokens
# Maximum amount of ICP from direct participants. If this amount is achieved,
# the swap will finalize immediately, without waiting for the due date/time;
# in this case, the swap would be committed if and only if the number of
# direct participants (`minimum_participants`) is reached (otherwise, it
# would be aborted).
# Must be at least `min_participants * minimum_direct_participation_icp`.
maximum_direct_participation_icp: 600_000 tokens
# The minimum amount of ICP that each participant must contribute
# to participate. This field is specified as a token. For instance,
# "1 token".
minimum_participant_icp: 1 tokens
# The maximum amount of ICP that each participant may contribute
# to participate. This field is specified as a token. For instance,
# "1 token".
maximum_participant_icp: 100_000 tokens
# The text that swap participants must confirm before they may participate
# in the swap.
#
# This field is optional. If set, must be within 1 to 1,000 characters and
# at most 8,000 bytes.
confirmation_text: >
I confirm my understanding of the responsibilities and risks
associated with participating in this token swap.
# A list of countries from which swap participation should not be allowed.
#
# This field is optional. By default, participants from all countries
# are allowed.
#
# Each list element must be an ISO 3166-1 alpha-2 country code.
restricted_countries:
- "AF" # Afghanistan
- "BY" # Belarus
- "BA" # Bosnia and Herzegovina
- "BI" # Burundi
- "CF" # Central African Republic
- "KP" # Democratic People's Republic of Korea
- "CD" # Democratic Republic of the Congo
- "IR" # Iran
- "IQ" # Iraq
- "LB" # Lebanon
- "LY" # Libya
- "ML" # Mali
- "ME" # Montenegro
- "MM" # Myanmar
- "NI" # Nicaragua
- "RU" # Russia
- "RS" # Serbia
- "SO" # Somalia
- "SD" # Sudan
- "SY" # Syria
- "VE" # Venezuela
- "YE" # Yemen
- "ZW" # Zimbabwe
- "US" # United States
- "CN" # China
- "SG" # Singapore
# Configuration of the vesting schedule of the neuron basket, i.e., the SNS
# neurons that a participants will receive from a successful
# decentralization swap.
VestingSchedule:
# The number of events in the vesting schedule. This translates to how
# many neurons will be in each participant's neuron basket. Note that
# the first neuron in each neuron basket will have zero dissolve delay.
# This value should thus be greater than or equal to `2`.
events: 5
# The interval at which the schedule will be increased per event. The
# first neuron in the basket will be unlocked with zero dissolve delay.
# Each other neuron in the schedule will have its dissolve delay
# increased by `interval` compared to the previous one. For example,
# if `events` is set to `3` and `interval` is `1 month`, then each
# participant's neuron basket will have three neurons (with equal stake)
# with dissolve delays zero, 1 month, and 2 months. Note that the notion
# of `Distribution.neurons.vesting_period` applies only to developer
# neurons. While neuron basket neurons do not use `vesting_period`, they
# have a vesting schedule. This field is specified as a duration. For
# example: "1 month".
interval: 3 month
# Absolute time of day when the decentralization swap is supposed to start.
#
# An algorithm will be applied to allow at least 24 hours between the time
# of execution of the CreateServiceNervousSystem proposal and swap start.
# For example, if start_time is 23:30 UTC and the proposal is adopted and
# executed at 23:20 UTC, then the swap start will be at 23:30 UTC the next
# day (i.e., in 24 hours and 10 min from the proposal execution time).
#
# WARNING: Swap start_time works differently on mainnet and in testing.
#
# On mainnet:
# - Setting start_time to some value (e.g., 23:30 UTC) will allow the swap
# participants to be prepared for the swap in advance, e.g.,
# by obtaining ICPs that they would like to participate with.
# - If start_time is not specified, the actual start time of the swap will
# be chosen at random (allowing at least 24 hours and less than 48 hours,
# as described above).
#
# In testing:
# - Setting start_time to some value works the same as explained above.
# - If start_time is not specified, the swap will begin immediately after
# the CreateServiceNervousSystem proposal is executed. This facilitates
# testing in an accelerated manner.
#
start_time: 12:00 UTC # Intentionally commented out for testing.
# The duration of the decentralization swap. When `start_time` is calculated
# during CreateServiceNervousSystem proposal execution, this `duration` will
# be added to that absolute time and set as the swap's deadline.
duration: 15 days
# Whether Neurons' Fund participation is requested.
neurons_fund_participation: true