mirror of
https://github.com/status-im/codex-contracts-eth.git
synced 2025-02-14 17:36:56 +00:00
19 lines
446 B
JavaScript
19 lines
446 B
JavaScript
module.exports = {
|
|
collateral: {
|
|
repairRewardPercentage: 10,
|
|
maxNumberOfSlashes: 2,
|
|
slashPercentage: 20,
|
|
},
|
|
proofs: {
|
|
// period has to be less than downtime * blocktime
|
|
// blocktime can be 1 second with hardhat in automine mode
|
|
period: 90, // seconds
|
|
timeout: 30, // seconds
|
|
downtime: 96, // number of blocks
|
|
downtimeProduct: 97, // number of blocks
|
|
},
|
|
reservations: {
|
|
maxReservations: 3,
|
|
},
|
|
}
|