hardhat-toolbox-viem

Installation
SKILL.md

Hardhat toolbox: viem

This skill builds on the core hardhat skill. Load that first for test organization, the network.create() shape, networkHelpers, fixtures, and the typechecking workflow. Everything below hangs off the connection returned by network.create():

import { network } from "hardhat";
import { describe, it } from "node:test";
import assert from "node:assert/strict";

describe("Counter", async function () {
  const { viem, networkHelpers } = await network.create();
  // ...
});

viem: clients and contract interaction

Installs
11
GitHub Stars
1
First Seen
May 19, 2026
hardhat-toolbox-viem — nomicfoundation/hardhat-skills