21 lines
449 B
JavaScript
21 lines
449 B
JavaScript
|
const params = {
|
||
|
mintingRatio: 1, // c1
|
||
|
stakeForWin: 0.5, // c2
|
||
|
stakeForAuthor: 0.5, // c3
|
||
|
winningRatio: 0.5, // c4
|
||
|
quorum: 1, // 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;
|