Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olehmisar/hardhat-noir-starter
https://github.com/olehmisar/hardhat-noir-starter
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/olehmisar/hardhat-noir-starter
- Owner: olehmisar
- Created: 2024-10-23T17:54:08.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T13:18:29.000Z (4 months ago)
- Last Synced: 2024-10-25T15:11:40.536Z (4 months ago)
- Language: TypeScript
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-noir - hardhat-noir-starter - project template with seamless Hardhat integration (Boilerplates)
README
# Hardhat Noir Starter
This project demonstrates Noir integration with Hardhat using [Hardhat Noir](https://github.com/olehmisar/hardhat-noir) plugin.
## Development
1. Write circuits in `noir` folder.
2. `npx hardhat noir-new ` to create a new Noir circuit.
3. `npm run compile` to compile all Noir and Solidity.
4. Integrate with [Solidity verifiers](https://noir-lang.org/docs/how_to/how-to-solidity-verifier) auto-generated by Noir.## Testing
1. Write tests in `test` folder.
2. `npm run test` to run the tests.## Deployment
Noir integrates with Solidity, so you can deploy your Solidity contracts like in any other Solidity project using the official [Hardhat Ignition](https://hardhat.org/ignition/docs/getting-started) or community maintained [Hardhat Deploy](https://github.com/wighawag/hardhat-deploy).