codex-contracts-eth/test/examples.js

36 lines
887 B
JavaScript
Raw Normal View History

const { ethers } = require("hardhat")
2022-02-15 16:01:54 +00:00
const { now, hours } = require("./time")
const { hexlify, randomBytes } = ethers.utils
const exampleRequest = () => ({
2022-02-17 10:00:18 +00:00
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,
},
content: {
cid: "zb2rhheVmk3bLks5MgzTqyznLu1zqGH5jrfTA1eAZXrjx7Vob",
erasure: {
totalChunks: 12,
},
por: {
u: Array.from(randomBytes(480)),
publicKey: Array.from(randomBytes(96)),
name: Array.from(randomBytes(512)),
},
},
2022-02-17 11:24:27 +00:00
expiry: now() + hours(1),
nonce: hexlify(randomBytes(32)),
})
2022-02-15 16:01:54 +00:00
const exampleLock = () => ({
id: hexlify(randomBytes(32)),
2022-02-15 16:01:54 +00:00
expiry: now() + hours(1),
})
module.exports = { exampleRequest, exampleLock }