12345678910111213141516 |
- 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
|