dagger-contracts/test/examples.js

34 lines
857 B
JavaScript
Raw Normal View History

const { ethers } = require("hardhat")
2022-02-15 16:01:54 +00:00
const { now, hours } = require("./time")
const { sha256, hexlify, randomBytes } = ethers.utils
const exampleRequest = () => ({
2022-02-17 10:00:18 +00:00
client: hexlify(randomBytes(20)),
2021-11-04 09:19:23 +00:00
duration: 150, // 150 blocks ≈ half an hour
size: 1 * 1024 * 1024 * 1024, // 1 Gigabyte
contentHash: sha256("0xdeadbeef"),
proofPeriod: 8, // 8 blocks ≈ 2 minutes
proofTimeout: 4, // 4 blocks ≈ 1 minute
maxPrice: 42,
2022-02-17 11:24:27 +00:00
expiry: now() + hours(1),
nonce: hexlify(randomBytes(32)),
})
const exampleBid = () => ({
price: 42,
2022-02-15 16:01:54 +00:00
bidExpiry: now() + hours(1),
})
const exampleOffer = () => ({
2022-02-17 10:06:14 +00:00
host: hexlify(randomBytes(20)),
price: 42,
expiry: now() + hours(1),
})
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, exampleOffer, exampleBid, exampleLock }