7 lines
210 B
TypeScript
7 lines
210 B
TypeScript
import { buildModule } from "@nomicfoundation/hardhat-ignition/modules";
|
|
|
|
export default buildModule("PowersOfTwoModule", (m) => {
|
|
const powersOfTwo = m.contract("PowersOfTwo");
|
|
return { powersOfTwo };
|
|
});
|