mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-15 11:43:08 +00:00
Related to nim-codex/457, nim-codex/458. To cover the entire SlotId (uint256) address space, each validator must validate a portion of the SlotId space. When a slot is filled, the SlotId will be put in to a bucket, based on the value of the SlotId and the number of buckets (validators) configured. Similar to `myRequests` and `mySlots`, a function called `validationSlots` can be used to retrieve the `SlotIds` being validated for a particular bucket (validator index). This facilitates loading actively filled slots in need of validation when a validator starts.
62 lines
1.2 KiB
JavaScript
62 lines
1.2 KiB
JavaScript
const { ethers } = require("hardhat")
|
|
const { hours } = require("./time")
|
|
const { hexlify, randomBytes } = ethers.utils
|
|
|
|
const exampleConfiguration = () => ({
|
|
collateral: {
|
|
repairRewardPercentage: 10,
|
|
maxNumberOfSlashes: 5,
|
|
slashCriterion: 3,
|
|
slashPercentage: 10,
|
|
},
|
|
proofs: {
|
|
period: 10,
|
|
timeout: 5,
|
|
downtime: 64,
|
|
zkeyHash: "",
|
|
},
|
|
validation: {
|
|
validators: 3
|
|
}
|
|
})
|
|
|
|
const exampleRequest = async () => {
|
|
return {
|
|
client: hexlify(randomBytes(20)),
|
|
ask: {
|
|
slots: 4,
|
|
slotSize: 1 * 1024 * 1024 * 1024, // 1 Gigabyte
|
|
duration: hours(10),
|
|
proofProbability: 4, // require a proof roughly once every 4 periods
|
|
reward: 84,
|
|
maxSlotLoss: 2,
|
|
collateral: 200,
|
|
},
|
|
content: {
|
|
cid: "zb2rhheVmk3bLks5MgzTqyznLu1zqGH5jrfTA1eAZXrjx7Vob",
|
|
merkleRoot: Array.from(randomBytes(32)),
|
|
},
|
|
expiry: hours(1),
|
|
nonce: hexlify(randomBytes(32)),
|
|
}
|
|
}
|
|
|
|
const exampleProof = () => ({
|
|
a: { x: 1, y: 2 },
|
|
b: { x: [3, 4], y: [5, 6] },
|
|
c: { x: 7, y: 8 },
|
|
})
|
|
|
|
const invalidProof = () => ({
|
|
a: { x: 0, y: 0 },
|
|
b: { x: [0, 0], y: [0, 0] },
|
|
c: { x: 0, y: 0 },
|
|
})
|
|
|
|
module.exports = {
|
|
exampleConfiguration,
|
|
exampleRequest,
|
|
exampleProof,
|
|
invalidProof,
|
|
}
|