Initial commit

This commit is contained in:
2026-03-25 21:47:57 +01:00
commit 477741b545
44 changed files with 12611 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import assert from "node:assert/strict";
import { describe, it } from "node:test";
import { network } from "hardhat";
describe("PowersOfTwo", async function () {
const { viem } = await network.connect();
const publicClient = await viem.getPublicClient();
it("The test name goes here...", async function () {
const contract = await viem.deployContract("PowersOfTwo");
// you can write commands/asserts/etc here
// ...
// ...
});
});