2024-11-07 15:27:22 +01:00
|
|
|
module.exports = {
|
|
|
|
|
collateral: {
|
|
|
|
|
repairRewardPercentage: 10,
|
|
|
|
|
maxNumberOfSlashes: 2,
|
|
|
|
|
slashPercentage: 20,
|
2025-02-13 14:03:45 +01:00
|
|
|
validatorRewardPercentage: 20, // percentage of the slashed amount going to the validators
|
2024-11-07 15:27:22 +01:00
|
|
|
},
|
|
|
|
|
proofs: {
|
|
|
|
|
// period has to be less than downtime * blocktime
|
|
|
|
|
// blocktime can be 1 second with hardhat in automine mode
|
2025-06-26 15:59:02 +10:00
|
|
|
period: 30, // seconds
|
|
|
|
|
timeout: 20, // seconds
|
|
|
|
|
downtime: 36, // number of blocks
|
|
|
|
|
downtimeProduct: 37, // number of blocks
|
2025-02-20 06:54:41 +01:00
|
|
|
zkeyHash: "",
|
2024-11-07 15:27:22 +01:00
|
|
|
},
|
|
|
|
|
reservations: {
|
2025-01-27 11:14:53 +01:00
|
|
|
maxReservations: 3,
|
|
|
|
|
},
|
2025-03-26 21:11:07 +11:00
|
|
|
requestDurationLimit: 60 * 60 * 24 * 30, // 30 days
|
2024-11-07 15:27:22 +01:00
|
|
|
}
|