Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add curve options to all manifest schema types #88

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions sindri-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,12 @@
],
"additionalProperties": false
},
"Halo2CurveOptions": {
"title": "Halo2CurveOptions",
"description": "The supported Halo2 curves.",
"enum": ["bn254"],
"type": "string"
},
"Halo2ProvingSchemeOptions": {
"title": "Halo2ProvingSchemeOptions",
"description": "The supported Halo2 proving schemes.",
Expand All @@ -239,6 +245,16 @@
},
"type": "string"
},
"curve": {
"title": "Proving Curve",
"description": "The curve over which the proof is executed.",
"default": "bn254",
"allOf": [
{
"$ref": "#/definitions/Halo2CurveOptions"
}
]
},
"className": {
"title": "Circuit Class Name",
"description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).",
Expand Down Expand Up @@ -314,6 +330,16 @@
},
"type": "string"
},
"curve": {
"title": "Proving Curve",
"description": "The curve over which the proof is executed.",
"default": "bn254",
"allOf": [
{
"$ref": "#/definitions/Halo2CurveOptions"
}
]
},
"className": {
"title": "Circuit Class Name",
"description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).",
Expand Down Expand Up @@ -376,6 +402,12 @@
],
"additionalProperties": false
},
"NoirCurveOptions": {
"title": "NoirCurveOptions",
"description": "The supported Noir curves.",
"enum": ["bn254"],
"type": "string"
},
"NoirProvingSchemeOptions": {
"title": "NoirProvingSchemeOptions",
"description": "The supported Noir proving schemes.",
Expand Down Expand Up @@ -408,6 +440,16 @@
},
"type": "string"
},
"curve": {
"title": "Proving Curve",
"description": "The curve over which the proof is executed.",
"default": "bn254",
"allOf": [
{
"$ref": "#/definitions/NoirCurveOptions"
}
]
},
"provingScheme": {
"description": "The backend proving scheme.",
"default": "barretenberg",
Expand Down