21 lines
518 B
JavaScript
21 lines
518 B
JavaScript
const params = {
|
|
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
|
|
};
|
|
|
|
export default params;
|