add circom file config options

This commit is contained in:
Dmitriy Ryajov 2024-01-29 14:59:47 -06:00
parent 532e45b951
commit 8de2d6d35a
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4
1 changed files with 18 additions and 0 deletions

View File

@ -226,6 +226,24 @@ type
name: "persistence"
.}: bool
circomR1cs* {.
desc: "The r1cs file for the storage circuit"
defaultValue: defaultDataDir() / "circuits" / "proof_main.r1cs"
name: "circuit-r1cs"
.}: string
circomWasm* {.
desc: "The wasm file for the storage circuit"
defaultValue: defaultDataDir() / "circuits" / "proof_main.wasm"
name: "circuit-wasm"
.}: string
circomZkey* {.
desc: "The zkey file for the storage circuit"
defaultValue: defaultDataDir() / "circuits" / "proof_main.zkey"
name: "circuit-zkey"
.}: string
ethProvider* {.
desc: "The URL of the JSON-RPC API of the Ethereum node"
defaultValue: "ws://localhost:8545"