dao-governance-framework/forum-network/src/params.js

29 lines
636 B
JavaScript
Raw Normal View History

2022-11-12 16:20:42 -06:00
const params = {
2022-11-30 09:13:52 -06:00
/* Validation Pool parameters */
2022-11-12 16:20:42 -06:00
mintingRatio: 1, // c1
stakeForWin: 0.5, // c2
2023-01-05 01:19:14 -06:00
stakeForAuthor: 0.5, // c3
2022-11-12 16:20:42 -06:00
winningRatio: 0.5, // c4
2023-01-05 01:19:14 -06:00
quorum: 0, // c5
2022-11-12 16:20:42 -06:00
activeVoterThreshold: null, // c6
2022-11-30 09:13:52 -06:00
voteDuration: {
// c7
2022-11-12 16:20:42 -06:00
min: 0,
max: null,
},
// NOTE: c8 is the token loss ratio, which is specified as a runtime argument
contentiousDebate: {
period: 5000, // c9
stages: 3, // c10
},
lockingTimeExponent: 0, // c11
2022-11-30 09:13:52 -06:00
/* Forum parameters */
2023-01-04 16:28:36 -06:00
initialPostValue: () => 1, // q1
2023-01-05 01:19:14 -06:00
revaluationLimit: 1, // q2
maxPropagationDepth: 3, // q3
2023-01-08 12:27:53 -06:00
leachingValue: 1, // q4
2022-11-12 16:20:42 -06:00
};
export default params;