You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -164,6 +164,19 @@ export default {
164
164
};
165
165
```
166
166
167
+
Change the proof flavor. It will generate different Solidity verifiers. If you switch to `ultra_plonk`, use `noir.getCircuit(name, UltraPlonkBackend)` to get ultra plonk backend.
168
+
169
+
```js
170
+
exportdefault {
171
+
noir: {
172
+
// default is "ultra_keccak_honk"
173
+
flavor:"ultra_plonk",
174
+
// you can also specify multiple flavors
175
+
flavor: ["ultra_keccak_honk", "ultra_plonk"],
176
+
},
177
+
};
178
+
```
179
+
167
180
The default folder where Noir is located is `noir`. You can change it in `hardhat.config.js`:
0 commit comments