Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Describe the new Swap constraints in example_sns_init.yaml #74

Merged
merged 4 commits into from
Sep 23, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions example_sns_init.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,7 @@ Swap:
# 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).
#
aterga marked this conversation as resolved.
Show resolved Hide resolved
# Must be at least `min_participants * minimum_direct_participation_icp`.
maximum_direct_participation_icp: 1_000_000 tokens

Expand Down Expand Up @@ -427,8 +428,12 @@ 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`.
# the first neuron in each neuron basket will have zero dissolve delay;
# the 2nd will have dissolve delay `interval`; if present, the 3rd will
# have dissolve delay `interval` × 2, etc.
#
# This value must be greater than or equal to `2`
# and must not exceed `10`.
events: 3

# The interval at which the schedule will be increased per event. The
Expand Down