const params = { /* Validation Pool parameters */ mintingRatio: 1, // c1 stakeForWin: 0.5, // c2 stakeForAuthor: 0.5, // c3 winningRatio: 0.5, // c4 quorum: 0, // c5 activeVoterThreshold: null, // c6 voteDuration: { // c7 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 /* Forum parameters */ initialPostValue: () => 1, // q1 revaluationLimit: 1, // q2 maxPropagationDepth: 3, // q3 }; export default params;