2021-11-02 08:04:51 +00:00
|
|
|
const { ethers } = require("hardhat")
|
2022-09-22 02:21:49 +00:00
|
|
|
const { hours } = require("./time")
|
|
|
|
const { currentTime } = require("./evm")
|
2023-01-17 10:07:12 +00:00
|
|
|
const { hexlify, randomBytes } = ethers.utils
|
2021-11-02 08:04:51 +00:00
|
|
|
|
2023-01-17 12:55:58 +00:00
|
|
|
const exampleConfiguration = () => ({
|
|
|
|
collateral: {
|
|
|
|
initialAmount: 100,
|
|
|
|
minimumAmount: 40,
|
|
|
|
slashCriterion: 3,
|
|
|
|
slashPercentage: 10,
|
|
|
|
},
|
|
|
|
proofs: {
|
|
|
|
period: 10,
|
|
|
|
timeout: 5,
|
|
|
|
downtime: 64,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2022-09-22 02:21:49 +00:00
|
|
|
const exampleRequest = async () => {
|
|
|
|
const now = await currentTime()
|
|
|
|
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,
|
2022-04-06 12:26:56 +00:00
|
|
|
},
|
2022-09-22 02:21:49 +00:00
|
|
|
content: {
|
|
|
|
cid: "zb2rhheVmk3bLks5MgzTqyznLu1zqGH5jrfTA1eAZXrjx7Vob",
|
|
|
|
erasure: {
|
|
|
|
totalChunks: 12,
|
|
|
|
},
|
|
|
|
por: {
|
|
|
|
u: Array.from(randomBytes(480)),
|
|
|
|
publicKey: Array.from(randomBytes(96)),
|
|
|
|
name: Array.from(randomBytes(512)),
|
|
|
|
},
|
2022-04-06 12:26:56 +00:00
|
|
|
},
|
2022-09-22 02:21:49 +00:00
|
|
|
expiry: now + hours(1),
|
|
|
|
nonce: hexlify(randomBytes(32)),
|
|
|
|
}
|
|
|
|
}
|
2022-02-15 16:01:54 +00:00
|
|
|
|
2023-01-17 12:55:58 +00:00
|
|
|
module.exports = { exampleConfiguration, exampleRequest }
|