Initial commit

This commit is contained in:
2026-02-16 23:37:30 +01:00
commit 9ab5e3b873
10 changed files with 3175 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { buildModule } from "@nomicfoundation/hardhat-ignition/modules";
export default buildModule("CounterModule", (m) => {
const counter = m.contract("Counter");
return { counter };
});