import { buildModule } from "@nomicfoundation/hardhat-ignition/modules" /** * LaunchpadModule for deploying the Launchpad contract */ const LaunchpadModule = buildModule("LaunchpadModule", (m) => { const owner = m.getAccount(0) const launchpad = m.contract("Launchpad", [], { from: owner, }) return { launchpad } }) export default LaunchpadModule