mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-07 07:43:08 +00:00
18 lines
403 B
JavaScript
18 lines
403 B
JavaScript
const { buildModule } = require("@nomicfoundation/hardhat-ignition/modules")
|
|
|
|
module.exports = buildModule("SlotReservations", (m) => {
|
|
const deployer = m.getAccount(0)
|
|
|
|
const configuration = m.getParameter("configuration", null)
|
|
|
|
const testSlotReservations = m.contract(
|
|
"TestSlotReservations",
|
|
[configuration],
|
|
{
|
|
from: deployer,
|
|
}
|
|
)
|
|
|
|
return { testSlotReservations }
|
|
})
|