Eric cd6a78e548
reduce proof period
Proving is now on a new thread, and generates proofs much faster
2025-06-26 18:33:05 +10:00

22 lines
613 B
JavaScript

module.exports = {
collateral: {
repairRewardPercentage: 10,
maxNumberOfSlashes: 2,
slashPercentage: 20,
validatorRewardPercentage: 20, // percentage of the slashed amount going to the validators
},
proofs: {
// period has to be less than downtime * blocktime
// blocktime can be 1 second with hardhat in automine mode
period: 30, // seconds
timeout: 20, // seconds
downtime: 36, // number of blocks
downtimeProduct: 37, // number of blocks
zkeyHash: "",
},
reservations: {
maxReservations: 3,
},
requestDurationLimit: 60 * 60 * 24 * 30, // 30 days
}