Skip to content

Commit 11d3d1d

Browse files
committed
feat: rename to hardhat-noir
1 parent 006b04d commit 11d3d1d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ This plugin automatically manages `nargo` and `bb` versions and compiles Noir on
1515
Install the plugin and Noir dependencies:
1616

1717
```bash
18-
npm install hardhat-plugin-noir @noir-lang/[email protected] @aztec/[email protected]
18+
npm install hardhat-noir @noir-lang/[email protected] @aztec/[email protected]
1919
```
2020

2121
Import the plugin in your `hardhat.config.ts`:
2222

2323
```ts
24-
import "hardhat-plugin-noir";
24+
import "hardhat-noir";
2525
```
2626

2727
Specify the Noir version in your Hardhat config:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "hardhat-plugin-noir",
2+
"name": "hardhat-noir",
33
"version": "0.4.0",
44
"description": "Hardhat plugin for Noir language",
55
"repository": "github:olehmisar/hardhat-noir",

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { HardhatPluginError } from "hardhat/plugins";
22
import type { SpawnOptions } from "node:child_process";
33

4-
export const PLUGIN_NAME = "hardhat-plugin-noir";
4+
export const PLUGIN_NAME = "hardhat-noir";
55

66
export const makeRunCommand =
77
(cwd?: string) =>

0 commit comments

Comments
 (0)