27 lines
684 B
JavaScript
27 lines
684 B
JavaScript
const params = {
|
|
/* Validation Pool parameters */
|
|
mintingRatio: 1, // c1
|
|
stakeForWin: 0.5, // c2
|
|
// stakeForAuthor: 0.5, // c3 - For now we keep the default that stakeForAuthor = stakeForWin
|
|
winningRatio: 0.5, // c4
|
|
quorum: 0.5, // 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 */
|
|
initialPostValueFunction: ({ tokensMinted }) => tokensMinted, // q1
|
|
citationFraction: 0.3, // q2
|
|
};
|
|
|
|
export default params;
|