add circom file config options
This commit is contained in:
parent
c058a4e06f
commit
4fad61955e
|
@ -226,6 +226,24 @@ type
|
||||||
name: "persistence"
|
name: "persistence"
|
||||||
.}: bool
|
.}: 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* {.
|
ethProvider* {.
|
||||||
desc: "The URL of the JSON-RPC API of the Ethereum node"
|
desc: "The URL of the JSON-RPC API of the Ethereum node"
|
||||||
defaultValue: "ws://localhost:8545"
|
defaultValue: "ws://localhost:8545"
|
||||||
|
|
Loading…
Reference in New Issue