mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-05 23:03:12 +00:00
20 lines
466 B
JavaScript
20 lines
466 B
JavaScript
module.exports = {
|
|
collateral: {
|
|
repairRewardPercentage: 10,
|
|
maxNumberOfSlashes: 2,
|
|
slashCriterion: 2,
|
|
slashPercentage: 20,
|
|
},
|
|
proofs: {
|
|
// period has to be less than downtime * blocktime
|
|
// blocktime can be 1 second with hardhat in automine mode
|
|
period: 60, // seconds
|
|
timeout: 30, // seconds
|
|
downtime: 64, // number of blocks
|
|
downtimeProduct: 67 // number of blocks
|
|
},
|
|
reservations: {
|
|
maxReservations: 3
|
|
}
|
|
}
|